Hello,
I am analysing an individually-matched case-control study (20 controls per one case), and I am trying to assess whether the median of the frequency of attending a clinic differs significantly between cases and controls. I have two variables: a binary variables (case vs. control) and a continues variable (number of attendance). I initially was thinking of using the Wilcoxon rank sum:
but then I read that given this is a matched case-control study, then I can't use the Wilcoxon rank sum but rather should use the Wilcoxon matched-pairs signed-ranks test. May I ask, how can I use that? I looked through STATA manual for signrank but couldn't figure out how to set my variables.
Would the following be correct?
where V1 and V2 refer to the total attendance of cases and controls, respectively.
Please guide me.
I am analysing an individually-matched case-control study (20 controls per one case), and I am trying to assess whether the median of the frequency of attending a clinic differs significantly between cases and controls. I have two variables: a binary variables (case vs. control) and a continues variable (number of attendance). I initially was thinking of using the Wilcoxon rank sum:
ranksum totvisits, by(case)
Would the following be correct?
signrank V1=V2
Please guide me.
Comment