rca(gdp1, time1, gdp2, time2, output = "all", sigma.measure = "cv",
sigma.log = TRUE, sigma.norm = FALSE, sigma.weighting = NULL, digs = 5)
output = "all"
(default), the function returns a list
containing the results. If output = "data"
, the function only returns the input variables and their transformations in a data.frame
. If output = "lm"
, an lm
object of the (linearized) model is returned.
output = "cv"
, which means that a coefficient of variation is used. If output = "sd"
, the standard deviation is used.
sigma.log = TRUE
), also in the sigma convergence analysis, the economic variables are transformed by natural logarithm. If the original values should be used, state sigma.log = FALSE
digs = 5
)
output = "all"
: a list
containing the items
If output = "data"
: a data.frame
containing the columns
If output = "lm"
: A lm
object of the estimated OLS model
This function needs two vectors (GDP p.c. or another economic variable, \(y\), for \(i\) regions) and the related two points in time (\(t\) and \(t+T\)). If output = "all"
, it returns the estimation results of beta convergence and, if \(-1 < \beta < 0\), also the calculations of \(\lambda\) and \(H\) related to \(\beta\). The sigma convergence is operationalized as the difference between the dispersions of the regared variable (ln-transformed if sigma.log = TRUE
): \(\sigma_t - \sigma_{t+T}\). If this value is positive, there is sigma convergence with respect to these points in time. The dispersions can be calculated as (weighted or non-weighted, standardized or non-standardized) standard deviation or coefficient of variation (see the function cv
), to be stated by the function parameters sigma.measure
, sigma.norm
and sigma.weighting
. State output = "lm"
for the underlying regression model (lm
object) only or output = "data"
for the transformed dataset. As yet, the function only allows absolute beta convergence.
Capello, R./Nijkamp, P. (2009): “Introduction: regional growth and development theories in the twenty-first century - recent theoretical advances and future challenges”. In: Capello, R./Nijkamp, P. (eds.): Handbook of Regional Growth and Development Theories. Cheltenham: Elgar. p. 1-16.
Dapena, A. D./Vazquez, E. F./Morollon, F. R. (2016): “The role of spatial scale in regional convergence: the effect of MAUP in the estimation of beta-convergence equations”. In: The Annals of Regional Science, 56, 2, p. 473-489.
Furceri, D. (2005): “Beta and sigma-convergence: A mathematical relation of causality”. In: Economics Letters, 89, 2, p. 212-215.
Young, A. T./Higgins, M. J./Levy, D. (2008): “Sigma Convergence versus Beta Convergence: Evidence from U.S. County-Level Data”. In: Journal of Money, Credit and Banking, 40, 5, p. 1083-1093.
cv
# Regional disparities / beta and sigma convergence in Germany
data(G.counties.gdp)
# GDP per capita for German counties (Landkreise)
rca (G.counties.gdp$gdppc2005, 2005, G.counties.gdp$gdppc2009, 2009, digs=5)
# returns a list
convergence <- rca (G.counties.gdp$gdppc2005, 2005, G.counties.gdp$gdppc2009, 2009, digs=5)
beta <- convergence$beta
# Beta convergence value
Run the code above in your browser using DataLab