# NOT RUN {
# modified example from runSimulation()
Design <- createDesign(N = c(10, 20),
SD = c(1, 2))
Design
# remove N=10, SD=2 row from initial definition
Design <- createDesign(N = c(10, 20),
SD = c(1, 2),
subset = !(N == 10 & SD == 2))
Design
# example with list inputs
Design <- createDesign(N = c(10, 20),
SD = c(1, 2),
combo = list(c(0,0), c(0,0,1)))
Design # notice levels printed (not typical for tibble)
print(Design, list2char = FALSE) # standard tibble output
Design <- createDesign(N = c(10, 20),
SD = c(1, 2),
combo = list(c(0,0), c(0,0,1)),
combo2 = list(c(5,10,5), c(6,7)))
Design
print(Design, list2char = FALSE) # standard tibble output
# }
Run the code above in your browser using DataLab