Hi all,
In my project, I would like to calculate the adjusted (for age, education, etc) incidence rates of the outcome for smoking and non-smoking groups and the difference in adjusted incidence rates between two groups. I have individual-level data (rather than aggregated data like dollhill3).
I learnt a lot from a discussion about the calculation using Poisson regression at https://www.statalist.org/forums/for...-after-poisson
Two approaches were mentioned in that thread:
Q1. The two approaches give quite different results (although both of them can be called 'adjusted incidence rate'). In your opinion, which approach is more commonly used or more practical in epidemiology studies?
Q2. No matter which approach I use, I need to describe the methods. Are the following descriptions appropriate and sufficient for an epidemiology journal?
Thank you very much.
In my project, I would like to calculate the adjusted (for age, education, etc) incidence rates of the outcome for smoking and non-smoking groups and the difference in adjusted incidence rates between two groups. I have individual-level data (rather than aggregated data like dollhill3).
I learnt a lot from a discussion about the calculation using Poisson regression at https://www.statalist.org/forums/for...-after-poisson
Two approaches were mentioned in that thread:
A:I still have a few questions about the methods:
B:Code:webuse dollhill3, clear poisson deaths i.smokes agecat, irr exp(pyears) margins smokes, predict(ir)
Code:webuse dollhill3, clear poisson deaths i.smokes agecat, irr exp(pyears) egen sm_spec_pyears = mean(pyears), by(smokes) margins, over(smokes) exp(predict(n)/sm_spec_pyears)
Q1. The two approaches give quite different results (although both of them can be called 'adjusted incidence rate'). In your opinion, which approach is more commonly used or more practical in epidemiology studies?
Q2. No matter which approach I use, I need to describe the methods. Are the following descriptions appropriate and sufficient for an epidemiology journal?
For approach AQ3. Can I use the -pwcompare- option in the -margins- command to get the 'incidence rate difference' between the two groups and claim this is an 'adjusted incidence rate difference'?
Adjusted incidence rates for smokers or non-smoker were calculated based on observed data on covariates using Poisson regression, assuming all participants were smokers or non-smoker, respectively.
For approach B
Adjusted incidence rates for smokers or non-smoker were calculated by dividing the total predicted number of the outcome by the total person-years in smoking or non-smoking group, respectively, after a Poisson regression was fit.
Thank you very much.
Comment