Guest User

Untitled

a guest
Oct 1st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. import pandas as pd
  3.  
  4. headers = ['Country','Visitors']
  5. df = pd.read_csv('September.csv', delimiter=",", names=headers)
  6. x = df['Country']
  7. y = df['Visitors']
  8.  
  9. plt.plot(x,y)
  10. plt.xlabel('Country')
  11. plt.ylabel('New Users')
  12. plt.title('September Visitors')
  13. plt.show()
Add Comment
Please, Sign In to add comment