plot: Plot Method for causalDisco Objects

plotR Documentation

Plot Method for causalDisco Objects

Description

This is the generic plot() function for objects of class Knowledge or Disco. It dispatches to the class-specific plotting methods plot.Knowledge() and plot.Disco().

Arguments

x

An object to plot (class Knowledge or Disco).

...

Additional arguments passed to class-specific plot methods and to caugi::plot().

Value

Invisibly returns the input object. The primary effect is the generated plot.

See Also

plot.Knowledge(), plot.Disco(), caugi::plot()

Examples

data(tpc_example)
kn <- knowledge(
  tpc_example,
  tier(
    child ~ starts_with("child"),
    youth ~ starts_with("youth"),
    old ~ starts_with("old")
  )
)
plot(kn)

cd_tges <- tges(engine = "causalDisco", score = "tbic")
disco_cd_tges <- disco(data = tpc_example, method = cd_tges, knowledge = kn)
plot(disco_cd_tges)


causalDisco documentation built on April 13, 2026, 5:06 p.m.