compareBDMethod {SummarizedBenchmark}R Documentation

Compare BDMethod objects

Description

Simple comparison of two BDMethod objects based on meta data.

Usage

compareBDMethod(x, y)

Arguments

x

a BDMethod object

y

a BDMethod object

Value

logical value indicating whether the two objects produced the same meta data.

Author(s)

Patrick Kimes

See Also

compareBenchDesigns

Examples

bdm1 <- BDMethod(stats::rnorm, params = rlang::quos(n = 100))
bdm2 <- BDMethod(stats::rt, params = rlang::quos(n = 100, df = 1))

compareBDMethod(bdm1, bdm2)


[Package SummarizedBenchmark version 2.6.0 Index]