getTestActions {rpact} | R Documentation |
Returns test actions.
getTestActions(stageResults, ...)
stageResults |
The results at given stage, obtained from |
... |
Only available for backward compatibility. |
Returns the test actions of the specified design and stage results at the specified stage.
Returns a character
vector of length kMax
Returns a numeric
vector of length kMax
containing the test actions of each stage.
Other analysis functions:
getAnalysisResults()
,
getClosedCombinationTestResults()
,
getClosedConditionalDunnettTestResults()
,
getConditionalPower()
,
getConditionalRejectionProbabilities()
,
getFinalConfidenceInterval()
,
getFinalPValue()
,
getRepeatedConfidenceIntervals()
,
getRepeatedPValues()
,
getStageResults()
## Not run:
design <- getDesignInverseNormal(kMax = 2)
data <- getDataset(
n = c( 20, 30),
means = c( 50, 51),
stDevs = c(130, 140)
)
getTestActions(getStageResults(design, dataInput = data))
## End(Not run)