In plots you can change the color or marker using the syntax: plot_name = sns.regplot(data = df, x = ‘col1’, y = ‘col2’, color = ' ' ) plot_name = sns.regplot(data = df, x = ‘col1’, y = ‘col2’, marker = ' ' )
Long format is best for point plots, bar plots
Wide format is best for scatter/regression plots, histograms, count plots