0

I created a seaborn pointplot with the following script :

fig, ax = plt.subplots(figsize=(10, 5))
plot = sns.pointplot(ax=ax, data=Dataframe, x="Month", y="CovDist", hue='Tag')
plt.show()

The resulting figure is this:

enter image description here

The problem is that the blue line corresponding to VC is completely out of scale compared to the other elements, so the patterns are impossible to observe. Basically, I would like to cut my Y-axis to 5000 to reproduce only the upper part (more thatn 10 000) of the blue line values, keeping the lower part with the rest of the lines zoomed in.

Trenton McKinney
  • 56,955
  • 33
  • 144
  • 158
toms
  • 103
  • 4

0 Answers0