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
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. ;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
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.
Ready to level-up your skills? Choose your own adventure.