R/terminal.R
terminal.Rd
terminal
determines the 'terminal' points of a design returned by
des_one_stage
or des_two_stage
.
terminal(des = ph2rand::des_one_stage(), k = 1:des$J, summary = FALSE)
des | An object of class |
---|---|
k | A |
summary | A |
A list
with additional class "ph2rand_terminal"
,
containing each of the input parameters along with a tibble in the slot
$terminal
, which gives the determined terminal points.
# The default two-stage design des <- des_two_stage() # Its terminal points across stages 1 and 2 term_12 <- terminal(des) # Its terminal points from stage 2 only term_2 <- terminal(des, 2) # A plot of these points plot(term_2)#> NULL