Skip to contents

This function prepares the data for the model. It takes the rROC result and applies the restrictions to the data. It then merges the predictions into a single data.frame which can be used as input for model building.

Usage

# S3 method for class 'data.frame'
prepare_modeldata(
  x,
  y = NULL,
  rroc_result = NULL,
  rroc_savefile = NULL,
  which_preds = "bounded",
  removed_impute = -1,
  ...
)

Arguments

x

Data which should be prepared. Can be a data.frame or matrix, but must have column names. Rows are samples, columns are features.

y

The outcome vector. If NULL, rroc_result must be supplied. If given, only rROC() uses it.

rroc_result

The result of rROC(). If NULL, rROC() is called with x, y and ....

rroc_savefile

If not NULL, the rroc_result is saved to this file.

which_preds

Which predictions should be returned? Default is "bounded". See merge_applied for details.

removed_impute

The value to impute for samples outside the informative range.

...

Arguments passed to rROC() if rroc_result is NULL.