我在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 . 如何绘制使用图以及如何查看?