Scatter Plots
sns.scatterplot(x='colName', y='colName', data=df)
# hue='anotherColName', colors based on 'anotherColName' ////// really good!!!
# palatte=colormap, change colors by using a colormap google it
# size='colName'
# s=10, makes a set size
# alpha=0.5, 50% opacity
# style='colName', diffrent shape for each featureYou can edit a figure for styling first
sns.scatterplot(x='colName', y='colName', data=df)Export
plt.savefig('fig.png')
plt.show()