Advertisement
elena1234

how to creat count plot in Python

May 25th, 2022
1,029
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. plt.figure(figsize=(20,15), dpi = 200)
  2. sns.countplot(data = fandago, x = 'STARS_DIFF', palette = 'magma' )
  3. plt.title('Number of times a difference occurs')
  4. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement