如何旋转matplotlib图?

时间:2019-08-13 13:48:09

标签: python matplotlib

我是python的新手,我正在使用here中的代码来绘制均值和标准差:

df = pd.read_csv('file.csv')
x = df['index']
y = df['mean']
e = df['std']

plt.figure(figsize=(18, 6))
plt.errorbar(x, y, e, linestyle='None', marker='^')
plt.xticks(x, rotation=45)
plt.xlabel('test', fontsize=16)
plt.ylabel('size', fontsize=16)
plt.tight_layout()

现在,here中的代码为我提供了此图片: current format 我想将绘图旋转90度,例如(x和y标签也需要旋转): desire format

0 个答案:

没有答案