6.2.1HistogramLast updated 2020-01-29 Read time 1 minSimilar to a density plot, it visualizes how numerical data is distributed.sns.histplot1 2 3 4 5 6 7 8 import matplotlib.pyplot as plt import seaborn as sns df = sns.load_dataset("iris") sns.set(rc={"figure.figsize": (12, 8)}) sns.histplot(data=df["sepal_length"], binwidth=0.5) plt.show()