View source: R/mm2_join_data.R
join_labels | R Documentation |
join_labels
takes observed labels and converts them to a list.
join_labels(..., byrow = FALSE, chklen = TRUE)
... |
Multiple datasets. They can be vectors, arrays, matrices, data frames, and lists. |
byrow |
A Boolean value to specify whether row vectors are used for matrix, data frame, and array. |
chklen |
A Boolean value to specify whether all list items must be the same lengths. |
The join_labels
function returns a list that
contains all combined label data.
evalmod
for calculation evaluation measures.
mmdata
for formatting input data.
join_scores
for formatting scores with multiple datasets.
##################################################
### Add three numeric vectors
###
l1 <- c(1, 0, 1, 1)
l2 <- c(1, 1, 0, 0)
l3 <- c(0, 1, 0, 1)
labels1 <- join_labels(l1, l2, l3)
## Show the list structure
str(labels1)
##################################################
### Add a matrix and a numeric vector
###
a1 <- matrix(rep(c(1, 0), 4), 4, 2)
labels2 <- join_labels(a1, l3)
## Show the list structure
str(labels2)
##################################################
### Use byrow
###
a2 <- matrix(rep(c(1, 0), 4), 2, 4, byrow = TRUE)
labels3 <- join_labels(a2, l3, byrow = TRUE)
## Show the list structure
str(labels3)
##################################################
### Use chklen
###
l4 <- c(-1, 0, -1)
l5 <- c(0, -1)
labels4 <- join_labels(l4, l5, chklen = FALSE)
## Show the list structure
str(labels4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.