← 返回首页
Basic histogram with Seaborn

Basic histogram with Seaborn

Histograms are used to display the distribution of one or several numerical variables. Seaborn enables us to plot both the histogram bars as well as a density curve obtained the same way than kdeplots.

With Seaborn, histograms are made using the histplot function. You can call the function with default values, what already gives a nice chart. Though, do not forget to play with the number of bins using the ‘bins’ argument. Indeed, a pattern can be hidden under the hood that one would not be able to detect with default bins values.

Drawing a simple histogram with default parameters

# libraries & dataset import seaborn as sns import matplotlib.pyplot as plt sns.set_theme(style="darkgrid") df = sns.load_dataset("iris") sns sns.histplot(data=df, x="sepal_length") plt.show()

You can add a kde curve to a histogram by setting the kde argument to True.

# libraries & dataset import seaborn as sns import matplotlib.pyplot as plt # set a grey background (use sns.set_theme() if seaborn version 0.11.0 or above, set otherwise) sns.set_theme(style="darkgrid") df = sns.load_dataset("iris") sns.histplot(data=df, x="sepal_length", kde=True) plt.show()

Another way of drawing a histogram with Seaborn is by using the displot() function. In versions before 0.11.0, it was named distplot() but it's now deprecated. Refer to the new displot function documentation for future use.

# libraries & dataset import seaborn as sns import matplotlib.pyplot as plt sns.set_theme(style="darkgrid") df = sns.load_dataset("iris") sns.displot(df["sepal_length"]) plt.show()

Controlling for the number of bins

# libraries & dataset import seaborn as sns import matplotlib.pyplot as plt sns.set_theme(style="darkgrid") df = sns.load_dataset("iris") sns.histplot(data=df, x="sepal_length", bins=20) plt.show()

Violin

Density

Histogram

Boxplot

Ridgeline

Beeswarm

🚨 Grab the Data To Viz poster!


Do you know all the chart types? Do you know which one you should pick? I made a decision tree that answers those questions. You can download it for free!

    Get Poster