我正在尝试在离线模式下重新创建Plotly's county choropleth example。将我的凭据在线传递到绘图时,该示例运行良好:
import plotly
import plotly.figure_factory as ff
fips = ['06021', '06023', '06027',
'06029', '06033', '06059',
'06047', '06049', '06051',
'06055', '06061']
values = range(len(fips))
plotly.tools.set_credentials_file(username='MaxGhenis',
api_key=KEY)
fig = ff.create_choropleth(fips=fips, values=values)
plotly.plotly.iplot(fig, filename='online choropleth')
但是当它离线时,它不会显示:
plotly.offline.init_notebook_mode(connected=True)
fig = ff.create_choropleth(fips=fips, values=values)
plotly.offline.iplot(fig, filename='offline choropleth')
我正在使用Google's Colaboratory cloud Jupyter service(这里是notebook)。有任何解决方法的想法吗?