我当时正在使用plotly尝试一些操作,然后发现create_scatterplot是唯一不起作用的软件包。 我的意思是,它显然在模块中,如您在调用help命令时所显示的那样:
NAME
plotly.figure_factory
FILE
/usr/lib/python2.7/site-packages/plotly/figure_factory/__init__.py
PACKAGE CONTENTS
_2d_density
_annotated_heatmap
_bullet
_candlestick
_county_choropleth
_dendrogram
_distplot
_facet_grid
_gantt
_ohlc
_quiver
_scatterplot
_streamline
_table
:
And in the plotly.py/plotly/figure_factory github folder
它下来了吗?我对编程很陌生,但是我认为这种事情只局限于本地。也许我正在失去一些东西,我可以解决这个问题吗?
如果要检查一些代码:
from plotly import figure_factory as ff
help(ff)
from plotly.figure_factory import create_2d_density
from plotly.figure_factory import create_annotated_heatmap
from plotly.figure_factory import create_bullet
from plotly.figure_factory import create_candlestick
from plotly.figure_factory import create_county_choropleth
from plotly.figure_factory import create_dendrogram
from plotly.figure_factory import create_facet_grid
from plotly.figure_factory import create_gantt
from plotly.figure_factory import create_ohlc
from plotly.figure_factory import create_quiver
from plotly.figure_factory import create_scatterplot
from plotly.figure_factory import create_streamline
from plotly.figure_factory import create_table
您会看到它只返回散点图和county_choropleth错误。
答案 0 :(得分:1)
正如我在_county_choropleth的github plotly.figure_factory中看到的那样,您只需要以另一种方式调用它即可:
from plotly.figure_factory._county_choropleth import create_choropleth
然后致电:
fig = create_choropleth(bla-bla)
py.plot(fig, filename='basic-choropleth')
在使用scatterplot的情况下,您需要将create_scatterplot
重命名为scatterplot
:
from plotly.figure_factory._scatterplot import scatterplot
和:
fig = scatterplot(bla-bla)
py.plot(fig, filename='basic-scatter')
我还发现,当您致电create_choropleth
时,您需要安装几个软件包link以避免麻烦:
pip install shapely
pip install geopandas
pip install pyshp
别忘了更新您的绘图版本:
pip install --upgrade plotly
希望这些信息可以为您提供帮助