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
Just referring to the filename like
df = pd.read_csv("FBI-CRIME11.csv")
generally only works if the file is in the same directory as the script.
If you are using windows, make sure you specify the path to the file as follows:
PATH = "C:\\Users\\path\\to\\file.csv"