gpt4 book ai didi

python - plotly.figure_factory.create_scatterplot 停止工作?

转载 作者:行者123 更新时间:2023-12-01 09:05:00 26 4
gpt4 key购买 nike

我使用plotly尝试一些东西,然后发现create_scatterplot是唯一不起作用的包。我的意思是,它显然在模块中,正如您调用帮助命令时出现的那样:

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 的错误。

最佳答案

正如我在github上看到的plotly.figure_factory _county_choropleth您只需以另一种方式调用即可:

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

并且不要忘记更新您的plotly 版本:

pip install --upgrade plotly

希望这些信息可以帮助您

关于python - plotly.figure_factory.create_scatterplot 停止工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52138413/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com