BookmarkSubscribeRSS Feed
braam
Quartz | Level 8

I can make the output set using ods output, but I don't want to report the results in my SAS. How can I do this?

 

	ods output ttests=out;
	proc ttest data= sashelp.cars plots=none;
		where lowcase(type) in ("suv", "sedan");
		class type;	var mpg:;	%rq;
	ods output close;

2 REPLIES 2
PaigeMiller
Diamond | Level 26

Add

ods html select none;

before PROC TTEST.

--
Paige Miller
Reeza
Super User

Use ODS SELECT NONE/ALL options.

 

ods select none;	
ods output ttests=out;
	proc ttest data= sashelp.cars plots=none;
		where lowcase(type) in ("suv", "sedan");
		class type;	var mpg:;	%rq;
	ods output close;
ods select all;

If you'd like to read up more on the topic see this blog post: https://blogs.sas.com/content/iml/2015/05/26/suppress-ods.html

 


@braam wrote:

I can make the output set using ods output, but I don't want to report the results in my SAS. How can I do this?

 

	ods output ttests=out;
	proc ttest data= sashelp.cars plots=none;
		where lowcase(type) in ("suv", "sedan");
		class type;	var mpg:;	%rq;
	ods output close;


 

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 657 views
  • 4 likes
  • 3 in conversation