entropy | R Documentation |
This function computes the Shannon entropy index from regions - industries matrices from (incidence) regions - industries matrices
entropy(mat)
mat |
An incidence matrix with regions in rows and industries in columns |
A numeric vector representing the Shannon entropy index computed from the regions - industries matrix
Pierre-Alexandre Balland p.balland@uu.nl
Shannon, C.E., Weaver, W. (1949) The Mathematical Theory of Communication. Univ of Illinois Press.
Frenken, K., Van Oort, F. and Verburg, T. (2007) Related variety, unrelated variety and regional economic growth, Regional studies 41 (5): 685-697.
diversity
## generate a region - industry matrix
set.seed(31)
mat <- matrix(sample(0:100, 20, replace = TRUE), ncol = 4)
rownames(mat) <- c("R1", "R2", "R3", "R4", "R5")
colnames(mat) <- c("I1", "I2", "I3", "I4")
## run the function
entropy(mat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.