python pandas: 如何将折线图的 x 轴与 y 轴切换

python pandas: how to switch x-axis with y-axis for a line graph

我在创建折线图时遇到问题。我需要将 x 轴与 y 轴切换。

我的想法是在 y 轴上可视化分支(F1、F2、F3、F4),在 x 轴上可视化从 1-100 的星期

如果您知道如何执行此操作,请发表评论:) 谢谢!

我的数据是这样的: data

我的代码:

data.set_index('Branch').plot()
plt.show()

after I plot my data

尝试在绘图之前转置 DataFrame:

data.set_index('Branch').T.plot()
plt.show()