‘CINA’ is an R package submitted in cran repository which has been written specifically for centrality analysis in network science. It can be useful for assembling, comparing, evaluating and visualizing several types of centrality measures. This document is an introduction to the usage of the software and includes some user interface examples.
Centrality types are defined as measures for identifying the most important vertices within a network in graph theory. Several kinds of centrality has been provided to compute most central nodes by different formulas, while some analysis is needed to evaluate the most informative ones. In this package, we have prepared these resolutions and some examples of real networks.
For the examples in the following sections, we assume that the “CINA” package has been properly installed into the R environment. This can be done by typing
install.packages(“CINA”)
into the R console. The “igraph”(Csardi and Nepusz 2006) ,“network”(Data. 2015; Butts 2008),“sna”(CT 2008; CT 2007) and “centiserve”(Jalili et al. 2015) packages are required and must be installed in your R environment as well. These are analogous to installing “CINA” and for more other calculations, packages such as FactoMineR(Sebastien Le 2008), plyr(Wickham 2011) qdapTools(Rinker 2015), Rtsne(Krijthe 2015) are necessary. For some plots, “factoextra”(Kassambara, n.d.), “GGally”(Barret Schloerke and Larmarange 2016), “pheatmap”(Kolde 2015), “corrplot”(Simko and Viliam 2016), “dendextend”(Galili 2015), “circlize”(Gu et al. 2014), “viridis”(Garnier 2017) and “ggplot2”(Wickham 2016) packages must be installed too. After installations, the “CINA” package can be loaded via
library(CINNA)
We collected five graphs instances based on factual datasets and natural networks. In order to develop some instructions for using this package, we prepared you a brief introduction about the topological of these networks as it described below:
Name | Type | Description | Nodes | Edges | Refrences |
---|---|---|---|---|---|
zachary | unweighted, undirected | friendships between members of a club | 34 | 78 | (Zachary 1977) |
cortex | unweighted, directed | pathways among cortial region in Macaque | 30 | 311 | (Felleman and Van Essen 1991) |
kangaroo | weighted, undirected | interactions between kangaroos | 17 | 90 | (KONECT 2016a) |
rhesus | weighted, directed | grooming occured among monkeys of an area | 16 | 110 | (KONECT 2016b) |
drugtarget | bipartite,directed | interactions among drugs and their protein targets | 1599 | 3766 | (Barneh, Jafari, and Mirzaie 2015) |
Zachary Karate Club(Zachary 1977) is an example of undirected and unweighted network in this package. This dataset illustrates friendships between members of a university karate club. It is based on a faction membership after a social partion. The summary of important properties of this network is described below:
Edge Type: Friendship
Node Type: Person
Avg Edges: 77.50
Avg Nodes: 34.00
Graph properties: Unweighted, Undirected
This dataset can be easily accessed by using data() function:
data("zachary")
zachary
## IGRAPH 455c916 U--- 34 78 --
## + attr: id (v/n)
## + edges from 455c916:
## [1] 1-- 2 1-- 3 2-- 3 1-- 4 2-- 4 3-- 4 1-- 5 1-- 6 1-- 7 5-- 7
## [11] 6-- 7 1-- 8 2-- 8 3-- 8 4-- 8 1-- 9 3-- 9 3--10 1--11 5--11
## [21] 6--11 1--12 1--13 4--13 1--14 2--14 3--14 4--14 6--17 7--17
## [31] 1--18 2--18 1--20 2--20 1--22 2--22 24--26 25--26 3--28 24--28
## [41] 25--28 3--29 24--30 27--30 2--31 9--31 1--32 25--32 26--32 29--32
## [51] 3--33 9--33 15--33 16--33 19--33 21--33 23--33 24--33 30--33 31--33
## [61] 32--33 9--34 10--34 14--34 15--34 16--34 19--34 20--34 21--34 23--34
## [71] 24--34 27--34 28--34 29--34 30--34 31--34 32--34 33--34
The result would have a class of “igraph” object.
Kangaroo(KONECT 2016a) is a sample of undirected and weighted network which indicates interactions among free-ranging grey kangaroos. The edge between two nodes shows a dominence interaction between two kanagaroos. The positive weight of each edge represents number of interaction between them. A brief explanation of it’s properties is clarified below:
Edge Type: Interaction
Node Type: Kangaroo
Avg Edges: 91
Nodes: 17
Graph properties: Weighted, Undirected
Edge weights: Positive weights
Macaque visual cortex(Felleman and Van Essen 1991) is a sample cortex network which is collected in 1991. In this dataset, vertices represents neocortical areas which involved in visual functions in Macaques. The direction displays the progress of synapsis from one to another. A summary of this can be as follows:
Edge Type: Pathway
Node Type: Cortical region
Avg Edges: 315.50
Nodes: 31.00
Graph properties: Directed, Unweighted
Edge weights: Positive weights
Moreno rhesus(KONECT 2016b) is a directed and weighted network which describes grooming between free ranging rhesus macaques (Macaca mulatta) in Cayo Santiago during a two month period in 1963. In this dataset a vertice is identified as a monkey and the directed edge among them means grooming between them. The weights of the edges demonstrates how often this manner happened. The network summary is as follows:
Edge Type: Grooming
Node Type: Monkey
Avg Edges: 111
Nodes: 16
Graph properties: Directed, Weighted
Edge weights: Positive weights
Drugtarget(Barneh, Jafari, and Mirzaie 2015) is a bipartite, unconnected and directed network demonstrating interactions among Food and Drug Administration (FDA)-approved drugs and their corresponding protein targets. This network is a shrunken one in which metabolizing enzymes, carriers and transporters associated with drug metabolism are filtered and solely targets directly related to their pharmacological effects are included. A summary of this can be like:
Edge Type: inetraction
Node Type: drug, protein target
Avg Edges: 3766
Nodes: 1599
Graph properties: Bipartite, unconnected, directed
In order to apply several centrality analysis, it is recommended to have a connected graph. Therefore, approaching the connected components of a network is needed. In order to extract components of a graph and use them for centrality analysis, we prepared some functions to read different graph formats as they described below.
“graph.extract.components” function is able to read “igraph” and “network” objects and returns their componets as a list of “igraph” objects. This function also has this ability to recognized bipartite graphs and user can decide that which project is suitable for his analysis. In order to use this function, we use zachary dataset and develop it in all of our functions.
graph_extract_components(zachary)
## [[1]]
## IGRAPH 2a72548 U--- 34 78 --
## + attr: id (v/n)
## + edges from 2a72548:
## [1] 1-- 2 1-- 3 2-- 3 1-- 4 2-- 4 3-- 4 1-- 5 1-- 6 1-- 7 5-- 7
## [11] 6-- 7 1-- 8 2-- 8 3-- 8 4-- 8 1-- 9 3-- 9 3--10 1--11 5--11
## [21] 6--11 1--12 1--13 4--13 1--14 2--14 3--14 4--14 6--17 7--17
## [31] 1--18 2--18 1--20 2--20 1--22 2--22 24--26 25--26 3--28 24--28
## [41] 25--28 3--29 24--30 27--30 2--31 9--31 1--32 25--32 26--32 29--32
## [51] 3--33 9--33 15--33 16--33 19--33 21--33 23--33 24--33 30--33 31--33
## [61] 32--33 9--34 10--34 14--34 15--34 16--34 19--34 20--34 21--34 23--34
## [71] 24--34 27--34 28--34 29--34 30--34 31--34 32--34 33--34
This results the only component of the zachary graph. This function is laso applicable for bipartite networks. Using the num.proj argument, user can decide on which projection is inetrested to work on. As an example of bipartite graphs, we uses drugtarget network as follows:
data(drugtarget)
drug_comp <- graph_extract_components( drugtarget, directed = TRUE , bipartite_proj=TRUE, num_proj=2)
## Warning in bipartite_projection(x): vertex types converted to logical
head(drug_comp)
## [[1]]
## IGRAPH 2a9d639 UNW- 131 560 --
## + attr: id (v/n), name (v/c), weight (e/n)
## + edges from 2a9d639 (vertex names):
## [1] O00555--O15399 O15399--O60391 O43497--P00915 P00915--P00918
## [5] O15554--P03886 P03372--P04278 P00915--P05023 P00918--P05023
## [9] P03372--P06401 P07550--P08172 P08172--P08173 P07550--P08588
## [13] P08172--P08588 P08588--P08908 P08172--P08912 P08173--P08912
## [17] P07550--P08913 P08588--P09172 P03372--P10275 P04278--P10275
## [21] P07550--P11229 P08172--P11229 P08173--P11229 P08588--P11229
## [25] P08912--P11229 O00555--P14416 O43497--P14416 P08172--P14416
## [29] P08173--P14416 P08588--P14416 P08908--P14416 P08912--P14416
## + ... omitted several edges
##
## [[2]]
## IGRAPH 2a9d639 UNW- 6 15 --
## + attr: id (v/n), name (v/c), weight (e/n)
## + edges from 2a9d639 (vertex names):
## [1] O00764--P34896 O00764--P35520 P34896--P35520 O00764--Q96GD0
## [5] P34896--Q96GD0 P35520--Q96GD0 O00764--Q9NVS9 P34896--Q9NVS9
## [9] P35520--Q9NVS9 Q96GD0--Q9NVS9 O00764--Q9Y617 P34896--Q9Y617
## [13] P35520--Q9Y617 Q96GD0--Q9Y617 Q9NVS9--Q9Y617
##
## [[3]]
## IGRAPH 2a9d639 UNW- 2 1 --
## + attr: id (v/n), name (v/c), weight (e/n)
## + edge from 2a9d639 (vertex names):
## [1] O14646--P11388
##
## [[4]]
## IGRAPH 2a9d8aa UNW- 7 10 --
## + attr: id (v/n), name (v/c), weight (e/n)
## + edges from 2a9d8aa (vertex names):
## [1] O14659--P00374 O14659--P04818 P00374--P04818 P04818--P23921
## [5] P09884--P23921 P04818--P27707 P23921--P27707 P04818--P30085
## [9] P23921--P30085 P27707--P30085
##
## [[5]]
## IGRAPH 2a9d8aa UNW- 2 1 --
## + attr: id (v/n), name (v/c), weight (e/n)
## + edge from 2a9d8aa (vertex names):
## [1] O14987--P21731
##
## [[6]]
## IGRAPH 2a9d8aa UNW- 4 5 --
## + attr: id (v/n), name (v/c), weight (e/n)
## + edges from 2a9d8aa (vertex names):
## [1] O15528--P11473 P11473--Q02318 O15528--Q6VVX0 P11473--Q6VVX0
## [5] Q02318--Q6VVX0
It will return all components of the second projection of the network.
If you had an edgelist, an adjacency matrix or a graphNEL format of a network, the “misc.extract.components” can be useful. This function extracts the componets of other formats of graph. For illustration, we convert “zachary” graph to an edgelist to be able to use it for this function.
library(igraph)
zachary_edgelist <- as_edgelist(zachary)
misc_extract_components(zachary_edgelist)
## [[1]]
## IGRAPH 2aad1da D--- 34 78 --
## + edges from 2aad1da:
## [1] 1-> 2 1-> 3 2-> 3 1-> 4 2-> 4 3-> 4 1-> 5 1-> 6 1-> 7 5-> 7
## [11] 6-> 7 1-> 8 2-> 8 3-> 8 4-> 8 1-> 9 3-> 9 3->10 1->11 5->11
## [21] 6->11 1->12 1->13 4->13 1->14 2->14 3->14 4->14 6->17 7->17
## [31] 1->18 2->18 1->20 2->20 1->22 2->22 24->26 25->26 3->28 24->28
## [41] 25->28 3->29 24->30 27->30 2->31 9->31 1->32 25->32 26->32 29->32
## [51] 3->33 9->33 15->33 16->33 19->33 21->33 23->33 24->33 30->33 31->33
## [61] 32->33 9->34 10->34 14->34 15->34 16->34 19->34 20->34 21->34 23->34
## [71] 24->34 27->34 28->34 29->34 30->34 31->34 32->34 33->34
In the most of research topics of network analysis, network features are related to the largest connected component of a graph(Newman 2010). In order to get that for an “igraph” or a “network” object, “giant.component.extract” function is specified. For using this function we can do:
giant_component_extract(zachary)
## [[1]]
## IGRAPH 2aaf40e U--- 34 78 --
## + attr: id (v/n)
## + edges from 2aaf40e:
## [1] 1-- 2 1-- 3 2-- 3 1-- 4 2-- 4 3-- 4 1-- 5 1-- 6 1-- 7 5-- 7
## [11] 6-- 7 1-- 8 2-- 8 3-- 8 4-- 8 1-- 9 3-- 9 3--10 1--11 5--11
## [21] 6--11 1--12 1--13 4--13 1--14 2--14 3--14 4--14 6--17 7--17
## [31] 1--18 2--18 1--20 2--20 1--22 2--22 24--26 25--26 3--28 24--28
## [41] 25--28 3--29 24--30 27--30 2--31 9--31 1--32 25--32 26--32 29--32
## [51] 3--33 9--33 15--33 16--33 19--33 21--33 23--33 24--33 30--33 31--33
## [61] 32--33 9--34 10--34 14--34 15--34 16--34 19--34 20--34 21--34 23--34
## [71] 24--34 27--34 28--34 29--34 30--34 31--34 32--34 33--34
##
## [[2]]
## [,1] [,2]
## [1,] 1 2
## [2,] 1 3
## [3,] 2 3
## [4,] 1 4
## [5,] 2 4
## [6,] 3 4
## [7,] 1 5
## [8,] 1 6
## [9,] 1 7
## [10,] 5 7
## [11,] 6 7
## [12,] 1 8
## [13,] 2 8
## [14,] 3 8
## [15,] 4 8
## [16,] 1 9
## [17,] 3 9
## [18,] 3 10
## [19,] 1 11
## [20,] 5 11
## [21,] 6 11
## [22,] 1 12
## [23,] 1 13
## [24,] 4 13
## [25,] 1 14
## [26,] 2 14
## [27,] 3 14
## [28,] 4 14
## [29,] 6 17
## [30,] 7 17
## [31,] 1 18
## [32,] 2 18
## [33,] 1 20
## [34,] 2 20
## [35,] 1 22
## [36,] 2 22
## [37,] 24 26
## [38,] 25 26
## [39,] 3 28
## [40,] 24 28
## [41,] 25 28
## [42,] 3 29
## [43,] 24 30
## [44,] 27 30
## [45,] 2 31
## [46,] 9 31
## [47,] 1 32
## [48,] 25 32
## [49,] 26 32
## [50,] 29 32
## [51,] 3 33
## [52,] 9 33
## [53,] 15 33
## [54,] 16 33
## [55,] 19 33
## [56,] 21 33
## [57,] 23 33
## [58,] 24 33
## [59,] 30 33
## [60,] 31 33
## [61,] 32 33
## [62,] 9 34
## [63,] 10 34
## [64,] 14 34
## [65,] 15 34
## [66,] 16 34
## [67,] 19 34
## [68,] 20 34
## [69,] 21 34
## [70,] 23 34
## [71,] 24 34
## [72,] 27 34
## [73,] 28 34
## [74,] 29 34
## [75,] 30 34
## [76,] 31 34
## [77,] 32 34
## [78,] 33 34
This function extracts the strongests components of the input network as “igraph” objects.
This section particulary is specified for centrality analysis in network science.
All of the introduced centrality measures are not appropriate for all types of networks. So, to figure out which of them is suitable, “proper.centralities” is specifid. This funtion distinguishes proper centrality types based on network topology. To use this, we can do:
proper_centralities(zachary)
## [1] "subgraph centrality scores"
## [2] "Topological Coefficient"
## [3] "Average Distance"
## [4] "Barycenter Centrality"
## [5] "BottleNeck Centrality"
## [6] "Centroid value"
## [7] "Closeness Centrality (Freeman)"
## [8] "ClusterRank"
## [9] "Decay Centrality"
## [10] "Degree Centrality"
## [11] "Diffusion Degree"
## [12] "DMNC - Density of Maximum Neighborhood Component"
## [13] "Eccentricity Centrality"
## [14] "eigenvector centralities"
## [15] "K-core Decomposition"
## [16] "Geodesic K-Path Centrality"
## [17] "Katz Centrality (Katz Status Index)"
## [18] "Kleinberg's authority centrality scores"
## [19] "Kleinberg's hub centrality scores"
## [20] "clustering coefficient"
## [21] "Lin Centrality"
## [22] "Lobby Index (Centrality)"
## [23] "Markov Centrality"
## [24] "Radiality Centrality"
## [25] "Shortest-Paths Betweenness Centrality"
## [26] "Current-Flow Closeness Centrality"
## [27] "Closeness centrality (Latora)"
## [28] "Communicability Betweenness Centrality"
## [29] "Community Centrality"
## [30] "Cross-Clique Connectivity"
## [31] "Entropy Centrality"
## [32] "EPC - Edge Percolated Component"
## [33] "Laplacian Centrality"
## [34] "Leverage Centrality"
## [35] "MNC - Maximum Neighborhood Component"
## [36] "Hubbell Index"
## [37] "Semi Local Centrality"
## [38] "Closeness Vitality"
## [39] "Residual Closeness Centrality"
## [40] "Stress Centrality"
## [41] "Load Centrality"
## [42] "Flow Betweenness Centrality"
## [43] "Information Centrality"
It returns the full names of suitable centrality types for the input graph. The input must have a class of “igraph” object.
In the next step, proper centralities and those which are looking for can be chosen. In order to compute proper centrality types resulted from the “proper.centralities”, you can use “calculate.centralities” function as below.
calculate_centralities(zachary, include = "Degree Centrality")
## $`Degree Centrality`
## [1] 16 9 10 6 3 4 4 4 5 2 3 1 2 5 2 2 2 2 2 3 2 2 2
## [24] 5 3 3 2 4 3 4 4 6 12 17
In this function, you have the ability to specify some centrality types that is not your favor to calculate by the “except” argument:
pr_cent <- proper_centralities(zachary)
## [1] "subgraph centrality scores"
## [2] "Topological Coefficient"
## [3] "Average Distance"
## [4] "Barycenter Centrality"
## [5] "BottleNeck Centrality"
## [6] "Centroid value"
## [7] "Closeness Centrality (Freeman)"
## [8] "ClusterRank"
## [9] "Decay Centrality"
## [10] "Degree Centrality"
## [11] "Diffusion Degree"
## [12] "DMNC - Density of Maximum Neighborhood Component"
## [13] "Eccentricity Centrality"
## [14] "eigenvector centralities"
## [15] "K-core Decomposition"
## [16] "Geodesic K-Path Centrality"
## [17] "Katz Centrality (Katz Status Index)"
## [18] "Kleinberg's authority centrality scores"
## [19] "Kleinberg's hub centrality scores"
## [20] "clustering coefficient"
## [21] "Lin Centrality"
## [22] "Lobby Index (Centrality)"
## [23] "Markov Centrality"
## [24] "Radiality Centrality"
## [25] "Shortest-Paths Betweenness Centrality"
## [26] "Current-Flow Closeness Centrality"
## [27] "Closeness centrality (Latora)"
## [28] "Communicability Betweenness Centrality"
## [29] "Community Centrality"
## [30] "Cross-Clique Connectivity"
## [31] "Entropy Centrality"
## [32] "EPC - Edge Percolated Component"
## [33] "Laplacian Centrality"
## [34] "Leverage Centrality"
## [35] "MNC - Maximum Neighborhood Component"
## [36] "Hubbell Index"
## [37] "Semi Local Centrality"
## [38] "Closeness Vitality"
## [39] "Residual Closeness Centrality"
## [40] "Stress Centrality"
## [41] "Load Centrality"
## [42] "Flow Betweenness Centrality"
## [43] "Information Centrality"
calc_cent <- calculate_centralities(zachary, except = pr_cent[5:40])
The result would be a list of computed centralities.
In order to figure out the order of most important centrality types based on your graph structure, “pca.centralities” function can be used. This applies principal component analysis on the computed centrality values(Husson, Lê, and Pages 2010). For this, the result of “calculate.centralities” method is needed:
pca_centralities( calc_cent )
A display of most informative centrality measures based on principal component analysis. The red line indicates the random threshold of contribution. This barplot represents contribution of variable values based on the number of dimensions.
For choosing the number of principal components, we considered cumulative percentage of variance values which are more than 80 as the cut off which can be edited using “cut.off” argument. It returns a plot for visualizing contribution values of the computed centrality measures due to the number of principal components. The “scale.unit” argument gives the ability to whether it should normalize the input or not.
pca_centralities( calc_cent , scale.unit = FALSE )
A representation of most informative centrality measures based on principal component analysis between unscaled(not normalized) centrality values.
Another method for distinguishing which centrality measure has more information or in another words has more costs is using (t-SNE) t-Distributed Stochastic Neighbor Embedding analysis(Van Der Maaten 2014). This is a non-linear dimensionality reduction algorithm used for high-dimensional data. “tsne.centralities”function applies t-sne on centrality measure values like below:
tsne_centralities( calc_cent, dims = 2, perplexity = 1, scale=TRUE)
A display of most informative centrality measures based on t-Distributed Stochastic Neighbor Embedding analysis among scaled(not normalized) centrality values.
This returns the bar plot of computed cost values of each centrality measure on a plot. In order to access only computed values of PCA and t-sne methods, “summary.pca_centralities” and “tsne.centralities” functions can be helpful.
To visualize the results of network centrality analysis some convenient functions have been developed as it described below.
After evaluating centrality measures, demonstrating high values of centralities in some nodes gives an overall insight about the network to the researcher. By using “visualize.graph” function, you will be able to illustrate the input graph based on the specified centrality value. If the centrality measure values were computed, “computed.centrality.value” argument is recommended. Otherwise, using “centrality.type” argument, the function will compute centrality based on the input name of centrality type. For practice, we specifies “Degree Centrality”. Here,
visualize_graph( zachary , centrality.type="Degree Centrality")
Graph illustration based on centrality measure. The size of nodes represent the degree centrality values.
On of the way of complex large network visualizations(more than 100 nodes and 200 edges) is using heatmap(Pryke, Mostaghim, and Nazemi 2007). “visualize.heatmap” function demonstrates a heatmap plot between the centrality values. The input is a list containing the computed values.
visualize_heatmap( calc_cent , scale = TRUE )
Observed centrality measure heatmap. The colors from blue to red displays scaled centrality values.
Comprehending pair correlation among centralities is a popular analysis for researchers(Dwyer et al. 2006). In order to that, “visualize.correlations” method is appropriate. In this you are able to specify the type of correlation which you are enthusiastic to obtain.
visualize_correlations(calc_cent,"pearson")
A display of correlation among computed centrality measures. The red to blue highlighted circles represent the top to bottom Pearson correlation coefficients(Benesty et al. 2009) which differ from -1 to 1. The higher the value becomes larger, circles’ sizes get larger too.
In order to visualize a simple clustering across the nodes of a graph based on a specific centrality measure, we can use the “visualize.dendogram” function. This function draw a dendrogram plot in which colors indicate the clusters.
visualize_dendrogram(zachary, k=4)
Circular dendrogram plot of vertices based on specified centrality measure. Each color represents a cluster.
In this package additionally to correlation calculation, ability to apply linear regression for each pair of centralities has been prepared to realize the association between centralities. For visualization, “visualize.association” method is an approprite function to use:
subgraph_cent <- calc_cent[[1]]
Topological_coef <- calc_cent[[2]]
visualize_association( subgraph_cent, Topological_coef)
## $linear.regression
##
## Call:
## lm(formula = df[, 2] ~ df[, 1])
##
## Coefficients:
## (Intercept) df[, 1]
## 3.898e-16 -7.059e-01
##
##
## $visualization
## Warning: Computation failed in `stat_summary()`:
## Hmisc package required for this function
Association plot between two centrality variables. The red line is an indicator of linear regression line among them.
To access the distribution of centrality values and their corresponding pair correlation value, “visualize.pair.correlation” would be helpful. The Pearson correlation(Benesty et al. 2009) has been used for this method.
visualize_pair_correlation( subgraph_cent ,Topological_coef)
Pairwise Pearson correlation between two centrality values.
The result is a scatterplot visualizing correlation values.
Barneh, Farnaz, Mohieddin Jafari, and Mehdi Mirzaie. 2015. “Updates on Drug–target Network; Facilitating Polypharmacology and Data Integration by Growth of Drugbank Database.” Briefings in Bioinformatics 17 (6). Oxford University Press: 1070–80.
Barret Schloerke, Di Cook, Jason Crowley, and Joseph Larmarange. 2016. “GGally: Extension to ’Ggplot2’. R Package Version 1.3.0.” Journal Article. https://CRAN.R-project.org/package=GGally.
Benesty, Jacob, Jingdong Chen, Yiteng Huang, and Israel Cohen. 2009. “Pearson Correlation Coefficient.” Noise Reduction in Speech Processing. Springer, 1–4.
Butts, Carter T. 2008. “Network: A Package for Managing Relational Data in R.” Journal Article. Journal of Statistical Software 24 (2): 1–36.
Csardi, Gabor, and Tamas Nepusz. 2006. “The Igraph Software Package for Complex Network Research.” Journal Article. InterJournal, Complex Systems 1695 (5): 1–9.
CT, Butts. 2007. “Sna: Tools for Social Network Analysis. Version 1.5.” Journal Article.
———. 2008. “Social Network Analysis with Sna. Journal of Statistical Software.” Journal Article, 24(6). http://www.jstatsoft.org/v24/i06/.
Data., Butts C (2015). network: Classes for Relational. 2015. “Network: Classes for Relational Data. the Statnet Project (Http://Statnet.org). R Package Version 1.13.0.” Journal Article.
Dwyer, Tim, Seok-Hee Hong, Dirk Koschützki, Falk Schreiber, and Kai Xu. 2006. “Visual Analysis of Network Centralities.” In Proceedings of the 2006 Asia-Pacific Symposium on Information Visualisation-Volume 60, 189–97. Australian Computer Society, Inc.
Felleman, Daniel J, and David C Van Essen. 1991. “Distributed Hierarchical Processing in the Primate Cerebral Cortex.” Journal Article. Cerebral Cortex 1 (1): 1–47.
Galili, Tal. 2015. “Dendextend: An R Package for Visualizing, Adjusting and Comparing Trees of Hierarchical Clustering.” Journal Article. Bioinformatics, btv428.
Garnier, Simon. 2017. Viridis: Default Color Maps from ’Matplotlib’. https://CRAN.R-project.org/package=viridis.
Gu, Zuguang, Lei Gu, Roland Eils, Matthias Schlesner, and Benedikt Brors. 2014. “Circlize Implements and Enhances Circular Visualization in R.” Journal Article. Bioinformatics, btu393.
Husson, F, S Lê, and J Pages. 2010. “Exploratory Multivariate Analysis by Example Using R, Volume 20105550 of Chapman & Hall/Crc Computer Science & Data Analysis.” Journal Article. CRC Press 30: 101–2.
Jalili, Mahdi, Ali Salehzadeh-Yazdi, Yazdan Asgari, Seyed Shahriar Arab, Marjan Yaghmaie, Ardeshir Ghavamzadeh, and Kamran Alimoghaddam. 2015. “CentiServer: A Comprehensive Resource, Web-Based Application and R Package for Centrality Analysis.” Journal Article. PloS One 10 (11): e0143111.
Kassambara. n.d. “A. Factoextra: Visualization of the Outputs of a Multivariate Analysis. R Package Version 1.0. 1. 2015.” Journal Article.
Kolde, Raivo. 2015. “Pheatmap: Pretty Heatmaps. R Package Version 1.0. 2.”
KONECT. 2016a. “Kangaroo Network Dataset.” Journal Article, October.
———. 2016b. “Rhesus Network Dataset.” Journal Article, October.
Krijthe, J. 2015. “Rtsne: T-Distributed Stochastic Neighbor Embedding Using Barnes-Hut Implementation.” R Package Version 0.10, URL Http://CRAN. R-Project. Org/Package= Rtsne.
Newman, Mark. 2010. Networks. Oxford University Press. doi:10.1093/acprof:oso/9780199206650.001.0001.
Pryke, Andy, Sanaz Mostaghim, and Alireza Nazemi. 2007. “Heatmap Visualization of Population Based Multi Objective Algorithms.” In Evolutionary Multi-Criterion Optimization, 361–75. Springer.
Rinker, Tyler W. 2015. qdapTools: Tools to Accompany the Qdap Package. Buffalo, New York: University at Buffalo/SUNY. https://github.com/trinker/qdapTools.
Sebastien Le, Francois Husson, Julie Josse. 2008. “FactoMineR: An R Package for Multivariate Analysis. Journal of Statistical Software.” Journal Article, no. 25(1): 1–18.
Simko, Taiyun Wei, and Viliam. 2016. “Corrplot: Visualization of a Correlation Matrix. R Package Version 0.77.” Journal Article.
Van Der Maaten, Laurens. 2014. “Accelerating T-Sne Using Tree-Based Algorithms.” Journal of Machine Learning Research 15 (1): 3221–45.
Wickham, Hadley. 2011. “The Split-Apply-Combine Strategy for Data Analysis.” Journal of Statistical Software 40 (1): 1–29. https://www.jstatsoft.org/article/view/v040i01.
———. 2016. Ggplot2: Elegant Graphics for Data Analysis. Springer-Verlag New York. http://ggplot2.org/.
Zachary, Wayne W. 1977. “An Information Flow Model for Conflict and Fission in Small Groups.” Journal Article. Journal of Anthropological Research 33 (4): 452–73.