seaborn y axis range code example

Example 1: python how to set the axis ranges in seaborn

# Short answer:
# Seaborn uses matplotlib, so you can set the axes in the same way with
# plt.xlim(lower, upper) and plt.ylim(lower, upper)

# Example usage:
import seaborn as sns
import matplotlib.pyplot as plt
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
sns.boxplot(x="day", y="total_bill", data=tips)
plt.ylim(5, 45)

Example 2: seaborn documentation x axis range

>>> set_style("ticks", {"xtick.major.size": 8, "ytick.major.size": 8})