Like glance.LingamResult(), with an additional n_discrete column giving
the number of discrete variables in the model.
Usage
# S3 method for class 'LiMResult'
glance(x, ...)Arguments
- x
The return value of
lingam_lim()(aLiMResultobject)- ...
Unused
Examples
set.seed(1)
dat <- generate_lim_sample(n = 300)
model <- lingam_lim(dat$data, is_continuous = dat$is_continuous)
glance(model)
#> n_variables n_edges n_discrete causal_order
#> 1 3 2 1 x1 -> x2 -> x3
