在official getting started guide之后,我尝试在Google Cloud Datalab上使用Plotly。
在脱机模式下运行示例“ hello world”代码时,出现以下错误:
PlotlyDictValueError:“标题”在“布局”中的值无效
错误原因:['title']
当前路径:[]当前父对象名称:[]
对于当前的父母,“ title”可以按以下方式使用:
下方(“图”,“布局”):
editType: layoutstyle role: object
这是我正在运行的代码单元:
import plotly
import plotly.graph_objs as go
plotly.offline.init_notebook_mode(connected=True)
plotly.offline.iplot({
"data": [go.Scatter(x=[1, 2, 3, 4], y=[4, 3, 2, 1])],
"layout": go.Layout(title="hello world")
})
我不明白此错误告诉我什么,要让Ploty在Google Datalab上以脱机模式正确工作,我缺少什么步骤?