情节节流在联机但不在脱机模式下工作

时间:2018-06-28 05:56:00

标签: python plotly

我正在尝试在离线模式下重新创建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)。有任何解决方法的想法吗?

更新:提起https://github.com/plotly/plotly.py/issues/1045

0 个答案:

没有答案