Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To remove a specific y-axis range in a point plot, you can use the set_ylim() method to set the upper and lower bounds of the y-axis range to be displayed in the plot. For example, to remove the range from 0 to 5 on the y-axis, you can use the following code:

import seaborn as sns

# Load example dataset
tips = sns.load_dataset("tips")

# Create a point plot
sns.pointplot(x="day", y="total_bill", data=tips)

# Set the y-axis limit to exclude the range from 0 to 5
plt.ylim(5, 50)

# Show the plot
plt.show()

This will create a point plot of the total bill amount by day, but the y-axis range will be limited to exclude the values from 0 to 5.