gpt4 book ai didi

python - 线型图看不到 x 轴标签

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

我正在测试一个非常简单的练习,只需绘制下面的代码:

t = pd.Series([1,2,5,1,8], index=['a', 's', 'l', 'f', 'd' ])
t.plot(linestyle = '-', color = 'b', sharex = True)

但我看不到字母 aslfd

有什么建议吗?

最佳答案

你可以这样:

import pandas as pd
from matplotlib import pyplot as plt

t = pd.Series([1,2,5,1,8], index=['a', 's', 'l', 'f', 'd' ])
plt.plot(t.index, t.values,linestyle = '-', color = 'b')
plt.show()

图像位于 the following link

Adapted from here

关于python - 线型图看不到 x 轴标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55750002/

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