Python matplotlib作图时,设置横纵坐标轴数值以百分比(%)显示
def to_percent(temp, position):return '%.3f'%(float(100)*temp) + '%'
plt.gca().yaxis.set_major_formatter(FuncFormatter(to_percent))
seaborn
其实是频率分布直方图
主要参考:
Seaborn.distplot的Y轴意味着什么?(KDE plot)
sns.distplot()用法
Python可视化 | Seaborn5分钟入门(一)——kdeplot和distplot
hist
matplotlib可视化篇hist()–直方图
Matplotlib(3、直方图) - plt.hist()参数解释&应用实例
Matplotlib——直方图_hist()函数_histogram()函数_二维数据
python 为直方图绘制拟合曲线
–自己构建hist拟合曲线
关于python中plt.hist参数的使用详解–旧版本