View source: R/summarise_diffs.R
summarise_diffs | R Documentation |
Create a data frame which summarises the diffs in a versioned dataset
summarise_diffs(destination)
destination |
a local directory path or an arrow SubTreeFileSystem |
a data frame of diff statistics
temp_dir <- tempfile() dir.create(temp_dir, recursive = TRUE) df <- data.frame(a = 1:5, b = letters[1:5]) new_df <- data.frame(a = 2:5, b = letters[2:5]) diff <- diffdfs::diffdfs(new_df, df) commit_diff(diff, temp_dir) summarise_diffs(temp_dir) unlink(temp_dir)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.