I am trying to estimate Treatment Effects and robust standard errors after propensity score matching with two continuous outcomes following this guide: https://cran.r-project.org/web/packages/MatchIt/vignettes/estimating-effects.html
I performed nearest neighbor pair matching without replacement (MatchIt package). I used the code below for my data, However it does not seem to work with two dependent variables. This is the error message I'm receiving: Error in SSD.mlm(object) : Weighted 'mlm' objects are not supported
I am grateful for any tips and suggestions on alternative procedures
install.packages("sandwich")
library(lmertest)
library(sandwich)
fitm <- lm(cbind(PHQ_9_Sum,SF8_Sum) ~ parenthood, data = mdata, weights = weights)
coeftest(fitm, vcov. = vcovCL, cluster = ~subclass)