Skip to contents

Print Centrality Stability Results

Usage

# S3 method for class 'group_tna_stability'
print(x, ...)

Arguments

x

A group_tna_stability object.

...

Arguments passed to print.tna_stability().

Value

x (invisibly).

Examples

model <- group_model(engagement_mmm)
# Low number of iterations for CRAN
stability <- estimate_cs(
  model,
  drop_prop = c(0.3, 0.5, 0.7, 0.9),
  iter = 10
)
print(stability)
#> Cluster 1:
#> 
#> Centrality Stability Coefficients
#> 
#>  InStrength OutStrength Betweenness 
#>         0.9         0.7         0.5 
#> 
#> Cluster 2:
#> 
#> Centrality Stability Coefficients
#> 
#>  InStrength OutStrength 
#>         0.9         0.9 
#> 
#> Cluster 3:
#> 
#> Centrality Stability Coefficients
#> 
#>  InStrength OutStrength Betweenness 
#>         0.9         0.9         0.0