Data | R Documentation |
This is the function for initializing a "Data" class object.
Data(
x = numeric(),
y = integer(),
ID = integer(),
cohort = integer(),
doseGrid = numeric(),
placebo = FALSE,
...
)
x |
the doses for the patients |
y |
the vector of toxicity events (0 or 1 integers). You can also normal numeric vectors, but these will then be converted to integers. |
ID |
unique patient IDs (integer vector) |
cohort |
the cohort indices (sorted values from 0, 1, 2, ...) |
doseGrid |
the vector of all possible doses |
placebo |
logical value: if TRUE the first dose level in the grid is considered as PLACEBO |
... |
not used |
Note that ID
and cohort
can be missing, then a warning
will be issued and the variables will be filled with default
IDs and best guesses, respectively.
the initialized Data
object
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.