2 回答
TA贡献1829条经验 获得超13个赞
您是否尝试过干净利落地安装情节?
使用点数进行批量卸载
!pip uninstall plotly
然后使用 conda 进行情节卸载
!conda uninstall plotly
之后,使用pip安装最新版本
!pip install plotly
检查绘图版本
import plotly plotly.__version__
TA贡献1802条经验 获得超5个赞
解决
在我的代码中有2个错误:
在行
type= 'cloropleth',
我有拼写错误的值,其中正确的值是,'cloropleth''choropleth'
然后在线上
colorbar = {'Title':'Colorbar title goes here'})
我有,其中正确的键是(小写)。'Title''title'
修复了它们,现在地图已正确显示。
另外,没有必要安装 。chart_studio
所以最后正确的代码是:
import plotly.graph_objects as go
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
init_notebook_mode(connected=True)
data = dict(type= 'choropleth',
locations = ['AZ','CA','NY'],
locationmode = 'USA-states',
colorscale = 'Portland',
text = ['text 1','text 2','text 3'],
z = [1,2,3],
colorbar = {'title':'Colorbar title goes here'})
mylayout = dict(geo={'scope':'usa'})
choromap = go.Figure(data = [data], layout=mylayout)
iplot(choromap)
添加回答
举报