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

Hello all!

 

The below pasted default output tables for Proc GLM /repeated  is annoyin me and I can't seem to figure out how to run the GLM's without the talbe....  Does anyone know how to stop this from appearing???

 

Thanks all !!

 

 

 

"MANOVA Test Criteria and Exact F Statistics for the Hypothesis of no FEEDBACK*z_DERS_IMPULSE Effect
H = Type III SSCP Matrix for FEEDBACK*z_DERS_IMPULSE
E = Error SSCP Matrix"

S=1 M=-0.5 N=33.5 Statistic Value F Value Num DF Den DF Pr > F
Wilks' Lambda................
Pillai's Trace.............
Hotelling-Lawley Trace..................
Roy's Greatest Root................
1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

I believe that is the MultStat table, which is produced by default when you use the MANOVA statement. You can omit the MANOVA statement, or you can use ODS EXCLUDE to suppress that table:

 

ods exclude MultStat;

proc glm data=...;

MANOVA ...;

etc;

quit;

View solution in original post

4 REPLIES 4
Rick_SAS
SAS Super FREQ

I believe that is the MultStat table, which is produced by default when you use the MANOVA statement. You can omit the MANOVA statement, or you can use ODS EXCLUDE to suppress that table:

 

ods exclude MultStat;

proc glm data=...;

MANOVA ...;

etc;

quit;

Robert_Klein_ND
Fluorite | Level 6

NICE.  ACTUALLY, I'M NOT USING A "MANOVA" STATEMENT AT ALL, IT'S JUST DEFAULT FOR ANYTHING WITH A "REPEATED" STATEMENT MAYBE?

 

ANYWAY, IT WORKED WHEN I WROTE:

 

ODS EXCLUDE MULTSTAT(PERSIST);

 

!

 

THANKS SOOOOOO MUCH.  THAT WAS SO ANNOYING.

Rick_SAS
SAS Super FREQ

Glad it worked. In general, you can use ODS TRACE ON to figure out the names of the ODS tables, and then use ODS exclude to suppress the table. See the article "Find the ODS table names produced by any SAS procedure."

PGStats
Opal | Level 21

Add the statement 

 

ods exclude multstat(PERSIST);

 

before PROC GLM and 

 

ods exclude none;

 

after the run; statement.

 

 

PG

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1428 views
  • 3 likes
  • 3 in conversation