Answers for "should i use df.hist() ot plt.hist()"

1

pandas plot histogram

ax = df.plot.hist(bins=12, alpha=0.5)
Posted by: Guest on May-24-2021
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

Python Answers by Framework

Browse Popular Code Answers by Language