README.md

ITNr

ITNr - International Trade Network (ITN) analysis in R

International trade data can be analysed using a network perspective, where the network is a set of countries linked by weighted and directed trade ties. This network is referred to by various names, the International Trade Network (ITN), World Trade Web (WTW) and the World Trade Network (WTN) etc. This package provides a number of functions for cleaning and processing international trade data into a network, and undertaking a set of relevant analysis.

Installation

This package can be installed with devtools.

#Install this package:
library(devtools)
devtools::install_github("MatthewSmith430/ITNr")

library(ITNr)

Loading Example Data

This package comes with example International Trade Network data. The network data is trade in electrical automotive goods, where this category is defined by Amighini & Gorgoni (2014): Amighini, A. and Gorgoni, S. (2014) The International Reorganisation of Auto Production, The World Economy, 37(7), pp. 923–952.

These ITNs are igraph objects with a number of attributes (region, GDP, GDP per captia etc). The edge weights are proportion of global trade in the electrical automotive goods category group. A threshold has been applied to the edge weights so only the most relevant edges and countries are included in the network. Therefore only edges that are at least 0.01% of global trade are included in the network.

The first object is a single network for 2016, the second is a list of networks for 2006 - 2016.

#Single ITN 2016 
data("ELEnet16")

#List of ITNs 2006 - 2016
data("ELEnetList")

Cleaning international trade data

