Description Usage Arguments Slots Examples
1 | IncrementsNumDoseLevels(maxLevels = 1, basisLevel = "last")
|
maxLevels |
see below. |
basisLevel |
see below. |
maxLevels
(count
)
corresponding to the number of maximum
dose levels to increment for the next dose. It defaults to 1,
which means that no dose skipping is allowed - the next dose
can be maximum one level higher than the current dose.
basisLevel
(string
)
corresponding to the dose level used to increment from.
It can take two possible values last
or max
. If last
(default)
is specified the increments is applied to the last given dose and if
max
is specified the increment is applied from the max given dose
level.
1 2 3 4 5 6 7 8 | # In this example we define a rule for dose increments which would allow:
# Maximum skip one dose level, that is 2 dose levels higher than the last dose
# given.
# Maximum increment is explicitly defined as:
increments <- IncrementsNumDoseLevels(maxLevels = 2, basisLevel = "last")
# Since the default method is based on the last dose given,
# maximum increment can also be defined as:
increments <- IncrementsNumDoseLevels(maxLevels = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.