0% found this document useful (0 votes)
101 views1 page

How To Read CSV File in Anaconda Navigator

The document provides instructions for loading a CSV file into a Jupyter Notebook. It first instructs the user to copy the CSV file into their current directory. It then states to write code to read the CSV file into a Pandas DataFrame using pd.read_csv, ensuring the file name matches what is specified in the function.

Uploaded by

Ashirbad Nayak
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
101 views1 page

How To Read CSV File in Anaconda Navigator

The document provides instructions for loading a CSV file into a Jupyter Notebook. It first instructs the user to copy the CSV file into their current directory. It then states to write code to read the CSV file into a Pandas DataFrame using pd.read_csv, ensuring the file name matches what is specified in the function.

Uploaded by

Ashirbad Nayak
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

First of all copy and paste the csv file in C->USERS->KIIT Folder as it is my current directory.

You can
also see Youtube for how to change current directory in Jupyter Notebook.

Then write the below codes-

Note- The name of the csv file should match with the pd.read_csv (‘ file name.csv ’(for example))

You might also like