BookmarkSubscribeRSS Feed
david27
Quartz | Level 8

Hello,

 

I am trying to create a frequency chart using proc freq.

 

But it also prints out the table. -- I do NOT want the table printed out.

Also, I want all "type" to be in 1 page NOT split across multiple pages.

 

Please advise. Here is the code:

ods graphics on;
proc freq data=sashelp.cars;
	tables cylinders*type / missing norow nocol nopercent  nocum  plots(only)=freqplot(type = bar);
	where origin = "Asia" and type ne "Sedan";
run;

ods graphics off;

 

2 REPLIES 2
Reeza
Super User

Add the following to keep only the plot:

 

ods select freqplot;

Also, I want all "type" to be in 1 page NOT split across multiple pages.

Not sure what you mean by that, can you please clarify.

 


@david27 wrote:

Hello,

 

I am trying to create a frequency chart using proc freq.

 

But it also prints out the table. -- I do NOT want the table printed out.

Also, I want all "type" to be in 1 page NOT split across multiple pages.

 

Please advise. Here is the code:

ods graphics on;
proc freq data=sashelp.cars;
	tables cylinders*type / missing norow nocol nopercent  nocum  plots(only)=freqplot(type = bar);
	where origin = "Asia" and type ne "Sedan";
run;

ods graphics off;

 


 

ballardw
Super User

You may need to adjust the default graphics display size such as with

ods graphics on / height=8in;

to make a graph "taller" to prevent breaking. Width also.

 

Are you sure you want the missing value of cylinder displayed in the graph?

 

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 757 views
  • 0 likes
  • 3 in conversation