Hey all, New SAS user here - attempting to do some linear regression on a large data set. I understand the basics of running PROC GLM proc glm data=dset plots=all;
class b c;
model y = a--d / solution;
run; My problem is that the number of class variables is far too big to list out manually. The dataset contains about 100 variables and its split between continuous and discrete. Is there a way that SAS can determine which variable should belong in the CLASS statement on its own?
... View more