ison_marvel {manynet}R Documentation

Multilevel two-mode affiliation, signed one-mode networks of Marvel comic book characters (Yuksel 2017)

Description

This package includes two datasets related to the Marvel comic book universe. The first, ison_marvel_teams, is a two-mode affiliation network of 53 Marvel comic book characters and their affiliations to 141 different teams. This network includes only information about nodes' names and nodeset, but additional nodal data can be taken from the other Marvel dataset here.

The second network, ison_marvel_relationships, is a one-mode signed network of friendships and enmities between the 53 Marvel comic book characters. Friendships are indicated by a positive sign in the tie sign attribute, whereas enmities are indicated by a negative sign in this edge attribute.

Usage

data(ison_marvel_teams)

data(ison_marvel_relationships)

Format

#> # A labelled, two-mode network with 194 nodes and 683 ties
#> # A tibble: 194 x 2
#>   type  name         
#>   <lgl> <chr>        
#> 1 FALSE Abomination  
#> 2 FALSE Ant-Man      
#> 3 FALSE Apocalypse   
#> 4 FALSE Beast        
#> 5 FALSE Black Panther
#> 6 FALSE Black Widow  
#> # i 188 more rows
#> # A tibble: 683 x 2
#>    from    to
#>   <int> <int>
#> 1     1   120
#> 2     1   152
#> 3     1   160
#> 4     1   162
#> 5     1   179
#> 6     2    56
#> # i 677 more rows
#> # A labelled, complex, signed, undirected network with 53 nodes and 558 ties
#> # A tibble: 53 x 10
#>   name     Gender Appearances Attractive  Rich Intellect Omnilingual PowerOrigin
#>   <chr>    <chr>        <int>      <int> <int>     <int>       <int> <chr>      
#> 1 Abomina~ Male           427          0     0         1           1 Radiation  
#> 2 Ant-Man  Male           589          1     0         1           0 Human      
#> 3 Apocaly~ Male          1207          0     0         1           1 Mutant     
#> 4 Beast    Male          7609          1     0         1           0 Mutant     
#> 5 Black P~ Male          2189          1     1         1           0 Human      
#> 6 Black W~ Female        2907          1     0         1           0 Human      
#> # i 47 more rows
#> # i 2 more variables: UnarmedCombat <int>, ArmedCombat <int>
#> # A tibble: 558 x 3
#>    from    to  sign
#>   <int> <int> <dbl>
#> 1     1     4    -1
#> 2     1    11    -1
#> 3     1    12    -1
#> 4     1    23    -1
#> 5     1    24    -1
#> 6     1    25    -1
#> # i 552 more rows

Details

Additional nodal variables have been coded and included by Dr Umut Yuksel:

Source

Umut Yuksel, 31 March 2017


[Package manynet version 1.0.2 Index]