matrixToCfd {cfda} | R Documentation |
Convert a matrix to a cfda data.frame
Description
Convert a matrix to a cfda data.frame
Usage
matrixToCfd(X, times = NULL, labels = NULL, byrow = FALSE)
Arguments
X |
matrix containing the states |
times |
time values. If |
labels |
id labels. If |
byrow |
if |
Value
a data.frame in the cfda format
See Also
Other format:
convertToCfd()
,
cut_data()
,
remove_duplicated_states()
Examples
x <- matrix(c("a", "b", "c", "c",
"c", "a", "a", "a",
"b", "c", "a", "b"), ncol = 4, byrow = TRUE,
dimnames = list(NULL, paste0("ind", 1:4)))
matrixToCfd(x)
[Package cfda version 0.11.0 Index]