AnalysisModel object
AnalysisModel()
initializes an object of class AnalysisModel
.
AnalysisModel(...)
... |
defines the arguments passed to create the object of class |
Analysis models define statistical methods that are applied to the study data in a clinical trial.
AnalysisModel()
is used to create an object of class AnalysisModel
incrementally, using the '+' operator to add objects to the existing AnalysisModel
object. The advantage is to explicitely define which objects are added to the AnalysisModel
object. Initialization with AnalysisModel()
is higlhy recommended.
Objects of class Test
, MultAdjProc
, MultAdjStrategy
, MultAdj
and Statistic
can be added to an object of class AnalysisModel
.
See Also Test
, MultAdjProc
, MultAdjStrategy
, MultAdj
and Statistic
.
## Initialize an AnalysisModel and add objects to it analysis.model = AnalysisModel() + Test(id = "Placebo vs treatment", samples = samples("Placebo", "Treatment"), method = "TTest")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.