这是我的 Dataframe 看起来像:单击行以下载 Dataframe
enter link description here for dataframe
我已经尝试了以下代码:
plt.plot(LessDF['DeptAvg'] == 'COA111', LessDF['week1'])
plt.plot(LessDF['DeptAvg'] == 'COA111', LessDF['week2'])
plt.plot(LessDF['DeptAvg'] == 'COA111', LessDF['week3'])
我的代码有输出:
我希望输出如下:
我怎样才能用matplotlib或seaborn得到这个输出?
2条答案
按热度按时间bq8i3lrv1#
对于所应用的筛选器,DeptAvg列中的所有值都是67。
此外,您还提供了一个布尔值作为x:
LessDF['DeptAvg'] == 'COA111'
.此外,您将条件应用于错误的列
DeptAvg
,而不是classes
更多信息here
50few1ms2#