Skip to content

Instantly share code, notes, and snippets.

@abhijeet-talaulikar
Created August 21, 2023 19:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save abhijeet-talaulikar/20b3963c3b0560f449f796f026b72eec to your computer and use it in GitHub Desktop.
Save abhijeet-talaulikar/20b3963c3b0560f449f796f026b72eec to your computer and use it in GitHub Desktop.
plt.figure(figsize=(10,5))
sns.scatterplot(data=df_scatter, x='Click Activation Rate', y='Activation Rate', s=200, color='#2653de')
for line in range(0, df_scatter.shape[0]):
plt.text(df_scatter['Click Activation Rate'][line]+0.001, df_scatter['Activation Rate'][line],
df_scatter['Channel'][line], horizontalalignment='left',
size='medium', color='black', weight='semibold')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment