Turn dce object into data frame
# S3 method for dce
as.data.frame(x, row.names = NULL, optional = FALSE, ...)
dce object
optional character vector of rownames
logical; allow optional arguments
additional arguments
data frame containing the dce output
dag <- create_random_DAG(30, 0.2)
X_wt <- simulate_data(dag)
dag_mt <- resample_edge_weights(dag)
X_mt <- simulate_data(dag_mt)
dce_list <- dce(dag, X_wt, X_mt)