我有一个包含几列的数据框,其上是性别(男,女)。我想得到两个变量相对于第三个变量的折线图,在本例中为收入,我有以下代码:
ax = plt.gca()
df.plot(kind='line', x='income', y=[df.gender=='male'], ax=ax)
df.plot(kind='line', x='income', y=[df.gender =='female'], color='red', ax=ax)
plt.show()
并且我不断收到Value错误。 我想我应该使用条形图? 有什么想法吗?
答案 0 :(得分:1)