parsing data using python pandas csv code example
Example 1: read a csv file in pandas
you should be in the same dir as .py file
df = pd.read_csv('your_file_name.csv')
Example 2: reading a dataset in python
From Datacamp
you should be in the same dir as .py file
df = pd.read_csv('your_file_name.csv')
From Datacamp