Hi there,
I'm trying to create a frequency table, but to suppress values with cell sizes less than 5.
I can do it when using proc freq, but I can't seem to find an option to do it for proc surveyfreq. Here's how I did it with proc freq, is there an equivalent when using proc surveyfreq?
PROC FORMAT; VALUE mask . = 0 1,2,3,4,5 = '*' OTHER = [16.]; RUN; PROC FREQ DATA=test; TABLE age*hypertension / NOCUM NOCOL NOROW MISSING FORMAT=mask.; RUN;
Thanks!
I would say it depends on what you are looking for in the final output. I generally never use the raw results from the survey procedures but generate data sets and then appropriate formats or appearance modifiers in a report procedure such as proc print, tabulate or report as they provide much more control.
I didn't think of doing that - I'll give that a try!
Thanks!
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 save with the early bird rate—just $795!
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.