我是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中的代码为我提供了此图片: 我想将绘图旋转90度,例如(x和y标签也需要旋转):