gpt4 book ai didi

python - 根据数据帧 : Python Pandas 中的值进行绘图

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

我刚刚开始研究时间序列并使用 python 和 pandas 的内置函数来绘制数据。

我有自己的数据框,其中有“日期”和“价格”

Creation Date        Price
1/1/2013 2.0
1/2/2013 5.0
1/3/2013 6.0
1/4/2013 9.0

etc

我正在尝试使用

ts= Series(df['Price'], index = date_range('1/1/2013', periods =100)

我的图表/图中没有得到任何值,只是一个从 0.6 到 -.6 的空图表以及底部的日期。

我认为图表无法将日期列识别为实际日期...不知道为什么它不起作用。

如何根据列中的日期值绘制价格图表?

更新:

我意识到如果我创建一个像这样的系列:

 ts= Series(df['Price'], index = df['Creation Date'] 

我得到:

Creation Date
1/31/2014 NaN
1/31/2014 NaN

etc...

如果我创建一个系列,例如:

ts2= Series(df['Price'])

这会产生:

   0      81.849998
1 41.220001
2 22.049999
3 10.770000
4 17.790001
.... etc.

所以我得到的是价格,但不是一个系列的日期,以及另一个系列的日期,而是 NaN 值....

最佳答案

为什么要费心制作这个系列?

newdf = df[['Price', 'Creation Date']].set_index('Creation Date')
newdf.plot()

或者作为替代方案:

df.plot('Price', 'Creation Date')

关于python - 根据数据帧 : Python Pandas 中的值进行绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22024242/

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