如何构建新的中心性度量?
我想使用 igraph 构建一个新的中心性度量,最好是在 R 中。
我该如何开始呢?
例如,添加到 igraph C 库
或 R 接口
会更好吗?
I want to construct a new centrality measure using igraph
, preferably in R
.
How would I begin this?
For example, would I be better adding to the igraph C library
or the R interface
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这实际上取决于您的舒适程度。也就是说,igraph 主要是一个 C 库(您可以浏览 sourceforge 上的所有源代码) ,所以最合乎逻辑的扩展方法可能是在 C 中。例如,R 中的 closeness 函数只需调用相关的 C 函数:
这里是 现有的中心性源代码。
This really boils down to what your comfortable level. That said, igraph is a primarily a C library (you can browse all the source code on sourceforge), so the most logical way to extend it is probably in C. For instance, the closeness function in R just call the related C function:
Here is the existing centrality sourcecode.