Home > Back-end >  Importing CSV file into jupyter
Importing CSV file into jupyter

Time:01-29

I couldnt add the data in enter image description here

I was expecting to load the data but ended up having those errors

CodePudding user response:

You can use this code :

import pandas as pd

df = pd.read_csv('D://path//data.csv')

you must put the path where is located CSV file

CodePudding user response:

Your csv file needs to be in the same folder as your notebook or you need to change the file path to correctly point to the file.

df_launch = pd.read_csv('cost-space-launched(1).csv') # you need to give correct file path
  • Related