欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python可视化汇总

程序员文章站 2022-03-18 23:35:36
...

这里用到的可视化工具采用matplotlib.pyplot包的功能

1.箱线图   boxplot

from matplotlib import pyplot as plt
plt.boxplot(x=train['key'].values,labels='x',whis=1.5)

 

相关标签: matplotlib pyplot