0
点赞
收藏
分享

微信扫一扫

dataframe 绘制直方图 matpltolib 绘制直方图 箱线图

王小沫 2022-05-03 阅读 64
python
ap_train[lx_columns].hist(figsize=(20,15));

报错:AttributeError: ‘Series’ object has no attribute ‘boxplot’
改为dataframe再绘制箱线图

df[['col_name']].boxplot()
举报

相关推荐

0 条评论