em_basic {entrymodels} | R Documentation |
Basic Entry Model
Description
Estimate basic entry model with only one variable for the market size.
Usage
em_basic(data, Sm, y, N_max = 5, alpha0 = rep(0.1, N_max),
gamma0 = rep(1, N_max))
Arguments
data |
A |
Sm |
A string indicating the market size variable, present in |
y |
A string indicating the outcome variable, present in |
N_max |
An |
alpha0 |
A |
gamma0 |
A |
Value
A tibble with critical market sizes and estimated parameters, as explained in Bresnahan and Reiss (1991)
Author(s)
Guilherme N. Jardim, Department of Economics, Pontifical Catholic University of Rio de Janeiro
References
Bresnahan, T. F., & Reiss, P. C. (1991). Entry and competition in concentrated markets. Journal of political economy, 99(5), 977-1009.
Examples
tb <- data.frame(Sm = 1:5, y = 1:5)
# estimate default model
em_n5 <- em_basic(tb, "Sm", "y")
# estimate model with 3 competitors only
em_n3 <- em_basic(tb, "Sm", "y", N_max = 3)
## Not run:
# estimate model with different initial conditions
em_difc <- em_basic(tb, "Sm", "y", alpha0 = rep(0.2, 5), gamma0 = rep(1.1, 5))
# estimate model with example data
tb <- load_example_data()
em <- em_basic(tb, "Populacao", "n_agencias")
## End(Not run)