2

我在python中使用下面的脚本:

from plotly.offline import init_notebook_mode, iplot
import plotly.plotly as py
from plotly.graph_objs import *
from plotly.plotly.plotly import image
X=[1,2,3]
Y=[1,2,3]
fig = {'data': [{'x': X, 'y': Y, 'type': 'bar'}]}
#iplot([{"x": X, "y": Y}])
image.ishow(fig, 'png', scale=3)

我也在 ubuntu-PC 中启动了ipython-notebook,但我无法可视化创建的图像或绘制的图表。当我取消注释 iplot 语句时,输出是这样的: 它返回raise exceptions.PlotlyError(return_data['error']) KeyError: 'error . 如何绘制使用图以及如何查看?

4

1 回答 1

0

我的第一个想法是你没有告诉 plotly 在笔记本模式下工作:

init_notebook_mode()

您导入了它,但从未运行过它。

来自:https ://plot.ly/python/offline/

于 2015-08-10T14:32:06.270 回答