BookmarkSubscribeRSS Feed
ammarhm
Lapis Lazuli | Level 10

Hi all

I wonder if anyone has any suggestion / Macro / idea about how to visualize the frequencies of the different variables in a dataset?

To explain a bit more, how to display a graphic presentation of the data, let us say, by showing a histogram showing the frequencies of male and females in the gender variable (categorical variable) of the dataset, and a histogram for the frequencies of people in age (continuous variable, same as the histogram in the proc univariate) ? Or if you have a better suggession that only histograms to "see" the data?

Kind regards

Am

1 REPLY 1
ballardw
Super User

proc freq data=have;

tables _all_ /plots=freqplot;

run;

If you have continuous variable such as age want specific groups then a custom format:

proc format;

value agegrp

0 - 12 = 'Preteen'

13-19 = 'Teen'

20-high='Adult';

run;

and associate that format with the variable in the proc code by adding:

format age agegrp. ;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 747 views
  • 3 likes
  • 2 in conversation