Last chance! 50% off unlimited learning
Sale ends in
eff.cont
This is the base S3 class for all continuous effectiveness distributions, which is itself a
subclass of eff
. Function effCont_new
is the constructor of the class.
effCont_new(mean, var, df, x = NULL)
the expected value of the distibution.
the variance of the distribution.
the effective degrees of freedom of the distribution.
the sample of effectiveness scores used to fit the distribution. Defaults to
NULL
.
an object of class eff.cont
, with the following components:
mean |
the expected value. |
var |
the variance. |
df |
the degrees of freedom (effective number of parameters) for model selection. |
data |
the sample data used to fit the distribution, or NULL if none. |
model |
a list with the family-specific data. |
A new distribution family is expected to build new objects through this constructor, and they
must implement methods deff
, peff
, qeff
and
reff
.
effCont
for a list of currently implemented distribution families,
effContFit
to fit distributions, and effCont-helper
for helper
functions.
For discrete distributions, see eff.disc
.