Is there a SAS equivalent to Stata's areg command? Specifically, I'm looking for a procedure that will replicate the following Stata command:
areg depvar indvar, absorb(id1) cluster(id2)
In this case id1 is nested within id2.
I am not real sure, but would some sort of hierarchical model, such as GLIMMIX work for what you want?
proc glimmix data=have;
class id1 id2;
model depvar=indvar;
random intercept/subject=id1;
random _residual_/subject=id2(id1) type=vc;
run;
Steve Denham
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.