Description Usage Arguments Value Examples
View source: R/parse_sessionInfo.R
Compare two sessionInfo
objects, parsed by parse_si()
1 | compare_si(si1, si2)
|
si1 |
A list, corresponding to the first object, generated by |
si2 |
A list, corresponding to the second object, generated by |
A data frame, with the packages, their versions, and the result of the comparison of their versions
1 2 3 4 5 | si1_output <- system.file("extdata", "si1.txt", package = "sessionDiffo")
si2_output <- system.file("extdata", "si2.txt", package = "sessionDiffo")
si1 <- parse_si(si1_output)
si2 <- parse_si(si2_output)
comparison_df <- compare_si(si1, si2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.