gpt4 book ai didi

python - Pandas 数据框绘图

转载 作者:太空狗 更新时间:2023-10-29 19:33:44 24 4
gpt4 key购买 nike

我有这个 Pandas DataFrame

enter image description here

这给了我这个:

enter image description here

我该怎么办

  1. 制作一个新人物,
  2. 在图中添加标题“Title Here”
  3. 以某种方式创建一个映射,以便标签不是 29,30 等,而是说“第 29 周”、“第 30 周”等。
  4. 将更大版本的图表保存到我的电脑(比如 10 x 10 英寸)

我已经为此困惑了一个小时了!

最佳答案

import matplotlib.pyplot as plt
# 1, 4
f = plt.figure(figsize=(10, 10)) # Change the size as necessary
# 2
dataframe.plot(ax=f.gca()) # figure.gca means "get current axis"
plt.title('Title here!', color='black')
# 3
# Not sure :(

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

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