Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import matplotlib.pyplot as plt
- import pandas as pd
- headers = ['Country','Visitors']
- df = pd.read_csv('September.csv', delimiter=",", names=headers)
- x = df['Country']
- y = df['Visitors']
- plt.plot(x,y)
- plt.xlabel('Country')
- plt.ylabel('New Users')
- plt.title('September Visitors')
- plt.show()
Add Comment
Please, Sign In to add comment