Print Method for wtna_mixed
Usage
# S3 method for class 'wtna_mixed'
print(x, ...)Examples
# \donttest{
oh <- data.frame(
A = c(1,0,1,0,1,0,1,0),
B = c(0,1,0,1,0,1,0,1),
C = c(1,1,0,0,1,1,0,0)
)
mixed <- wtna(oh, method = "both")
print(mixed)
#> Mixed Window TNA (transition + co-occurrence)
#> -- Transition (directed) --
#> Nodes: 3 | Edges: 6
#> -- Co-occurrence (undirected) --
#> Nodes: 3 | Edges: 2
# }