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 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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