I would like to run an exact match by state but at the same time I would like a ratio of 1 to 4 case:control. Will the following code do the trick? I understand method=exact won't work since that method does not support the ratio parameter. If yes, how do I check if matching is exact? If not, how can I fix my code? I have plenty of data (255 cases & 7500 control so exact shouldn't be a problem at all)
Thank you!
exact_match <- matchit(case ~ state , ratio = 4, data = case_crude, exact="statabbr")