| add.meta.pred {SIAMCAT} | R Documentation |
This function adds metadata to the feature matrix to be later used as predictors
add.meta.pred(siamcat, pred.names,
std.meta = TRUE,
feature.type='normalized',
verbose = 1)
siamcat |
object of class siamcat-class |
pred.names |
vector of names of the variables within the metadata to be added to the feature matrix as predictors |
std.meta |
boolean, should added metadata features be standardized?,
defaults to |
feature.type |
On which type of features should the function work? Can be either "original", "filtered", or "normalized". Please only change this paramter if you know what you are doing! |
verbose |
control output: |
an object of class siamcat-class with metadata added to the features
data(siamcat_example)
# Add the Age of the patients as potential predictor
siamcat_age_added <- add.meta.pred(siamcat_example, pred.names=c('Age'))
# Add Age, BMI, and Gender as potential predictors
# Additionally, prevent standardization of the added features
siamcat_meta_added <- add.meta.pred(siamcat_example, pred.names=c('Age',
'BMI', 'Gender'), std.meta=FALSE)