Answers for "matplotlib plot kind hist"

0

matplotlib hist

# Import packages
import matplotlib.pyplot as plt
%matplotlib inline

# Create the plot
fig, ax = plt.subplots()

# Plot the histogram with hist() function
ax.hist(x, edgecolor = "black", bins = 5)

# Label axes and set title
ax.set_title("Title")
ax.set_xlabel("X_Label")
ax.set_ylabel("Y_Label")
Posted by: Guest on February-05-2021
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