I have a Pandas DataFrame and I have a particular column that I would like to plot as a boxplot with another column made of values. The dataframe is a made of 49609 observations but the column of interest is made of 79 unique features.
Here is my attempt to do this:
sns.boxplot(x="values", y="column_of_interest",data=df)
But the axes are joined together too closely