
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set Y-axis Range for Seaborn Boxplot using Matplotlib
To set the range of Y-axis for a Seaborn boxplot, we can take the following steps −
Using set_style() method, set the aesthetic style of the plots.
Load the dataset using load_dataset("tips"); need Internet.
Using boxplot(), draw a box plot to show distributions with respect to categories.
To set the range of Y-axis, use the ylim() method.
To display the figure, use the show() method.
Example
from matplotlib import pyplot as plt import seaborn as sns plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True sns.set_style("whitegrid") tips = sns.load_dataset("tips") ax = sns.boxplot(x="day", y="total_bill", data=tips) plt.ylim(5, 50) plt.show()
Output
Advertisements