I am currently learning Pandas for data analysis and having some issues reading a csv file in Atom editor.
When I am running the following code:
imp
Being on jupyter notebook it works for me including the relative path only. For example:
df = pd.read_csv ('file.csv')
But, for example, in vscode I have to put the complete path:
df = pd.read_csv ('/home/code/file.csv')