- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Networkx pyhton 库。
我尝试测试一个定义以下功能的项目:
def _set_up_p0(self, source):
""" Set up and return the 0th probability vector. """
p_0 = [0] * self.OG.number_of_nodes()
for source_id in source:
try:
# matrix columns are in the same order as nodes in original nx
# graph, so we can get the index of the source node from the OG
source_index = self.OG.nodes().index(source_id)
p_0[source_index] = 1 / float(len(source))
except ValueError:
sys.exit("Source node {} is not in original graph. Source: {}. Exiting.".format(
source_id, source))
return np.array(p_0)
上面的代码生成一个异常:
Traceback (most recent call last):
File "run_walker.py", line 80, in <module>
main(sys.argv)
File "run_walker.py", line 76, in main
wk.run_exp(seed_list, opts.restart_prob,opts.original_graph_prob, node_list)
File "./Python_directory/Walker/walker.py", line 57, in run_exp
p_0 = self._set_up_p0(source)
File "./Python_directory/Walker/walker.py", line 118, in _set_up_p0
print(self.OG.nodes().index(source_id))
AttributeError: 'NodeView' object has no attribute 'index'
实际上是以下两行:
print source
print(self.OG.nodes())
我们收到以下错误:
['0', '1']
['1', '0', '3', '2', '4']
因此,当我调用函数 _set_up_p0 时,我得到了上述异常。如果您发现了我的错误在哪里,请
最佳答案
这取决于您使用的networkx版本。更多信息here .
网络x 1.x
>>> G=nx.Graph([(1,2),(3,4)])
>>> G.nodes()
[1, 2, 3, 4]
网络x 2.x
>>> G=nx.Graph([(1,2),(3,4)])
>>> G.nodes()
NodeView((1, 2, 3, 4))
正如您在 networkx2.x 中看到的,您没有列表,只有 NodeView。
您可以使用 list(G.nodes())
转换为列表。
关于python - 属性错误: 'NodeView' object has no attribute 'index' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52141158/
我想知道什么是好的 OOP 原则,如果在 iOS 应用程序中,有一个 UITreeView 和一个 UINodeView,以及 UITreeView 具有 rootNodeView 的对象,并且此根节
我刚开始使用 GTK#,我有一个 NodeView 正在工作,现在我想让列能够由用户调整大小和排序(就像 Windows 资源管理器中的详细信息 View 模式)。我在互联网上四处寻找,但找不到帮助。
我使用 NodeView 对象以这种方式向用户输出数据(Gtk# 教程): [Gtk.TreeNode (ListOnly=true)] public class MyTreeNode
当我想将元素添加到我的 NodeView 时出现异常: Exception in Gtk# callback delegate Note: Applications can use GLib.Exce
我正在使用 Networkx pyhton 库。 我尝试测试一个定义以下功能的项目: def _set_up_p0(self, source): """ Set up and retu
我正在使用 Networkx pyhton 库。 我尝试测试一个定义以下功能的项目: def _set_up_p0(self, source): """ Set up and retu
我正在学习本教程:https://www.datacamp.com/community/tutorials/networkx-python-graph-tutorial import itertool
我有一个数据对象,其中有一个 System.Collections.Generic.IList 组件,我想将对该列表的更改反射(reflect)到 Gtk# NodeView 中,以便在添加项目时到列
我是一名优秀的程序员,十分优秀!