我有像这样的DataFrame
action | Mark | Linda | Paul | Sarah
goals | 10 | 11 | 5 | 8
assist | 6 | 5 | 2 | 4
corners | 1 | 6 | 5 | 2
我想通过动作栏创建一个条形图来比较列Mark Linda Paul Sarah。
我喜欢这样的事情
import matplotlib.pyplot as plt
ax = df[['Mark','Linda', 'Paul', 'Sarah']].plot(kind='bar', title ="Championship")
ax.set_xlabel("Action",fontsize=12)
我发现了这个example,但它使用了不同的数组。有没有办法迭代所有列,使用第一列进行比较并创建条形图?
谢谢!