I have a data set comparing animals that are treated with x versus y. The animals are in cages of varying number per cage (4-9 ). I count the number of sick animals at various time points in the cages.
My data lines include:
treatment day sick_animals animals_per_cage
I denote those R, and the rabbits per cage are N.
When I run the model
proc logistic data = ....;
class treatment (ref=control) day (ref=0):
sick_animals/animals_per_cage= treatment day/cl;
oddsratio treatment/diff=ref;
oddsratio day/diff=ref;
run;
I get different estimates for the parameters estimates (when I exponentiate these) in the 'Analysis of maximum likelihood estimates' compared to what the oddsratios that the model generates.
What is the true odds ratios, and where do I find level of significance (p-value) of the odds ratios. I can see the confidence intervals, but I need the p-value also.
Kind regards,
Anna Catharina