powered by
Write a data frame to the backup section of a versioned dataset
put_backup(new_df, destination)
TRUE
a data frame
a local directory path or an arrow SubTreeFileSystem
temp_dir <- tempfile() dir.create(temp_dir, recursive = TRUE) df <- data.frame(a = 1:5, b = letters[1:5]) put_backup(df, temp_dir)
Run the code above in your browser using DataLab