Description Usage Arguments Value Author(s) See Also Examples
View source: R/compareBenchDesigns.R
Simple comparison of two BDData objects based on comparing both type and data hash.
1 | compareBDData(x, y)
|
x |
a |
y |
a |
list of two values giving agreement of "data" and "type".
Patrick Kimes
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## compare data with same MD5 hash value
bdd1 <- BDData(data.frame(x = 1:10))
bdd1h <- hashBDData(bdd1)
compareBDData(bdd1, bdd1h)
## compare different data, both same type
bdd2 <- BDData(data.frame(x = 2:11))
bdd2h <- hashBDData(bdd2)
compareBDData(bdd1, bdd2)
compareBDData(bdd1h, bdd2h)
## compare completely different data
compareBDData(bdd1, bdd2h)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.