powered by
Read the backups in a versioned dataset to a data frame or an arrow dataset
get_backups(destination, collect = TRUE)
an arrow dataset
a local directory path or an arrow SubTreeFileSystem
should we collect the underlying arrow dataset or return just the connection?
temp_dir <- tempfile() dir.create(temp_dir, recursive = TRUE) df <- data.frame(a = 1:5, b = letters[1:5]) put_backup(df, temp_dir) get_backups(temp_dir)
Run the code above in your browser using DataLab