import plotly.plotly as py
from plotly.offline import download_plotlyjs, init_notebook_mode, plot,iplot
import plotly.graph_objs as go
init_notebook_mode(connected=True)
data = dict(type = 'choropleth',
locations = ['AZ','CA','NY'],
locationmode = 'USA-states',
colorscale= 'Portland',
text= ['text1','text2','text3'],
z=[1.0,2.0,3.0],
colorbar = {'title':'Colorbar Title'})
layout = dict(geo = {'scope':'usa'})
choromap = go.Figure(data = [data],layout = layout)
py.iplot(choromap)
我一直试图找出一种在pycharm上使用plotly的方法。当我使用上面的代码时,它给了我这个错误。
plotly.exceptions.PlotlyError:因为你没有提供' file_id'在电话会议中,我们假设您正试图从网址中抓取一个数字。您提供了网址''我们希望它以' https://plot.ly'
开头。嗨,这是我关于stackoverflow的第一个问题,如果我的问题没有很好的结构,请道歉。非常感谢任何有关正确询问的建议。
答案 0 :(得分:10)
<form method="post" action="/login">
<input type="text" name="username"/>
<input type="password" name="password"/>
<input type="submit" name="Submit"/>
</form>
对于离线绘图肯定会有效。
答案 1 :(得分:4)
你需要在情节上验证自己。
在第2点的链接中有关于如何设置凭据的说明:
导入情节
plotly.tools.set_credentials_file(用户名=&#39; DemoAccount&#39 ;, API_KEY =&#39; lr1c37zw81&#39)
答案 2 :(得分:2)
您从plotly.iplot按名称导入了iplot,因此您的最后一行应为
iplot(chloromap)
否则,它会尝试使用plotly的iplot。