View source: R/cm_dummy2long.R
cm_dummy2long | R Documentation |
cm_combine.dummy
back to long.
cm_dummy2long(cm_long2dummy_obj, rm.var = "time")
cm_long2dummy_obj |
An object from cm_combine.dummy |
rm.var |
Name of the repeated measures column. Default is
|
Returns a dataframe with co-occurrences of provided code columns.
cm_long2dummy
,
cm_combine.dummy
## Not run:
foo <- list(
AA = qcv(terms="1:10"),
BB = qcv(terms="1:2, 3:10, 19"),
CC = qcv(terms="1:3, 5:6")
)
foo2 <- list(
AA = qcv(terms="4:8"),
BB = qcv(terms="1:4, 10:12"),
CC = qcv(terms="1, 11, 15:20"),
DD = qcv(terms="")
)
(x <- cm_range2long(foo))
(out1 <- cm_long2dummy(x))
(z <- cm_range2long(foo, foo2, v.name="time"))
out2 <- cm_long2dummy(z, "time")
lapply(out2, head)
cm_combine.dummy(out1, combine.code = list(AB=qcv(AA, BB)))
combines <- list(AB=qcv(AA, BB), ABC=qcv(AA, BB, CC))
A <- cm_combine.dummy(out2, combine.code = combines)
head(A, 10)
B <- cm_combine.dummy(out1, combine.code = combines)
head(B, 10)
cm_dummy2long(A)
cm_dummy2long(B)
plot(cm_dummy2long(A))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.