I am trying to estimate the age of diagnosis for a rare disease. Most of the data derive from small studies, and report a median age.
The simple question is, is it "legal" to estimate weighed average of median, to approximate the "true" value? I assume that all the studies in a way represent samples of the same population of affected patients
Exampel:
The simple question is, is it "legal" to estimate weighed average of median, to approximate the "true" value? I assume that all the studies in a way represent samples of the same population of affected patients
Exampel:
Code:
clear input study N median_age 1 50 50 2 60 55 3 30 60 4 100 65 5 55 62 end sum median_age [fweight = N]
Comment