Last Updated : 23 Jul, 2025
Prerequisite: seaborn
The Boxplots are used to visualize the distribution of data which is useful when a comparison of data is required. Sometimes, Boxplot is also known as a box-and-whisker plot. The box shows the quartiles of dataset and whiskers extend to show rest of the distribution. In this article, we are going to implement the Horizontal boxplot with seaborn using python.
Horizontal Box plotsSeaborn uses the boxplot() method to draw a boxplot. We can turn the boxplot into a horizontal boxplot by two methods first, we need to switch x and y attributes and pass it to the boxplot( ) method, and the other is to use the orient="h" option and pass it to the boxplot() method.
Method 1: Switching x and y attribute
Python3
# import library & dataset
import seaborn as sns
df = sns.load_dataset('iris')
# Just switch x and y
sns.boxplot(y=df["species"], x=df["sepal_length"])
Output:
Horizontal BoxplotMethod 2: Using orient = h
Python3
# import library & dataset
import seaborn as sns
tips = sns.load_dataset("tips")
ax = sns.boxplot(data=tips, orient="h", palette="Set2")
Output :
Horizontal BoxplotRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4