plot_ps_qq: Draw QQ plots of propensity score between groups before and after matching
Description
This function accepts a MatchIt object (i.e., the result of matchit function)
and draw side-by-side QQ plots of propensity score between groups before and
after matching, for the purpose of comparison. Note only the results of
Subclassification, Nearest Neighbor Matching, Optimal Matching, Full
Matching, and Genetic Matching are acceptable. The results of Exact Matching
is not applicable to this function.
# NOT RUN {# take lalonde data as an example m_out <- MatchIt::matchit(treat ~ re74 + re75 + age + educ + hispan +
black, data = MatchIt::lalonde, method = "nearest")
plot_ps_qq(m_out)
# }