This function can clean a CSV file downloaded from WITS (https://wits.worldbank.org/) and process it into an igraph object with a number of attributes attached. The attributes the function attaches include - Region - Income Level - GDP - GDP per capita - GDP growth - FDI

The network is also weighted, where the weights refer to the proportion of world trade (of the product).

The function requires a number of inputs: - CSV file name

Reference for extracting the backbone of a network: Serrano, M. Á., Boguñá, M. and Vespignani, A. (2009) Extracting the multiscale backbone of complex weighted networks, Proceedings of the National Academy of Sciences, 106(16), pp. 6483–6488.

Below is an example:

#Example
#Year - 2016
#Threshold - TRUE
#Cutoff - 0.01 (Only ties that are at least 0.01% of world trade are retained)

ITN<-WITSclean("CSV file name.csv",2016,TRUE,0.01)

The following functions in the package assume that the ITN specified is one create using the WITSclean function.

International Trade Network Plots

This package contains two functions for plotting the International Trade Networks: 1. Plot set 2. Single Plot

The first produces a panel with four network plots. The purpose of this function for a quick inspection of the network structure, whilst the second plot function provides a better, higher quality plot.

Plot Set

In the plot set function, the four plots produced include: - Network plot highlighting clusters using the fast greedy algorithm.

library(ITNr)

data("ELEnet16")

ITNplotset(ELEnet16)

Single Plot

This provides a single network plot, where it requires you to specify whether the nodes should be coloured by region and whether labels should be present.

If the nodes are coloured by region, the ties between countries in the same region (intra-regional) are the same colour as the node, and all other ties (inter-regional) are grey.

Node size is based on weighted out degree centrality - so reflects export performance. The edge size is based on the weights of the ties.

In the example below the ITN is coloured by region and the node labels are not present.

library(ITNr)
data("ELEnet16")

#No labels and node coloured by region
ITN_make_plot(ELEnet16,FALSE,TRUE)

Degree Distribtuion

We often want to examine the degree distribution of the ITN - that it the distribution of import and export ties. We present two plots of the degree distribution: probability and histogram.

Probability Plot

This plot shows the probability of degree scores over the whole network.

library(ITNr)
data("ELEnet16")

ITNdegdist(ELEnet16)

Histogram Plot

This plot shows the count/number of degree scores over the whole network.

library(ITNr)
data("ELEnet16")

ITNhistdegdist(ELEnet16)

Imports Vs Exports Plot

The following function produces a plot showing imports (in degree) vs exports (out degree). This allows us to identify whether in the ITN, countries that export high levels also import high levels. The plot can be produced for either weighted or binary import and export ties.

library(ITNr)
data("ELEnet16")

#Plot is for binary imports and exports
ITNimvex(ELEnet16,FALSE)

Node Strength - Degree Correlation Plot

The following function creates a correlation plot to examine the correlation between node strength and node degree.

library(ITNr)
data("ELEnet16")

ITNcorr(ELEnet16)

Network Analysis

Initial analysis of the ITN often involves calculating network level properties and calculating a variety of centrality measures for countries.

Network Properties

The network level properties calculated for the ITN include: - Size (number of nodes) - Density - Reciprocity - Diameter - Average path length - Average node strength - Average Degree - Betweenness Centralisation - Closeness Centralisation - Eigenvector Centralisation - Out Degree Centralisation - In Degree Centralisation - All Degree Centralisation - Clustering coefficient (transitivity) - Clustering Weighted - Region Homophily - Degree Assortativity

library(ITNr)
data("ELEnet16")

NetProp<-ITNproperties(ELEnet16)

head(NetProp)
##                       Network.Properties
## Size                             99.0000
## Density                           0.0747
## Reciprocity                       0.4248
## Diameter                          0.1726
## Average.path.length               2.3190
## Average.node.strength             0.9137

Centrality

We present a function that calculates several centrality metrics for the ITN. These capture the importance of countries in the ITN, with a focus on their export or import performance for the majority of measures.

library(ITNr)
data("ELEnet16")

CENT<-ITNcentrality(ELEnet16)

head(CENT)
##     NAMES Weighted.Out.Degree Binary.Out.Degree Weighted.In.Degree
## BRA   BRA              0.2783                 5             1.1272
## CHN   CHN             22.9228                76             7.1466
## COL   COL              0.1680                 6             0.1781
## GBR   GBR              0.7155                19             3.3002
## HKG   HKG              0.4401                11             5.0964
## JPN   JPN              8.7375                32             3.3107
##     Binary.In.Degree Weighted.Degree.All Binary.Degree.All Betweenness
## BRA               13              0.2783                 5         147
## CHN               17             22.9228                76        3426
## COL                3              0.1680                 6          61
## GBR               26              0.7155                19         156
## HKG               12              0.4401                11          87
## JPN               13              8.7375                32          33
##     Closeness Eigenvector    Hub Authority
## BRA    0.0891      0.0542 0.0666    0.6107
## CHN    0.0699      0.8780 1.0000    0.6708
## COL    0.1186      0.0171 0.0705    0.2149
## GBR    0.0967      0.1116 0.4376    0.9139
## HKG    0.1676      0.2725 0.2448    0.5447
## JPN    0.0735      0.5156 0.7079    0.6096

Brokerage Roles

It can be important to analyse brokerage roles in the ITN, where we consider a country's role as a broker between various regional partitions. The following function conducts the Gould & Fernandez (1989) brokerage analysis. Gould, R. V. and Fernandez, R. M. (1989) Structures of mediation: A formal approach to brokerage in transaction networks, Sociological methodology, 19(1989), pp. 89–126.

In this function - you specify the network (igraph object with region attribute) and the name of the file, where the analysis is saved.

GFbroker<-RegionalBrokerage(ITN,"ITN Regional Brokerage")

Clustering

In the plots section we plotted networks with nodes coloured by clusters. In this function, we present the cluster membership for each country for a variety of cluster algorithms. We also present correlation between cluster membership and regional partitions. This allows you to investigate whether clustering in the ITN occurs at the regional level.

CLU<-ITNcluster(ELEnet16)

Blockmodels and Structural Equivalence

Blockmodelling and structural equivalence are important concepts in international trade. Blockmodels indicates the. Structural equivalence allows us to explore to what extent two countries hold equivalent positions in the ITN. This function gives the block membership for each country and a structural equivalence matrix, which indicates how equivalent pairs of countries are in the ITN.

blockse<-ITNblock_se(ELEnet16)

Blockmodel Plot

In addition to calculating the blockmodel membership, we introduce a function to plot the ITN with node coloured by block membership. You can also set whether you want node labels present(TRUE) or absent (FALSE).

library(ITNr)
data("ELEnet16")

#No labels 
ITNblock_plot(ELEnet16,FALSE)

Longitudinal Network Analysis

Trade data is available for decades, therefore longitudinal analysis is also available. Here we present function on how to create a dynamic network object based on a set of (temporal) ITNs (e.g. one ITN for each year).

To create a dynamic network object, we need to specify a list of ITNs. These are usually an ITN for each year, where they are trade in the same product groups across time.

##Load a list of ITNs - this is 11 ITNs, one for each year for 2006-2016
data("ELEnetList")

##Create a dynamic network object for the list of ITNs
ITNdyn<-ITNdynamic(ELEnetList)

##We can also inspect this dynamic network object
head(as.data.frame(ITNdyn))

Dynamic Network Analysis & Animation

There are many additional packages and functions to analyse this dynamic network object. These are listed at:http://statnet.csde.washington.edu/workshops/SUNBELT/current/ndtv/ndtv_workshop.html#introduction-to-this-workshop

Below is some example code to complement this package and analyse the dynamic network ITN object.

Film Strip Plots

Film strip plots can be used to create a static plot of a series of dynamic networks. Below is the code to create a film strip plot from a dynamic network object.

##Create a dynamic network object for the list of ITNs
ITNdyn<-ITNdynamic(ELEnetList)

par(mar=c(1,1,1,1))

filmstrip(ITNdyn,displaylabels=FALSE,vertex.cex=2,
          edge.col="#CCCCCC55",vertex.col='red')

title("filmstrip example")

Animation

The dynamic network object can be used to create network animations using the networkDynamic and ndtv packages. There are other tools available to create network animations - that do not use a dynamic network object, see http://curleylab.psych.columbia.edu/netviz/netviz5.html#/10 for these alternative approaches.

To save the animations different file formats you need to have image magik installed, (https://www.imagemagick.org/script/index.php). When installing check the "install legacy programs" box. You also need to installation directory to path in Environment Variables.

##Create a dynamic network object for the list of ITNs
ITNdyn<-ITNdynamic(ELEnetList)

render.d3movie(ITNdyn,
               render.par=list(tween.frames=20),
               vertex.cex=0.8,
               vertex.col='red',
               edge.col="#CCCCCC55",
               output.mode = 'htmlWidget')

##Commands to save animation as GIF (to insert in presentations)
saveGIF(render.animation(ITNdyn,
                       render.par=list(tween.frames=20),
                       vertex.cex=0.8,vertex.col='red',
                       edge.col="#CCCCCC55"),movie.name = "Example.gif")

Temporal Metrics

These commands include timeline options, where we can view the dynamics of a network as a timeline by plotting the active spells of edges and vertices.

We can also make use of the tsna package to undertake some basic temporal social network analysis. This includes examining how many edges form at each time step for the dynamic network object (tEdgeFormation) and producing a plot of this information. The tsna package allows us to compute a time series using network configuration terms (terms specified in the ergm package). In the example below the gtrans function to calculate and plot transitivity in the networks over time.

##Create a dynamic network object for the list of ITNs
ITNdyn<-ITNdynamic(ELEnetList)

##Timeline Plots
timeline(ITNdyn)
timeline(ITNdyn,plot.edge.spells=FALSE)

#tsna - Temporal Social Network Analysis
library(tsna)
tEdgeFormation(ITNdyn)
plot(tEdgeFormation(ITNdyn))

tSnaStats(ITNdyn,'gtrans')
plot(tSnaStats(ITNdyn,'gtrans'))


MatthewSmith430/ITNr documentation built on April 15, 2024, 8:05 a.m.