gpt4 book ai didi

python - X 轴刻度线和刻度 matplotlib.pyplot

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

下面的代码有效。

名称:是 1960 - 2016 年

values:是美国每年的GDP

绘制此图时,x 轴每年有一个刻度,使其不可读。例如,希望每五年勾选一次。我该怎么做呢?似乎找不到一个好的例子。

(系统不允许我上传图片 - 不知道为什么)

%matplotlib inline
import matplotlib.pyplot as plt
plt.style.use('seaborn-white')
import numpy as np
from numpy import array

# Plot GDP/Year

names = usa.loc[: , "Year"]
values = usa.loc[: , "GDP Billions"]

plt.figure(1, figsize=(15, 6))

plt.subplot(121)
plt.plot(names, values)

plt.subplot(122)
plt.plot(names, values)

plt.show()

最佳答案

使用pyplot.xticks:

%matplotlib inline
import matplotlib.pyplot as plt
plt.style.use('seaborn-white')
import numpy as np
from numpy import array

# Plot GDP/Year

names = usa.loc[: , "Year"]
values = usa.loc[: , "GDP Billions"]

plt.figure(1, figsize=(15, 6))

plt.subplot(121)
plt.plot(names, values)
plt.xticks(names[names % 5 == 0])

plt.subplot(122)
plt.plot(names, values)
plt.xticks(names[names % 5 == 0])

plt.show()

关于python - X 轴刻度线和刻度 matplotlib.pyplot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51732182/

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