Hello,
When I run proc syslin and include stest, the test result output includes: Num DF, Den DF, F Value, Pr>F. These are useful, but I also need the specific numerator (Model MS) and denominator (Error MS) values that are used to calculate the F-value (=num/denom). How can I get these numerator and denominator values displayed?
Thank you very much in advance.
Best regards,
Can (John)
PS: FYI, the stest code and the out I get are below:
STEST rco1.rco2LAG1=0, rco1.rco2LAG2=0, rco1.rco2LAG3=0, rco1.rco2LAG4=0;
SAS Output
Num DF | Den DF | F Value | Pr > F |
---|---|---|---|
4 | 1705473 | 19.22 | 0.0001 |
Hi Can,
Although PROC SYSLIN does not directly provide the numerator and denominator values associated with the F statistic, you can add the PRINT option to the STEST statement to obtain the intermediate computations. Matrix multiplication in SAS/IML can then be used to compute the numerator of the F statistic. The denominator is computed as the number of restrictions*system weighted MSE, where the number of restrictions is equal to the Numerator DF, and the system weighted MSE is part of the printed output of the procedure. Please see the following documentation link for additional details:
I hope this helps!
DW
Hi Can,
Although PROC SYSLIN does not directly provide the numerator and denominator values associated with the F statistic, you can add the PRINT option to the STEST statement to obtain the intermediate computations. Matrix multiplication in SAS/IML can then be used to compute the numerator of the F statistic. The denominator is computed as the number of restrictions*system weighted MSE, where the number of restrictions is equal to the Numerator DF, and the system weighted MSE is part of the printed output of the procedure. Please see the following documentation link for additional details:
I hope this helps!
DW
I'm glad the information helped, Can!
Best Regards,
DW
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.