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)