degree_centrality() got an unexpected keyword argument 'weight'是什么错误
时间: 2023-11-19 16:04:39 浏览: 172
这个错误通常是由于传递了无效的参数导致的。在 NetworkX 中,`degree_centrality()` 函数没有 `weight` 参数,所以如果你传递了 `weight` 参数,就会导致该错误。
可能的解决方案是检查你的代码,确保你正在使用正确的参数。如果你想要考虑节点权重,可以使用 `weighted_degree_centrality()` 函数。
阅读全文