标签: python-2.7 matplotlib boxplot
我使用以下代码创建一个箱形图:
df.assign(index=df.groupby('stage').cumcount()).pivot('index','stage','days').plot(kind='box', sym='bD', showmeans = True)
代码工作正常,但我想知道是否可以为每个类别(框)添加记录号?谢谢!