data <- read.csv("dataset_2_wind_power_production(8).csv")
why am i constantly getting no such file or directory exists, even though it is loaded in my cloud files. ive spent hours trying to figure this out. thanks
data <- read.csv("dataset_2_wind_power_production(8).csv")
why am i constantly getting no such file or directory exists, even though it is loaded in my cloud files. ive spent hours trying to figure this out. thanks
This can happen if the file is not in your current working directory.
You can check with list.files(pattern = "*.csv")
to see if the file is seen or not.
Otherwise, you can try to use the full path of the file to be sure.
Not sure to follow what this mean for R. Are your project directory (or working directory) a cloud folder ?
I figure it out. I had slight "space" in between the csv that caused the loading problem
If your question's been answered (even by you!), would you mind choosing a solution? It helps other people see which questions still need help, or find solutions if they have similar problems. Here’s how to do it:
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.