* Percentiles2 Example Use the SAS pctl function to compute the 62nd percentile of scores using the five SAS definitions for computing percentiles; options ls=64 nodate pageno=1; data percentiles2; p62_1 = pctl1(62, 90, 129, 99, 92, 104, 92, 112); p62_2 = pctl2(62, 90, 129, 99, 92, 104, 92, 112); p62_3 = pctl3(62, 90, 129, 99, 92, 104, 92, 112); p62_4 = pctl4(62, 90, 129, 99, 92, 104, 92, 112); p62_5 = pctl5(62, 90, 129, 99, 92, 104, 92, 112); proc print; run; quit;