Learn R Programming

ITNr (version 0.7.0)

ITNimvex: ITN - Exports vs Imports Plot

Description

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.

Usage

ITNimvex(gs, weighted)

Value

Imports Vs Exports Plot

Arguments

gs

International Trade Network - igraph object

weighted

TRUE - plot import strength vs export strength. FALSE - Import count Vs export count

Examples

Run this code
require(igraph)

##Create random International Trade Network (igraph object)
ITN<-erdos.renyi.game(75,0.05,directed = TRUE)

##Add edge weights
E(ITN)$weight<-runif(ecount(ITN), 0, 1)

##Plot binary import vs exports
imvex_plot<-ITNimvex(ITN,FALSE)

Run the code above in your browser using DataLab