I usually used matchit. At this time, I used trimatch for the comparison of the three groups after matching.
When I use matchit, I can get the data after matching like below
m.out=matchit(treat~age,data=res,method="nearest",ratio=1)
m.data1 <- match.data(m.out,distance ="pscore")
But, I can't get the data after matching in trimatch. How can I get it?
From Korea