| AnalysisModel {Mediana} | R Documentation |
AnalysisModel object
Description
AnalysisModel() initializes an object of class AnalysisModel.
Usage
AnalysisModel(...)
Arguments
... |
defines the arguments passed to create the object of class |
Details
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.
References
http://gpaux.github.io/Mediana/
See Also
See Also Test, MultAdjProc, MultAdjStrategy, MultAdj and Statistic.
Examples
## Initialize an AnalysisModel and add objects to it
analysis.model = AnalysisModel() +
Test(id = "Placebo vs treatment",
samples = samples("Placebo", "Treatment"),
method = "TTest")