BookmarkSubscribeRSS Feed
aloou
Obsidian | Level 7

Hello every one:

am running a proc freq on a dataset, the code is as follows :

 

proc freq data=sashelp.class;

ods output onewayfreqs=new;

table _character_;

run;

 

However, the problem is that the table output is not done a good way (check Screenshot):

procfreq.PNG

 

P.S: i have tried this code to reorganize the table but it does not work :

ods select none;

proc freq data=sashelp.class;

ods output onewayfreqs=new;

table _character_;

run;

ods select all;

2 REPLIES 2
ballardw
Super User

Or how do you expect to use the output set? If you created the set you must have had some sort of plan on what to do next. What is it?

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