Adds new columns to an existing metadata data frame in the STID object.
Usage
AddMetaColumn(STID_obj, ...)
# S3 method for class 'STID'
AddMetaColumn(
STID_obj = NULL,
meta_key = NULL,
add_data = NULL,
ignore_rownm = FALSE,
...
)Examples
if (FALSE) { # \dontrun{
# Add new columns to raw metadata
new_cols <- data.frame(new_score = runif(ncol(ist_obj)))
STID_obj <- AddMetaColumn(ist_obj,
meta_key = "raw",
add_data = new_cols)
} # }