design_equal | R Documentation |
Given two data frames that contain the design of experiment output, test to see if the design is equivalent.
design_equal(x, y, ...)
x, y |
A data frame with the design of experiment table |
... |
A series of name-value pair specifying which columns in |
## Not run: library(edibble) des1 <- design() %>% set_units(plot = 30) %>% set_trts(trt = 5) %>% allot_table(trt ~ plot) des2 <- design() %>% set_units(subject = 30) %>% set_trts(vaccine = 5) %>% allot_table(vaccine ~ subject) design_equal(des1, des2, plot = subject, trt = vaccine) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.