Hi All.
I have a data file which has many columns.
A lot of variable have 0 as values.
I need to find which are the top variables that will be problematic because of the presence of a lot of 0’s?
Thanks & Regards
Vishyy
make use of proc frequency for this. you will hv 2 go thru the syntax ol. this proc will answer your questn.
It will be easier if you create a format to group other values. For example:
proc format;
value posneg low-<0 = 'Negative' 0='Zero' 0-high='Positive';
run;
proc freq data=have;
tables _numeric_ / missing;
format _numeric_ posneg.;
run;
That way, you won't have to sort through huge tables with potentially thousands of different values for each variable.
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.