I have a table of 6 columns and 8760 rows filled with numerical values. I need to find 99 percentiles for each row which has 6 values.
Below is the gist of the table:
Load_04 | Load_05 | Load_06 | Load_07 | Load_08 | Load_09 |
2433.896 | 2323.323 | 2720.163 | 2708.686 | 2742.605 | 2925.509 |
2381.1 | 2299.548 | 2649.212 | 2576.808 | 2638.918 | 2717.989 |
2421.829 | 2376.882 | 2595.548 | 2474.217 | 2604.292 | 2749.657 |
2485.082 | 2487.375 | 2595.651 | 2434.356 | 2579.163 | 2728.158 |
2559.993 | 2573.468 | 2607.336 | 2459.65 | 2602.624 |
2795.224 |
I want to calculate all the percentiles for each row for combined six values.
Ex: For first row, I want the 99 percentiles of the values
2433.896 | 2323.323 | 2720.163 | 2708.686 | 2742.605 | 2925.509 |
together.
Similarly for each row.
I have tried proc univariate for this purpose, the result is not for every row but for every column. Hence I tried transposing the table but SAS can't take 8760 variables at a time.
Kindly suggest a solution.
Thanks a lot in advance.
Varun.
i believe we need to transpose data to columns and then use proc means to calculate the percentile
data have;
input Load_04 Load_05 Load_06 Load_07 Load_08 Load_09;
cards;
2433.896 2323.323 2720.163 2708.686 2742.605 2925.509
2381.1 2299.548 2649.212 2576.808 2638.918 2717.989
2421.829 2376.882 2595.548 2474.217 2604.292 2749.657
2485.082 2487.375 2595.651 2434.356 2579.163 2728.158
2559.993 2573.468 2607.336 2459.65 2602.624 2795.224
;
proc transpose data=have out=want;
var Load_04 Load_05 Load_06 Load_07 Load_08 Load_09;
run;
proc means data= want ;
var col1-col5;
output out=p99 p99=/autoname;
run;
Thanks,
Jag
Use pctl function to get percentile for each row:
data want(drop=i);
set have;
array load(*) load:;
do i=1 to dim(load);
p_99=pctl(99,of load(*));
end;
run;
Thank you for the asnwer. This seems very helpful.
Could you please tell me what does the function
array load(*)load:
do?
What does load(*) stand for?
Kindly reply as per your convenience.
array load(*) load:;
load is name of array and (*) indicates the dimension of array, represents number of elements in the array which is 6 in this case. If we indicate dimension of the array using (*) then SAS determines demension of the array by counting number of elements.
load: represents 6 elements in the array (load1 load2 load3 load4 load5 load6)
array load(*) load:;
can also be written as
array load(6) load1 load2 load3 load4 load5 load6;
Great. Thank you so much.
Thank you Jagdish. This is a helpful answer.
Varun.
As Reeza pointed out, this exercise doesn't make sense. In general, you need more than 100 values before the 99th percentile becomes meaningful. It looks like your data does not contain duplicate or rounded values, so the only relevant percentiles are 16.6th, 33.3th,...,and 87.6th. If you want the max of each row, that is easy to do with the DATA step and an array.
I need to calculate all the 99 percentiles for my assignment as I'm performing probablistic forecasting.
Sincere apologies for a delayed reply.
I was implemented this scenario in excel, the values weren't similar. I almost got 99 different values when I used the PERCENTILE.INC function over the 6 variables I mentioned earlier in the post.
Another point, would the logic be same if I want to get 100 percentiles of 20 variables instead of 6? 6 was just an example.
Thank you,
Varun.
I am in situation where I have more than 99 values and I need calculate the 99 percentiles of each of set of values. The table consists of 8760 rows and more than 100 columns.
I need to calculate 99 percentiles for each row.
Kindly revert as per your convenience.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.