This function takes a differential causal effects object and plots the dag with the dces

# S3 method for dce
plot(x, ...)

Arguments

x

dce object

...

Parameters passed to dce::plot_network

Value

plot of dag and dces

Author

Martin Pirkl, Kim Philipp Jablonski

Examples

dag <- create_random_DAG(30, 0.2)
X.wt <- simulate_data(dag)
dag.mt <- resample_edge_weights(dag)
X.mt <- simulate_data(dag)
dce.list <- dce(dag,X.wt,X.mt)
plot(dce.list)