- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 02-22-2019 01:13 PM
(1554 views)
What is percentile in SAS??? what are the different ways to calculate the same??
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Quantile and Related Statistics
The keywords for quantiles and related statistics are
You use the QNTLDEF= option (PCTLDEF= in PROC UNIVARIATE) to specify the method that the procedure uses to compute percentiles. Let
be the number of nonmissing values for a variable, and let
represent the ordered values of the variable such that
is the smallest value,
is next smallest value, and
is the largest value. For the tth percentile between 0 and 1, let
. Then define
as the integer part of
and
as the fractional part of
or
, so that
MEDIAN
is the middle value.
P1
is the 1st percentile.
P5
is the 5th percentile.
P10
is the 10th percentile.
P90
is the 90th percentile.
P95
is the 95th percentile.
P99
is the 99th percentile.
Q1
is the lower quartile (25th percentile).
Q3
is the upper quartile (75th percentile).
QRANGE
is interquartile range and is calculated as
Here, QNTLDEF= specifies the method that the procedure uses to compute the tth percentile, as shown in the table that follows.
When you use the WEIGHT statement, the tth percentile is computed as
where
is the weight associated with
and
is the sum of the weights. When the observations have identical weights, the weighted percentiles are the same as the unweighted percentiles with QNTLDEF=5.
QNTLDEF=
|
Description
|
Formula
|
|
---|---|---|---|
1
|
|
||
2
|
|||
3
|
empirical distribution function
|
||
4
|
|
||
5
|
empirical distribution function with averaging
|
||
@aman23 wrote:
What is percentile in SAS??? what are the different ways to calculate the same??
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
here is a nice link
on the examples tabs you should be-able to find your needs
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
This Document Explains the Percentile.
Example:
data Heights(drop=i);
do i=1 to 1000;
Height=round(ranuni(8)*100,.01);
output;
end;
run;
title 'Analysis of Female Heights';
ods select Quantiles;
proc univariate data=Heights ciquantdf(alpha=.1);
var Height;
run;