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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 1398 views
  • 3 likes
  • 3 in conversation