Displaying 1 result from an estimated 1 matches for "final_data".
Did you mean:
final_dat
2013 Feb 15
0
How can I plot graphs together?
...data1))
> # matching is performed below using propensity scores given the covariates
> mentioned below
> m.out = matchit(treatment~x1+x2+x3+x4+x5+x6,method="nearest", data=data1,
> ratio = 1)
> # check the sample sizes (below)
> m.out
> # Final matched data saved as final_data
> final_data = match.data(m.out)
> # (here distance = propensity score)
> # check balance (below)
> par(mfrow=c(1,3))
> plot(m.out) # covariate balance
> plot(m.out, type = "jitter") # propensity score locations
> plot(m.out, type = "hist") #check matched t...