I am using SAS 9.4 TS level 1MZ.on window version of 6.1.7601. I went to compare more than two regression lines so anyone could help to do this please? or anyone share this syntax would be highly appreciated.
Thanks in advance!
First, which regression procedure are you using? It may helps us to provide some of the code you are running to give us an idea of what may be practical.
Second what kind of comparison are you looking to do? Graphs? Differences of slopes? Differences of Intercepts? Differences of R-squares?
Here is an example. The slopes are compared as the interaction term between engine size and origin in the ANOVA table, and the predicted values are compared for a 4-liter engine in the LSMeans output :
proc glm data=sashelp.cars;
class origin;
model horsepower = origin|engineSize;
lsmeans origin / at engineSize=4 pdiff; /* At 4-litre engine size */
run;
(for an illustration, look at the ANCOVA graph)
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.