Hi stata forum,
I have a wide dataset. For each individual (all of whom have end-stage renal disease), I have hospitalization data available (event = yes/no, date of event).
I am interested in the rate of hospitalizations for amputations in this population over time (2000-2014), i.e. I want to compare incidence rates across years, adjusted/standardized for age.
I want to set the data as survival data.
stset dox, fail(amputation==1) origin(born) entry(first_se) scale(365.25) id(id)
where ‘dox’ (date of exit) is either end of follow-up time (31dec2014), date of first amputation, or date of death, whichever occurred first.
And ‘entry’ is the date they first entered my registry database (of people with known end-stage renal disease).
I am not sure what is the best approach moving forward to get incidence rates, per year, standardized by age to a reference population (using direct standardization method).
I want my end result to be incidence rates with 95%CI, reported per year. I don’t want to report Hazard ratios, or incidence rate ratios, or coefficients.
I am a bit lost as to which stata command to use as stplit, poisson, sptime all seem to not be able to do exactly what I want.
Any advice would be much appreciated.
Jess
I have a wide dataset. For each individual (all of whom have end-stage renal disease), I have hospitalization data available (event = yes/no, date of event).
I am interested in the rate of hospitalizations for amputations in this population over time (2000-2014), i.e. I want to compare incidence rates across years, adjusted/standardized for age.
I want to set the data as survival data.
stset dox, fail(amputation==1) origin(born) entry(first_se) scale(365.25) id(id)
where ‘dox’ (date of exit) is either end of follow-up time (31dec2014), date of first amputation, or date of death, whichever occurred first.
And ‘entry’ is the date they first entered my registry database (of people with known end-stage renal disease).
I am not sure what is the best approach moving forward to get incidence rates, per year, standardized by age to a reference population (using direct standardization method).
I want my end result to be incidence rates with 95%CI, reported per year. I don’t want to report Hazard ratios, or incidence rate ratios, or coefficients.
I am a bit lost as to which stata command to use as stplit, poisson, sptime all seem to not be able to do exactly what I want.
Any advice would be much appreciated.
Jess
Comment