python里面(pyplot)怎么画直方图可以让y轴显示百分比,而不是绝对的数值统计?
我现在是直接用ply.hist,得到的是长下面这样的
我希望y轴显示的是百分比,比重之类。
谢谢!
1个回答
import matplotlib
from numpy.random import randn
import matplotlib.pyplot as plt
from matplotlib.ticker import FuncFormatter
# 把y轴转化为百分比。
def to_percent(y, position):
return str(100 * y) + '%'
# 直方图的数据集
x = randn(500)
# 设置直方图分组数量bins=60.
plt.hist(x, bins=60, weights= [1./ len(x)] * len(x))
formatter = FuncFormatter(to_percent)
plt.gca().yaxis.set_major_formatter(formatter)
plt.show()