Hi, i'm new to SAS and i could use some help for a problem.
I'm working on a sample of 2,500 subjects and I'd like to calculate
the mean of a variable X for my entire sample, adjusted for age,sex and another variable Y (knowing that age and Y are considered continuous).Is it possible to do such thing in SAS? I know how to obtain adjusted means with proc glm but across the categories of a categorical variable like:
proc glm data=table;
class x1;
model X=x1 x2 x3;
lsmeans x1;run;
My problem is to do the same but without having so called categorical variable...
Thanks a lot!!
AS
Message was edited by: AS