This function plots the histogram degree distribution for the ITN
ITNhistdegdist(gs)
Arguments
gs: International Trade Network - igraph object
Returns
Panel of ITN histogram degree distribution plots
Examples
require(igraph)##Create random International Trade Network (igraph object)ITN<-erdos.renyi.game(75,0.05,directed =TRUE)##Add edge weightsE(ITN)$weight<-runif(ecount(ITN),0,1)##Plot degree distribution histogramhist_deg_dist<-ITNhistdegdist(ITN)