An R package for the analysis of stable matchings.
The matchingMarkets
package contains , C++
and Java
code for stable matching algorithms and the estimation of structural models that correct for the sample selection bias of observed outcomes in matching markets.
Matching is concerned with who transacts with whom, and how. For example, who works at which job, which students go to which school, who forms a workgroup with whom, and so on.
The empirical analysis of matching markets is naturally subject to sample selection problems. If agents match assortatively on characteristics unobserved to the analyst but correlated with both the exogenous variable and the outcome of interest, regression estimates will generally be biased.
The matchingMarkets
package comprises
Bayes estimators. The estimators implemented in function stabit
and stabit2
correct for the selection bias from endogenous matching.
The current package version provides solutions for two commonly observed matching processes: (i) the group formation problem with fixed group sizes and (ii) the college admissions problem. These processes determine which matches are observed -- and which are not -- and this is a sample selection problem.
Post-estimation tools. Setting mfx=TRUE
in the summary
function computes marginal effects from coefficients in binary outcome and selection equations and khb
implements the Karlson-Holm-Breen test for confounding due to sample selection.
Design matrix generation. The estimators are based on independent variables for all feasible, i.e., observed and counterfactual, matches in the market. Generating the characteristics of all feasible matches from individual-level data is a combinatorial problem. The package returns design matrices based on pre-specified transformations to generate counterfactual matches.
Algorithms. The package also contains matching algorithms that can be used to simulated matching data: hri
: A constraint model (Posser, 2014) for the stable marriage and college admissions problem, a.k.a. hospital/residents problem (see Gale and Shapley, 1962). sri
: A constraint model for the stable roommates problem (see Gusfield and Irving, 1989). ttc
: The top-trading-cycles algorithm for the housing market problem. These can be used to obtain stable matchings from simulated or real preference data (see Shapley and Scarf, 1974).
Data. In addition to the baac00
dataset from borrowing groups in Thailands largest agricultural lending program, the package provides functions stabsim
and stabsim2
to simulate one's own data from one-sided and two-sided matching markets.
package
Thilo Klein
Bresnahan, T. and Reiss, P. (1991). Empirical models of discrete games. Journal of Econometrics, 48(1-2):57--81.
Gale, D. and Shapley, L.S. (1962). College admissions and the stability of marriage. The American Mathematical Monthly, 69(1):9--15.
Gusfield, D.M. and R.W. Irving (1989). The stable marriage problem: Structure and algorithms, MIT Press.
Heckman, J. (1979). Sample selection bias as a specification error. Econometrica, 47(1):153--161.
Prosser, P. (2014). Stable Roommates and Constraint Programming. Lecture Notes in Computer Science, CPAIOR 2014 Edition. Springer International Publishing, 8451: 15--28.
Pycia, M. (2012). Stability and preference alignment in matching and coalition formation. Econometrica, 80(1):323--362.
Shapley, L. and H. Scarf (1974). On cores and indivisibility. Journal of Mathematical Economics, 1(1):23--37.
Sorensen, M. (2007). How smart is smart money? A two-sided matching model of venture capital. The Journal of Finance, 62(6):2725--2762.
Why can I not use the classic Heckman correction?
Estimators such as the Heckman (1979) correction (in package list("sampleSelection")) or double selection models are inappropriate for this class of selection problems. To see this, note that a simple first stage discrete choice model assumes that an observed match reveals match partners' preferences over each other. In a matching market, however, agents can only choose from the set of partners who would be willing to form a match with them and we do not observe the players' relevant choice sets.
Do I need an instrumental variable to estimate the model?
Short answer: No. Long answer: The characteristics of other agents in the market serve as the source of exogenous variation necessary to identify the model. The identifying exclusion restriction is that characteristics of all agents in the market affect the matching, i.e., who matches with whom, but it is only the characteristics of the match partners that affect the outcome of a particular match once it is formed. No additional instruments are required for identification (Sorensen, 2007).
What are the main assumptions underlying the estimator?
The approach has certain limitations rooted in its restrictive economic assumptions.
Whenever using this package, please cite as
Klein, T. (2023). matchingMarkets: Structural Estimator and Algorithms for the Analysis of Stable Matchings. R package version 1.0-4.
Useful links