Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sandy4321/5a148ffac3d768bd2d1bb6765947de56 to your computer and use it in GitHub Desktop.
Save Sandy4321/5a148ffac3d768bd2d1bb6765947de56 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