gpt4 book ai didi

python - 使用日期 python 绘制多个值数据框

转载 作者:行者123 更新时间:2023-12-01 08:12:10 28 4
gpt4 key购买 nike

我有以下数据框:

          date      high      low  Sentiment
0 2018-02-01 10288.80 8812.28 -4
1 2018-02-02 9142.28 7796.49 -1
2 2018-02-03 9430.75 8251.63 -2
3 2018-02-04 9334.87 8031.22 7
4 2018-02-05 8364.84 6756.68 -4
5 2018-02-06 7850.70 6048.26 -12
6 2018-02-07 8509.11 7236.79 -11
7 2018-02-08 8558.77 7637.86 -17
8 2018-02-09 8736.98 7884.71 9
9 2018-02-10 9122.55 8295.47 -4
10 2018-02-11 8616.13 7931.10 4
11 2018-02-12 8985.92 8141.43 0
12 2018-02-13 8958.47 8455.41 -3
13 2018-02-14 9518.54 8599.92 -4

我的最终目标是表示数据框中的所有值,但我看不到 x 轴上的日期。我使用了这段代码:

df = Original_df [['date', 'high', 'low', 'Sentiment']].copy()
ax = df.plot(secondary_y='Sentiment')
ax.set_yscale('linear')
plt.show()

enter image description here

更新:即使这样我也看不到日期。我做错了什么?

df = Original_df[['date', 'high', 'low', 'Sentiment']].copy()
df = df.set_index('date')
ax = df.plot(secondary_y='Sentiment')
ax.set_yscale('linear')
plt.show()

enter image description here

最佳答案

这应该可以解决问题:

df = df.set_index('date')
ax = df.plot(secondary_y='Sentiment')

enter image description here

关于python - 使用日期 python 绘制多个值数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55172879/

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