我在SageMathCloud工作并拥有以下代码:
import networkx
import matplotlib.pyplot as plt
test5 = networkx.Graph()
example = graphs.BuckyBall
test5.add_node(example)
networkx.draw(test5)
plt.show()
从我读到的,应该显示一个图形,其中有一个顶点,里面有一个图形,就像this article中的这张图片一样。但是,它显示的只是一个顶点它内部没有任何内容如图所示:有没有办法将图形显示为第一张图片,其中显示图形(作为顶点)?