我正在尝试为 CobraPy 做本教程,但似乎无法导入 plot_helper
plot_helper 在哪里?是pip下载吗?
我正在尝试为 CobraPy 做本教程,但似乎无法导入 plot_helper
plot_helper 在哪里?是pip下载吗?
我遇到了同样的问题。我是 cobrapy 的新手,但这解决了我的问题。我为散点图使用了以下链接 https://python-graph-gallery.com/130-basic-matplotlib-scatterplot/ 所以在第 8.1 节中,我个人使用的其他更改是:
我import plot_helper
在 In[1] 中替换为:
import matplotlib.pyplot
而不是 In[4] 我使用:
matplotlib.pyplot.plot("loopless", "nominal", data=df, linestyle='none', marker='o')
matplotlib.pyplot.show()
希望这可以帮助