1# Short answer:
2# Seaborn uses matplotlib, so you can set the axes in the same way with
3# plt.xlim(lower, upper) and plt.ylim(lower, upper)
4
5# Example usage:
6import seaborn as sns
7import matplotlib.pyplot as plt
8sns.set_style("whitegrid")
9tips = sns.load_dataset("tips")
10sns.boxplot(x="day", y="total_bill", data=tips)
11plt.ylim(5, 45)