Hi,
I have downloaded the studentlife dataset(s) in Rdata format.To load each dataset from specific schema,I use
schema <- "sensing"
table <- "activity"
act<-readRDS(paste0(d, "/dataset_rds/", schema, "/", table, ".Rds"))
this structure.However,when I attempt to load any table from the education schema,it gives me this kind of error:
Error in gzfile(file, "rb") : cannot open the connection
I have checked for any typos,but it doesn't look like the error is a Type Error.
Hi,
I have downloaded the studentlife dataset(s) in Rdata format.To load each dataset from specific schema,I use
schema <- "sensing"table <- "activity"act<-readRDS(paste0(d, "/dataset_rds/", schema, "/", table, ".Rds"))this structure.However,when I attempt to load any table from the education schema,it gives me this kind of error:
Error in gzfile(file, "rb") : cannot open the connection
I have checked for any typos,but it doesn't look like the error is a Type Error.