update_values {sfd} | R Documentation |
For a set of values, this function inserts the actual values of the design
produced by get_design()
.
update_values(design, values)
design |
A tibble produced by |
values |
A list of vectors containing the possible values for each
parameter. There should be as many values (of any type) as there are rows in
|
An updated tibble.
des <- get_design(3, 6)
des
vals <- list(1:6, letters[1:6], seq(20, 21, length.out = 6))
des_2 <- update_values(des, vals)
des_2