Description Usage Arguments Details Value Examples
Determine the cross-over designs supported by the seq_#()
functions in
xover
.
1 |
D |
The number of treatments. Must be a single
|
J |
The number of periods. Must be a |
K |
The number of sequences. Must be a |
summary |
A |
seq_all()
supports the determination of the cross-over designs
supported by the seq_#()
functions in xover
for a
specified number of treatments (see D
), periods (see J
), and
sequences (see K
).
If at least one supported design is identified for the chosen input
parameters, a tibble
describing the supported
sequences. Otherwise, it will be NULL
. In either case,
the returned object will have class xover_seq
.
1 2 3 4 5 6 7 8 9 | # Available sequences for three-treatment three-period trials with between
# two and 20 sequences
three_by_three <- seq_all(D = 3, J = 3, K = 2:20)
# Available sequences for three-treatment two-period trials with between
# two and 20 sequences
three_by_two <- seq_all(D = 3, J = 2, K = 2:20)
# Available sequences for three-treatment two- or three-period trials with
between two and 20 sequences
three_by_two_or_three <- seq_all(D = 3, J = c(2, 3), K = 2:20)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.