Hello stata users
I want to see if certain doctors who are more experienced have less number of complications in patients
Plan is to use poisson regression:
(1)
However, someone here on stata had recommended this:
(2)
glm and poisson both test the same way. From what i understand glm, gives more fleixbility in termsnof paraterms ot investigate
However my quesiton is, should i include doctorid in the poisson model ? It’s a categorial variable of Id with 400 doctors, there are around 4,000 patients.
Which means the poisson model will give be values for each doctor… 400 is a lot .
My thoughts were to group them into High or Low volume doctors in a categorical variable as seen in (1)
what are your suggestions
I want to see if certain doctors who are more experienced have less number of complications in patients
Plan is to use poisson regression:
(1)
Code:
poisson complication vol_grp,irr exposure(number_cases)
However, someone here on stata had recommended this:
(2)
Code:
glm complication i.doctor_id , family(poisson) link(log) exposure(number_cases) vce(robust)
glm and poisson both test the same way. From what i understand glm, gives more fleixbility in termsnof paraterms ot investigate
However my quesiton is, should i include doctorid in the poisson model ? It’s a categorial variable of Id with 400 doctors, there are around 4,000 patients.
Which means the poisson model will give be values for each doctor… 400 is a lot .
My thoughts were to group them into High or Low volume doctors in a categorical variable as seen in (1)
what are your suggestions
Comment