BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
xtc283x
Quartz | Level 8

As part of the output from a Proc Mixed model, I am requesting that the ODS table TESTS3 be ouput. This table contains summary statistics wrt the performance of the independent variables in the model. However, when I run this module on data, I get an error that TESTS3 could not be created without an explanation, here's what SAS says, "WARNING: Output 'tests3' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used."


Otherwise, the model converges and does everything else it's supposed to do. Here is my code:

 


proc mixed data=resids covtest noclprint namelen=50 METHOD=MIVQUE0;
class day month year networktype orig_acq genre net;
model LOGLIVE7RATING2=trend programtenure totallynewprogram censored
dayssincelastbroadcastrecp nads_sqrt trend*nads_sqrt
day month*year networktype ORIG_ACQ genre
/solution s ddfm=bw notest
outp=residsx(keep=net pgm trend pred live7rating loglive7rating2 where=(loglive7rating2=.));
random intercept trend/sub=net type=un g;
ods output tests3=tests;*summary stats;
run;

 

I have highlighted the offending line of code. 

 

Any ideas as to what's going on?

 

Thank you!

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Just a guess, but the NOTEST option in your MODEL statement is probably supressing creation of the table.

model LOGLIVE7RATING2=trend programtenure totallynewprogram censored
dayssincelastbroadcastrecp nads_sqrt trend*nads_sqrt
day month*year networktype ORIG_ACQ genre
/solution s ddfm=bw notest
outp=residsx(keep=net pgm trend pred live7rating loglive7rating2 where=(loglive7rating2=.));

NOTEST

specifies that no hypothesis tests be performed for the fixed effects

 

View solution in original post

2 REPLIES 2
Reeza
Super User

Just a guess, but the NOTEST option in your MODEL statement is probably supressing creation of the table.

model LOGLIVE7RATING2=trend programtenure totallynewprogram censored
dayssincelastbroadcastrecp nads_sqrt trend*nads_sqrt
day month*year networktype ORIG_ACQ genre
/solution s ddfm=bw notest
outp=residsx(keep=net pgm trend pred live7rating loglive7rating2 where=(loglive7rating2=.));

NOTEST

specifies that no hypothesis tests be performed for the fixed effects

 

xtc283x
Quartz | Level 8

Right you are! Thank you.

SAS Innovate 2025: Call for Content

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!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 2703 views
  • 0 likes
  • 2 in conversation