gpt4 book ai didi

python - 来自 Pandas 数据框的 plotly 折线图

转载 作者:太空宇宙 更新时间:2023-11-04 04:18:20 24 4
gpt4 key购买 nike

我有一个数据框,想使用 plotly 在其中一列上创建折线图。

我有以下代码,但它不起作用

df['col1'].iplot(kind='scatter', filename='cufflinks/cf-simple-line')

谁能看出原因?我不确定是否应该使用 .offline

最佳答案

使用 cf.go_offline() 代码按预期运行:

import plotly.offline as py
import plotly.graph_objs as go
import pandas as pd
import cufflinks as cf

cf.go_offline()

df0 = pd.DataFrame({"fruits": ["apple", "mango", "lime"],
"number of sold items": [20, 26, 32]})

df0["fruits"].iplot(kind="scatter", filename="lineplot-with-cufflinks")

输出: Simple plot

关于python - 来自 Pandas 数据框的 plotly 折线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55008554/

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