Dear all,
I am new here. I have a data set clustered by ID (kinda panel data). I would like to use the Proc Model. Here is the code I had:
Proc model data=mydata;
cluster ID;
y = b+ax
fit y;
run;
Do you think that this is the right approach?
Many thanks!
... View more