I am trying to open a dataset saved as a csv on Jupyter Notebook. I saved the dataset on my desktop:
data <- read.csv("Desktop/dataset1.csv")
I am getting the following error:
Warning message in file(file, "rt"): “cannot open file '"Desktop/dataset1.csv": No such file or directory” Error in file(file, "rt"): cannot open the connection Traceback:
- read.csv("\u2068/Desktop\u2069/dataset1.csv")
- read.table(file = file, header = header, sep = sep, quote = quote, . dec = dec, fill = fill, comment.char = comment.char, ...)
- file(file, "rt")
Can anyone understands what is going on? I am learning how to use Jupyter Notebook and I cannot find an answer online.
Jupyter
notebook does not know where your Desktop is. Try uploading the file to theJupyter
notebook environment. – Andrew Chisholm