箱线图,box()或boxplot()密度图,kde()点击查看【bilibili】 箱线图,box()或boxplot()以education和salary两个维度制作箱线图 方法1: df.groupby('education').apply(lambda x:x.salary).unstack().T.plot.box() 方法2:注意column没有s df.boxplot(column='salary',by='education') 密度图,kde()df.salary.plot.kde() out: