gpt4 book ai didi

python - plotly : setting cufflinks config options launches 的袖扣

转载 作者:太空狗 更新时间:2023-10-29 20:35:50 26 4
gpt4 key购买 nike

我正在尝试使用 cufflinks在本地从 pandas Dataframe

生成绘图

但是,当我尝试在 python 控制台中配置袖扣时,它会进入 ipython 模式:

>>> import cufflinks as cf
>>> cf.set_config_file(offline=True)
In :

随后,当我尝试生成绘图时,什么也没有出现:

In : df.iplot(kind='bar', barmode='stack', filename='cufflinks/test')
In :

没有plotly账号可以离线使用袖扣吗?

最佳答案

我认为问题出在 iplot 调用中设置文件名参数。

df.iplot(kind='bar', barmode='stack')

http://nbviewer.jupyter.org/gist/santosjorge/5fdbe947496faf7af5e6

编辑如果可以用 plotly 做到这一点,您可以将袖扣生成的图形传递给 plotly.plot:

import cufflinks as cf
import plotly as py
fig = df.iplot(kind='bar', barmode='stack', asFigure=True)
py.offline.plot(fig)

关于python - plotly : setting cufflinks config options launches 的袖扣,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35746074/

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