ison_usstates {manynet}R Documentation

One-mode undirected network of US state contiguity (Meghanathan 2017)

Description

This network is of contiguity between US states. States that share a border are connected by a tie in the network. The data is a network of 107 ties among 50 US states (nodes). States are named by their two-letter ISO-3166 code. This data includes also the names of the capitol cities of each state, which are listed in the node attribute 'capitol'.

Usage

data(ison_usstates)

Format

#> # A labelled, undirected network with 50 nodes and 107 ties
#> # A tibble: 50 x 2
#>   name  capitol    
#>   <chr> <chr>      
#> 1 AK    Juneau     
#> 2 AL    Montgomery 
#> 3 AR    Little Rock
#> 4 AZ    Phoenix    
#> 5 CA    Sacramento 
#> 6 CO    Denver     
#> # i 44 more rows
#> # A tibble: 107 x 2
#>    from    to
#>   <int> <int>
#> 1     2     9
#> 2     2    10
#> 3     2    25
#> 4     2    42
#> 5     3    18
#> 6     3    24
#> # i 101 more rows

References

Meghanathan, Natarajan. 2017. "Complex network analysis of the contiguous United States graph." Computer and Information Science, 10(1): 54-76. doi:10.5539/cis.v10n1p54


[Package manynet version 0.4.4 Index]