Created
January 16, 2021 17:16
-
-
Save catris25/c574a2ce2c067bc622fedb4af8c58a45 to your computer and use it in GitHub Desktop.
Which artists have the most songs in my Top 100?
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
| a = df1['artist'].value_counts().nlargest(10) | |
| fig = go.Figure([go.Bar(x=a.index, | |
| y=a.values, | |
| text=a.values, | |
| textposition='auto', | |
| marker_color='seagreen')]) | |
| fig.update_layout(title_text='Artists with Most Songs on My Top 100') | |
| fig.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment