此问题在此处已有答案:
How to adjust padding with cutoff or overlapping labels(8个答案)
4天前关闭。
有没有一种方法可以修改matplotlib plot,以确保x轴刻度标签完全可见?
我写了下面的python代码,在图表上绘制一些学生的GPA,但x轴刻度没有看到。
import matplotlib.pyplot as plt
import numpy as np
a = np.random.rand(10)*4
xlabel = []
for i in range(10):
xlabel.append(f"GPA of student {i}")
plt.plot(xlabel,a)
plt.title("Plot a test diagram")
plt.xticks(xlabel,rotation=90)
plt.show()
字符串
的数据
1条答案
按热度按时间rdrgkggo1#
绘图窗口中有一个图标,您可以使用它来编辑绘图。
1.在绘图窗口中单击配置子图
1.修改框中的值以在任意方向上移动绘图。