How to import the dataset I have already uploaded, to my Google Collab Juypter notebook?
I have successufully uploaded my data using: google.colab.files method
uploaded = files.upload()
But when I try to read the uploaded data(Here train.csv) , it throws FileNotFound error
df = pd.read_csv('train.csv')
Maybe the files by default are getting stored in some other directory. Any sugesstions on how do I import my data? Thanks for help!