ct2df: Transform a configuration table into a data frame

View source: R/ct2df.r

ct2dfR Documentation

Transform a configuration table into a data frame

Description

Transform a configuration table into a data frame. This is the converse function of configTable.

Usage

ct2df(ct, tt)

Arguments

ct

A configTable.

tt

Argument tt is deprecated in ct2df(); use ct instead.

Details

Rows in the configTable corresponding to several cases are rendered as multiple rows in the resulting data frame.

Value

A data frame.

See Also

configTable

Examples

ct.educate <- configTable(d.educate[1:2])
ct.educate
ct2df(ct.educate)

dat1 <- some(configTable(allCombs(c(2, 2, 2, 2, 2)) - 1), n = 200, replace = TRUE)
dat2 <- selectCases("(A*b + a*B <-> C)*(C*d + c*D <-> E)", dat1)
dat2 
ct2df(dat2)

dat3 <- data.frame(
  A = c(1,1,1,1,1,1,0,0,0,0,0),
  B = c(1,1,1,0,0,0,1,1,1,0,0),
  C = c(1,1,1,1,1,1,1,1,1,0,0),
  D = c(1,0,0,1,0,0,1,1,0,1,0),
  E = c(1,1,0,1,1,0,1,0,1,1,0)
  )
ct.dat3 <- configTable(dat3, frequency = c(4,3,5,7,4,6,10,2,4,3,12))
ct2df(ct.dat3)

cna documentation built on Aug. 11, 2023, 1:09 a.m.