Save results
save_data(df, name, path = NULL)
df | An object |
---|---|
name | Character string to use to save the object |
path | Character string giving the folder path |
Nothing returned
##Code save_data#> function (df, name, path = NULL) #> { #> path <- file.path(path, paste0(name, ".rds")) #> saveRDS(df, path) #> invisible() #> } #> <bytecode: 0x55630c721278> #> <environment: namespace:ETSMissing>