Skip to contents

Insignificant differences in the metadata (e.g., different dates and packet IDs) are excluded from the comparison.

Usage

orderly_compare_packets(
  target,
  current,
  location = NULL,
  allow_remote = NULL,
  fetch_metadata = FALSE,
  root = NULL
)

Arguments

target

The id of the packet to use in the comparison.

current

The id of the other packet against which to compare.

location

Optional vector of locations to pull from. We might in future expand this to allow wildcards or exceptions.

allow_remote

Logical, indicating if we should allow packets to be found that are not currently unpacked (i.e., are known only to a location that we have metadata from). If this is TRUE, then in conjunction with orderly_dependency you might pull a large quantity of data. The default is NULL. This is TRUE if remote locations are listed explicitly as a character vector in the location argument, or if you have specified fetch_metadata = TRUE, otherwise FALSE.

fetch_metadata

Logical, indicating if we should pull metadata immediately before the search. If location is given, then we will pass this through to orderly_location_fetch_metadata to filter locations to update. If pulling many packets in sequence, you will want to update this option to FALSE after the first pull, otherwise it will update the metadata between every packet, which will be needlessly slow.

root

The path to the root directory, or NULL (the default) to search for one from the current working directory. This function does not require that the directory is configured for orderly, and can be any outpack root (see orderly_init for details).

Value

An object of class orderly_comparison. The object can be printed to get a summary description of the differences, or passed to orderly_comparison_explain to display more details.

Examples


# Here are two packets that are equivalent, differing only in id
# and times:
path <- orderly_example()
#>  Created orderly root at '/tmp/RtmpFU5thv/orderly_ex_1d17729881de'
id1 <- orderly_run("data", root = path)
#>  Starting packet 'data' `20250926-110911-a40de0d7` at 2025-09-26 11:09:11.645754
#> > orderly_description(
#> +   display = "A demo data set")
#> > x <- jitter(1:30)
#> > y <- 0.4 * x + 5 + rnorm(length(x), sd = 2)
#> > d <- data.frame(x, y)
#> > orderly_artefact("data.rds", description = "A synthetic dataset")
#> > saveRDS(d, "data.rds")
#>  Finished running data.R
#>  Finished 20250926-110911-a40de0d7 at 2025-09-26 11:09:11.71688 (0.07112622 secs)
id2 <- orderly_run("data", root = path)
#>  Starting packet 'data' `20250926-110911-bd82ef1a` at 2025-09-26 11:09:11.744744
#> > orderly_description(
#> +   display = "A demo data set")
#> > x <- jitter(1:30)
#> > y <- 0.4 * x + 5 + rnorm(length(x), sd = 2)
#> > d <- data.frame(x, y)
#> > orderly_artefact("data.rds", description = "A synthetic dataset")
#> > saveRDS(d, "data.rds")
#>  Finished running data.R
#>  Finished 20250926-110911-bd82ef1a at 2025-09-26 11:09:11.856699 (0.1119554 secs)
orderly_compare_packets(id1, id2, root = path)
#>  Comparing packets 20250926-110911-a40de0d7 and 20250926-110911-bd82ef1a...
#>  The following attributes are different across the two packets:
#> • files
#>  Use `orderly_comparison_explain(...)` to examine the differences in more detail.

# A more interesting comparison:
id1 <- orderly_run("parameters", list(max_cyl = 6), root = path)
#>  Starting packet 'parameters' `20250926-110911-ea5a4db6` at 2025-09-26 11:09:11.920827
#>  Parameters:
#> • max_cyl: 6
#> > # This declares that this orderly report accepts one parameter
#> > # 'max_cyl' with no default (i.e., it is required).
#> > pars <- orderly_parameters(max_cyl = NULL)
#> > orderly_artefact("data.rds", description = "Final data")
#> > # We can use the parameter by subsetting 'pars'; unlike regular R
#> > # lists you will get an error if you try and access a non-existent
#> > # element.
#> > data <- mtcars[mtcars$cyl <= pars$max_cyl, ]
#> > saveRDS(data, "data.rds")
#>  Finished running parameters.R
#>  Finished 20250926-110911-ea5a4db6 at 2025-09-26 11:09:11.958772 (0.03794503 secs)
id2 <- orderly_run("parameters", list(max_cyl = 4), root = path)
#>  Starting packet 'parameters' `20250926-110911-fc84d501` at 2025-09-26 11:09:11.994499
#>  Parameters:
#> • max_cyl: 4
#> > # This declares that this orderly report accepts one parameter
#> > # 'max_cyl' with no default (i.e., it is required).
#> > pars <- orderly_parameters(max_cyl = NULL)
#> > orderly_artefact("data.rds", description = "Final data")
#> > # We can use the parameter by subsetting 'pars'; unlike regular R
#> > # lists you will get an error if you try and access a non-existent
#> > # element.
#> > data <- mtcars[mtcars$cyl <= pars$max_cyl, ]
#> > saveRDS(data, "data.rds")
#>  Finished running parameters.R
#>  Finished 20250926-110911-fc84d501 at 2025-09-26 11:09:12.02476 (0.03026152 secs)
cmp <- orderly_compare_packets(id1, id2, root = path)
cmp
#>  Comparing packets 20250926-110911-ea5a4db6 and 20250926-110911-fc84d501...
#>  The following attributes are different across the two packets:
#> • parameters
#> • files
#>  Use `orderly_comparison_explain(...)` to examine the differences in more detail.

# A verbose comparison will show differences in the constituent
# components of each packet:
orderly_comparison_explain(cmp, verbose = TRUE)
#>  Comparing packets 20250926-110911-ea5a4db6 and 20250926-110911-fc84d501...
#>  Comparing attribute `parameters`
#> < 20250926-110911-ea5a4db6$parameters
#> > 20250926-110911-fc84d501$parameters
#> @@ 1,3 / 1,3 @@  
#>   $max_cyl       
#> < [1] 6          
#> > [1] 4          
#>                  
#> ! The following files differ across packets, but could not be compared as their content is binary:
#>   • data.rds