gpt4 book ai didi

python - Seaborn 绘制空的白色飞机

转载 作者:太空宇宙 更新时间:2023-11-03 15:00:28 27 4
gpt4 key购买 nike

使用 pandas 绘制 CSV 时,使用 seaborn 绘制以下值:

 value       date       
0.296776 2016-07-01
0.273482 2016-08-01
0.207982 2016-09-01
0.176148 2016-10-01
0.124666 2016-11-01
0.072311 2016-12-01
0.042762 2017-01-01
0.043232 2017-02-01
0.083472 2017-03-01

sns.tsplot(time="date", value="value", data=df)

我只得到一架空的白色飞机 - 出了什么问题?

最佳答案

带有 .tsplot 的东西是它的目的是绘制具有不确定性表示的时间序列,因此如果您不向函数提供 DataFrame 中标识采样单元的字段,那么它就不会工作。

要绕过此问题而不需要修改 .csv 数据集,您不应使用 data 参数:

>>> sns.tsplot(df['value'],time=df['date'])
<matplotlib.axes._subplots.AxesSubplot object at 0x07DA7A30>
>>> sns.plt.show()

enter image description here

关于python - Seaborn 绘制空的白色飞机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45158231/

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