I\'m using this code below to plot a catplot with Seaborn. Its working ok.
sns.catplot(data=df_gol,
x=\'MODALIDADE_DO_VOO\',
y=\'VALOR\',
use the col= keyword instead of the row=
to organize your subplots in columns. You can adjust the number of plots per row by using the col_wrap=
argument.
sns.catplot(data=df_gol,
x='MODALIDADE_DO_VOO',
y='VALOR',col='DESTINO', # <--- replaced row= by col=
kind='box',height=3, aspect=1,
color='red')