Forked from abhijeet-talaulikar/mta-credit-card-scatter.py
Created
September 27, 2023 16:02
-
-
Save Sandy4321/5a148ffac3d768bd2d1bb6765947de56 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