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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 2467 views
  • 0 likes
  • 2 in conversation