I have a data set that have over thousands observations and over ten variables, and all values are numeric.
what I need to do is find out the top 6 bigger values for each observation.
Any feedback would be greatly appreciated
Did you mean the top 6 values for each variable? Then why not use PROC UNIVARIATE.
no, the top 6 values in on observation.
Sample data and output are always helpful in determining requirements.
Perhaps LARGEST function.
I am not clear on your final output, so this is just a idea that you may start upon, after conversion, n5-n10 will be the top 6 bigger value for each row.
%macro have;
data have;
do row=1 to 5;
%do i=1 %to 10;
n&i=ranuni(0);
%end;
output;
end;
run;
%mend;
%have;
data want;
set have;
array n(10) n:;
call sortn(of n(*));
/* put n5-n10;*/
run;
Haikuo
For a descending sort you can use a descending enumerated range.
Thanks, Null. Did not think of that.
Haikuo
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.