John
John

Reputation: 47

Trouble with keeping SAS from showing charts

When I use the code

proc anova data="/folders/myfolders/sasuser.v94/swiss.sas7bdat";
 title "All groups";
 class group;
 model creat_68=group;
 means group / bon;
 means group / tukey;
 means group / scheffe;
run;

I have three distribution charts printed, one for each bon, tukey, and scheffe. How can I prevent these from showing?

Upvotes: 1

Views: 28

Answers (1)

Peter Flom
Peter Flom

Reputation: 2388

Just add PLOTS = NONE; to the PROC ANOVA statement. (That's a good general rule for many statistical SAS PROCs).

Upvotes: 1

Related Questions