TypeError Traceback (most recent call last) <ipython-input-21-d697261b92fb> in <module> ----> 1 nx.draw(G, node_size=50, with_labels=True) 2 plt.show() D:\Anaconda\A\lib\site-packages\networkx\drawing\nx_pylab.py in draw(G, pos, ax, **kwds) 113 if cf.axes: 114 ax = cf.gca() --> 115 else: 116 ax = cf.add_axes((0, 0, 1, 1)) 117 TypeError: '_AxesStack' object is not callable <Figure size 432x288 with 0 Axes>
时间: 2023-06-16 17:02:28 浏览: 457
这个错误通常是因为 `plt.subplots()` 方法返回的第一个元素是一个 `Figure` 对象而不是 `Axes` 对象。你需要使用 `add_subplot()` 方法来创建一个 `Axes` 对象,然后在该对象上进行绘图。例如:
```
fig, ax = plt.subplots()
nx.draw(G, node_size=50, with_labels=True, ax=ax)
plt.show()
```
这样应该可以解决你的问题。
相关问题
TypeError Traceback (most recent call last) <ipython-input-21-656cfe61f5bf> in <module>() 5 epochs=2, 6 validation_split=0.2, ----> 7 shuffle=True) 8 9 TypeError: fit() got an unexpected keyword argument 'batch_size'
这是一个关于 Python 代码中 fit() 函数的 TypeError,可能是由于 fit() 函数没有 batch_size 参数导致的。建议检查一下代码中的 fit() 函数,确认是否有输入正确的参数。如果需要更多的帮助,可以提供更详细的代码和错误信息,我会尽力帮忙解决问题。
TypeError Traceback (most recent call last) <ipython-input-2-b8ec604d943f> in <module>() 1 list1 = [1, 2, 3, 1, 2, 3, 4, 5, 1] ----> 2 list2 = list(set(list1)) 3 print(list2) TypeError: 'list' object is not callable
这个错误的原因是你把一个内置函数 `list()` 的名称赋值给了变量 `list2` ,导致程序无法调用内置函数 `list()` 。你可以尝试使用一个不同的变量名来解决这个问题。以下是一种正确的写法:
```
lst1 = [1, 2, 3, 1, 2, 3, 4, 5, 1]
lst2 = list(set(lst1))
print(lst2)
```
这里我们将变量名 `list1` 改为了 `lst1` ,将变量名 `list2` 改为了 `lst2`。
阅读全文