我正在寻找有关如何计算直方图的最大 y 值的建议。
#simple histogram. how can I obtain the maximum value of, say, x and y?
import matplotlib.pyplot as plt
hdata = randn(500)
x = plt.hist(hdata)
y = plt.hist(hdata, bins=40)
我正在寻找有关如何计算直方图的最大 y 值的建议。
#simple histogram. how can I obtain the maximum value of, say, x and y?
import matplotlib.pyplot as plt
hdata = randn(500)
x = plt.hist(hdata)
y = plt.hist(hdata, bins=40)