DualEndpointBeta
is the class for the dual endpoint model with beta
function for dose-biomarker relationship.
Arguments
- E0
(
numeric
)
either a fixed number or the two uniform distribution parameters.- Emax
(
numeric
)
either a fixed number or the two uniform distribution parameters.- delta1
(
numeric
)
either a fixed positive number or the two parameters of the uniform distribution, that can take only positive values.- mode
(
numeric
)
either a fixed positive number or the two parameters of the uniform distribution, that can take only positive values.- ref_dose_beta
(
number
)
the reference dose \(x*\) (strictly positive number). Note that this is different from theref_dose
in the inheritedDualEndpoint
model).- ...
parameters passed to
DualEndpoint()
.
Details
This class extends the DualEndpoint
class so that the dose-biomarker
relationship \(f(x)\) is modelled by a parametric, rescaled beta density
function:
$$f(x) = E0 + (Emax - E0) * Beta(delta1, delta2) * (x/x*)^{delta1} * (1 - x/x*)^{delta2},$$
where \(x*\) is the maximum dose (end of the dose range to be considered),
\(delta1\) and \(delta2\) are the two beta function parameters, and
\(E0\), \(Emax\) are the minimum and maximum levels, respectively.
For ease of interpretation, we use the parametrization based on \(delta1\)
and the mode, where
$$mode = delta1 / (delta1 + delta2),$$
so that multiplying this by \(x*\) gives the mode on the dose grid.
All parameters can currently be assigned uniform distributions or be fixed
in advance. Note that E0
and Emax
can have negative values or
uniform distributions reaching into negative range, while delta1
and
mode
must be positive or have uniform distributions in the positive
range.
Slots
E0
(
numeric
)
either a fixed number or the two uniform distribution parameters.Emax
(
numeric
)
either a fixed number or the two uniform distribution parameters.delta1
(
numeric
)
either a fixed positive number or the two parameters of the uniform distribution, that can take only positive values.mode
(
numeric
)
either a fixed positive number or the two parameters of the uniform distribution, that can take only positive values.ref_dose_beta
(
positive_number
)
the reference dose \(x*\) (note that this is different from theref_dose
in the inheritedDualEndpoint
model).