I'm very new to using R, so this might hopefully be a very easy question for some of you.
I'm trying load a rds
file which should contain some data.
Professor says to use readRDS()
, however R gives this long error message which I've not been able to decipher myself.
I'm trying to load the file and place it in an Object.
I hope that someone are able to provide some clever solution to this problem.
Canteen_clean <- readRDS("C:/Users/a_s_j/OneDrive/Studie/Cand.merc.Business Intelligence/1. Semester/R for Business Analytics/.Rproj/39 - Graphics/Exercises02/canteen_clean.rds")
Error in gzfile(file, "rb") : cannot open the connection
In addition: Warning message: In gzfile(file, "rb") : cannot open compressed file 'C:/Users/a_s_j/OneDrive/Studie/Cand.merc.Business Intelligence/1. Semester/R for Business Analytics/.Rproj/39 - Graphics/Exercises02/canteen_clean.rds', probable reason 'No such file or directory'
I'm using:
pacman::p_load("pacman", "tidyverse")
to load the packages that should be necessary.