rebalanceData | R Documentation |
Rebalance scores based on the balanced data set
rebalanceData(list_score, group, dataset)
list_score |
A list of scores extracted in the analysis |
group |
A list of group assignment |
dataset |
A list of dataset in analysis |
A list of rebalanced scores
x = list(matrix(c(1 : 4), nrow = 2), matrix(c(1 : 4), nrow = 2))
y = list(matrix(c(1 : 4), nrow = 2), matrix(c(1 : 4), nrow = 2))
list_score = list(x, y)
group = list(c(1), c(2))
dataset = list(matrix(c(1 : 8), nrow = 2), matrix(1 : 6, nrow = 2))
rebalanceData(list_score, group, dataset)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.