I have many files I want to convert from sas7bdat to Rds using R, I am using the following code:
name <- read_sas("C:/Users/Desktop/Files/name.sas7bdat")
saveRDS(name, file = "C:/Users/Desktop/RDSfiles/name.Rds")
but there are too many files I would like to use a loop to optimize to process, any ideas?
Thank you very much!!