Objects of class Criterion
are used in objects of class EvaluationModel
to specify the criteria that will be applied to the Clinical Scenario. Several objects of class Criterion
can be added to an object of class EvaluationModel
.
Mandatory arguments are id
, method
, labels
and tests
and/or statistics
.
method
argument defines the criterion's method. Several methods are already implemented in the Mediana package (listed below, along with the required parameters to define in the par
parameter):
MarginalPower
: generate the marginal power of all tests defined in the test
argument. Required parameter: alpha
.
WeightedPower
: generate the weighted power of all tests defined in the test
argument. Required parameters: alpha
and weight
.
DisjunctivePower
: generate the disjunctive power (probability to reject at least one hypothesis defined in the test
argument). Required parameter: alpha
.
ConjunctivePower
: generate the conjunctive power (probability to reject all hypotheses defined in the test
argument). Required parameter: alpha
.
ExpectedRejPower
: generate the expected number of rejected hypotheses. Required parameter: alpha
.