How can I change the y-axis values to show the full number of digits?
import seaborn as sns
sns.boxplot (x="waterfront", y="price", data=df)
I wanted the full range of digits to show (as in screenshot "target"), but the boxplot I created shows an annotated one (as in screenshot "current").
Target:
Current: