What is the difference between how standard error is calculated in proc ttest vs. proc genmod dist=normal. I ran the following codes: proc ttest; class group; var age; run; proc genmod; class group; model age=group / dist=normal; lsmeans group; run; The same means were produced but the standard errors were different. Anyone know why?
... View more