The HPSUMMARY procedure uses a standardized set of keywords to refer to statistics. You specify these keywords in SAS statements to request the statistics to be displayed or stored in an output data set.
In the following notation, summation is over observations that contain nonmissing values of the analyzed variable and, except where shown, over nonmissing weights and frequencies of one or more:
is the nonmissing value of the analyzed variable for observation .
is the frequency that is associated with if you use a FREQ statement. If you omit the FREQ statement, then for all .
is the weight that is associated with if you use a WEIGHT statement. The HPSUMMARY procedure automatically excludes the values of with missing weights from the analysis.
By default, the HPSUMMARY procedure treats a negative weight as if it is equal to 0. However, if you use the EXCLNPWGT option in the PROC HPSUMMARY statement, then the procedure also excludes those values of with nonpositive weights.
If you omit the WEIGHT statement, then for all .
is the number of nonmissing values of , . If you use the EXCLNPWGT option and the WEIGHT statement, then is the number of nonmissing values with positive weights.
is the mean
is the variance
where is the variance divisor (the VARDEF= option) that you specify in the PROC HPSUMMARY statement. Valid values are as follows:
The default is DF.
is the standardized variable
PROC HPSUMMARY calculates the following simple statistics:
number of missing values
number of nonmissing values
number of observations
sum of weights
mean
sum
extreme values
minimum
maximum
range
uncorrected sum of squares
corrected sum of squares
variance
standard deviation
standard error of the mean
coefficient of variation
skewness
kurtosis
confidence limits of the mean
median
mode
percentiles/deciles/quartiles
test for mean=0
The standard keywords and formulas for each statistic follow. Some formulas use keywords to designate the corresponding statistic.
The keywords for descriptive statistics are as follows:
is the sum of squares corrected for the mean, computed as
is the percent coefficient of variation, computed as
is the kurtosis, which measures heaviness of tails. When VARDEF=DF, the kurtosis is computed as
where is
When VARDEF=N, the kurtosis is computed as
The formula is invariant under the transformation , . When you use VARDEF=WDF or VARDEF=WEIGHT, the kurtosis is set to missing.
is the maximum value of .
is the arithmetic mean .
is the minimum value of .
is the most frequent value of .
Note: When QMETHOD=P2, PROC HPSUMMARY does not compute MODE.
is the number of values that are not missing. Observations with and equal to missing or (when you use the EXCLNPWGT option) are excluded from the analysis and are not included in the calculation of N.
is the number of values that are missing. Observations with and equal to missing or (when you use the EXCLNPWGT option) are excluded from the analysis and are not included in the calculation of NMISS.
is the total number of observations and is calculated as the sum of N and NMISS. However, if you use the WEIGHT statement, then NOBS is calculated as the sum of N, NMISS, and the number of observations excluded because of missing or nonpositive weights.
is the range and is calculated as the difference between maximum value and minimum value.
is skewness, which measures the tendency of the deviations to be larger in one direction than in the other. When VARDEF=DF, the skewness is computed as
where is .
When VARDEF=N, the skewness is computed as
The formula is invariant under the transformation , . When you use VARDEF=WDF or VARDEF=WEIGHT, the skewness is set to missing.
is the standard deviation and is computed as the square root of the variance, .
is the standard error of the mean, computed as
when VARDEF=DF, which is the default. Otherwise, STDERR is set to missing.
is the sum, computed as
is the sum of the weights, , computed as
is the uncorrected sum of squares, computed as
is the variance .
The keywords for quantiles and related statistics are as follows:
is the middle value.
is the th percentile. For example, P1 is the first percentile, P5 is the fifth percentile, P50 is the 50th percentile, and P99 is the 99th percentile.
is the lower quartile (25th percentile).
is the upper quartile (75th percentile).
is interquartile range and is calculated as
You use the QNTLDEF= option to specify the method that the HPSUMMARY 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 the next smallest value, and is the largest value. For the th percentile between 0 and 1, let . Then define as the integer part of and as the fractional part of or , so that
|
|
|
|
Here, QNTLDEF= specifies the method that the procedure uses to compute the th percentile, as shown in Table 9.10.
When you use the WEIGHT statement, the th 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.
Table 9.10: Methods for Computing Quantile Statistics
QNTLDEF= |
Description |
Formula |
|
---|---|---|---|
1 |
Weighted average at |
|
|
where is taken to be |
|||
2 |
Observation numbered closest to |
|
if |
|
if and is even |
||
|
if and is odd |
||
where is the integer part of |
|||
3 |
Empirical distribution function |
|
if |
|
if |
||
4 |
Weighted average aimed at |
|
|
where is taken to be |
|||
5 |
Empirical distribution function with averaging |
|
if |
|
if |
The keywords for hypothesis testing statistics are as follows:
is the Student’s statistic to test the null hypothesis that the population mean is equal to and is calculated as
By default, is equal to zero. You must use VARDEF=DF, which is the default variance divisor; otherwise T is set to missing.
By default, when you use a WEIGHT statement, the procedure counts the values with nonpositive weights in the degrees of freedom. Use the EXCLNPWGT option in the PROC HPSUMMARY statement to exclude values with nonpositive weights.
is the two-tailed -value for the Student’s statistic, T, with degrees of freedom. This value is the probability under the null hypothesis of obtaining a more extreme value of T than is observed in this sample.
The keywords for confidence limits are as follows:
is the two-sided confidence limit for the mean. A two-sided percent confidence interval for the mean has upper and lower limits
where is , is the critical value of the Student’s statistic with degrees of freedom, and is the value of the ALPHA= option which by default is 0.05. Unless you use VARDEF=DF (which is the default variance divisor), CLM is set to missing.
is the one-sided confidence limit below the mean. The one-sided percent confidence interval for the mean has the lower limit
Unless you use VARDEF=DF (which is the default variance divisor), LCLM is set to missing.
is the one-sided confidence limit above the mean. The one-sided percent confidence interval for the mean has the upper limit
Unless you use VARDEF=DF (which is the default variance divisor), UCLM is set to missing.
The following are the minimal data requirements to compute unweighted statistics and do not describe recommended sample sizes. Statistics are reported as missing if VARDEF=DF (the default) and the following requirements are not met:
N and NMISS are computed regardless of the number of missing or nonmissing observations.
SUM, MEAN, MAX, MIN, RANGE, USS, and CSS require at least one nonmissing observation.
VAR, STD, STDERR, CV, T, PRT, and PROBT require at least two nonmissing observations.
SKEWNESS requires at least three nonmissing observations.
KURTOSIS requires at least four nonmissing observations.
SKEWNESS, KURTOSIS, T, PROBT, and PRT require that STD is greater than zero.
CV requires that MEAN is not equal to zero.
CLM, LCLM, UCLM, STDERR, T, PRT, and PROBT require that VARDEF=DF.