Print Method for net_gimme
Usage
# S3 method for class 'net_gimme'
print(x, ...)Examples
# \donttest{
set.seed(1)
panel <- data.frame(
id = rep(1:5, each = 20),
t = rep(seq_len(20), 5),
A = rnorm(100), B = rnorm(100), C = rnorm(100)
)
gm <- build_gimme(panel, vars = c("A","B","C"), id = "id", time = "t")
print(gm)
#> GIMME Network Analysis
#> ------------------------------
#> Subjects: 5
#> Variables: 3 ( A, B, C )
#> AR paths: yes
#> Hybrid: no
#>
#> Group-level paths found: 0
#>
#> Individual-level paths: mean 0.0, range 0-0
#>
#> Temporal path counts (lagged):
#> A B C
#> A 5 0 0
#> B 0 5 0
#> C 0 0 5
#>
#> Contemporaneous path counts:
#> A B C
#> A 0 0 0
#> B 0 0 0
#> C 0 0 0
# }