createGroupByColumn {psichomics} | R Documentation |
Elements are identified by their respective row name.
createGroupByColumn(col, dataset) createGroupByAttribute(col, dataset)
col |
Character: column name |
dataset |
Matrix or data frame: dataset |
Named list with each unique value from a given column and respective elements
df <- data.frame(gender=c("male", "female"), stage=paste("stage", c(1, 3, 1, 4, 2, 3, 2, 2))) rownames(df) <- paste0("patient-", LETTERS[1:8]) createGroupByAttribute(col="stage", dataset=df)