Created
August 21, 2023 19:38
-
-
Save abhijeet-talaulikar/20b3963c3b0560f449f796f026b72eec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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