Answers for "matplotlib.hist"

13

matplotlib histogram

import matplotlib.pyplot as plt
data = [1.7,1.8,2.0,2.2,2.2,2.3,2.4,2.5,2.5,2.5,2.6,2.6,2.8,
        2.9,3.0,3.1,3.1,3.2,3.3,3.5,3.6,3.7,4.1,4.1,4.2,4.3]
#this histogram has a range from 1 to 4
#and 8 different bins
plt.hist(data, range=(1,4), bins=8)
plt.show()
Posted by: Guest on March-15-2020
1

plt normalized histogram

plt.hist(data, density=True)
Posted by: Guest on June-24-2020
0

plt.hist using bins

counts, bins = np.histogram(data)
plt.hist(bins[:-1], bins, weights=counts)
Posted by: Guest on September-17-2020
0

python matpotlib histplot

import matplotlib.pyplot as plt
plt.hist(x) #x is a array of numbers
plt.show()
Posted by: Guest on November-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language