| map_newdata {predRupdate} | R Documentation |
Map new data to a predinfo object
Description
This function takes a predinfo object and applies (maps) a new data to
this object to check there is consistency between the two. This function is
not usually called directly, but rather within other functions within the
package, such as pred_predict.
Usage
map_newdata(
x,
new_data,
binary_outcome = NULL,
survival_time = NULL,
event_indicator = NULL
)
Arguments
x |
an object of class "predinfo". |
new_data |
data.frame upon which the prediction model should be applied (for subsequent validation/model updating/model aggregation). |
binary_outcome |
Character variable giving the name of the column in
|
survival_time |
Character variable giving the name of the column in
|
event_indicator |
Character variable giving the name of the column in
|
Details
This function maps a new dataset onto a pred_info object. The
new dataset might be a validation dataset (to test the performance of the
existing prediction model) and/or it might be the dataset on which one
wishes to apply model updating methods to revise the model. In any case,
this should be specified in new_data as a data.frame. Each row
should be an observation (e.g. patient) and each variable/column should be
a predictor variable. The predictor variables need to include (as a
minimum) all of the predictor variables that are included in the existing
prediction model (i.e., each of the variable names supplied to
pred_input_info, through the model_info parameter,
must match the name of a variables in new_data).
Any factor variables within new_data must be converted to dummy
(0/1) variables before calling this function. dummy_vars can
help with this.
binary_outcome, survival_time and event_indicator are
used to specify the outcome variable(s) within new_data, if relevant
(use binary_outcome if model_type = "logistic", or use
survival_time and event_indicator if model_type =
"survival"). For example, if validating an existing model, then these
inputs specify the columns of new_data that will be used for
assessing predictive performance of the predictions in the validation
dataset. If new_data does not contain outcomes, then leave these
inputs to the default of NULL.
Value
Returns a list of the predinfo object, the new_data, and outcomes.
Examples
#as above, this function is not usually called directly, but an example of
#such use is:
model1 <- pred_input_info(model_type = "logistic",
model_info = SYNPM$Existing_logistic_models[1,])
map_newdata(x = model1,
new_data = SYNPM$ValidationData[1:10,],
binary_outcome = "Y")