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)
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.