| orderly_comparison_explain | R Documentation |
This function allows to select what part of the packet to compare, and in how much details.
orderly_comparison_explain(cmp, attributes = NULL, verbose = FALSE)
cmp |
An orderly_comparison object, as returned by
|
attributes |
A character vector of attributes to include in the
comparison. The values are keys of the packets' metadata, such as
|
verbose |
Control over how much information is printed. It can either
be a logical, or a character scalar |
Invisibly, a logical indicating whether the packets are equivalent, up to the given attributes.
path <- orderly_example()
id1 <- orderly_run("parameters", list(max_cyl = 6), root = path)
id2 <- orderly_run("parameters", list(max_cyl = 4), root = path)
cmp <- orderly_compare_packets(id1, id2, root = path)
orderly_comparison_explain(cmp)
orderly_comparison_explain(cmp, verbose = TRUE)
orderly_comparison_explain(cmp, "parameters", verbose = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.