productivity_levels {economiccomplexity}R Documentation

Productivity Levels

Description

productivity_levels() computes EXPY and PRODY measures.

Usage

productivity_levels(
  data_exp,
  data_gdp,
  country = "country",
  product = "product",
  value = "value"
)

Arguments

data_exp (Type: data.frame, matrix or matrix) a dataset containing countries, products and exported values.
data_gdp (Type: data.frame, matrix or matrix) a dataset containing countries and per-capita GDP values.
country (Type: character) the column with the countries. By default this is set to "country". Used only if the input is a data.frame.
product (Type: character) the column with the products. By default this is set to "product". Used only if the input is a data.frame.
value (Type: character) the column with the metric for country-product pairs. By default this is set to "value". Used only if the input is a data.frame.

Details

The current implementation follows \insertCiteexportmatters2005economiccomplexity to obtain the productivity and income levels associated to exports.

Value

A list of two named numeric vectors.

References

For more information on prody and its applications see:

\insertRef

exportmatters2005economiccomplexity

Examples

pl <- productivity_levels(
  world_trade_avg_1998_to_2000,
  world_gdp_avg_1998_to_2000
)

# partial view of productivity levels
n <- seq_len(5)
pl$productivity_level_country[n]
pl$productivity_level_product[n]

Loading...