Standardizes the values of one or more variables.
Category: | Mathematical |
Interaction: | When invoked by the %SYSCALL macro statement, CALL STDIZE removes the quotation marks from its arguments. For more information, see Using CALL Routines and the %SYSCALL Macro Statement. |
is numeric. These values will be standardized according to the method that you use.
specifies a character expression whose values can be uppercase, lowercase, or mixed case letters. Leading and trailing blanks are ignored. option includes the following three categories:
Restriction | Use a separate argument for each option because you cannot specify more than one option in a single argument. |
Tip | Character expressions can end with an equal sign that is followed by another argument that is a numeric constant, variable, or expression. |
See | PROC STDIZE in SAS/STAT 9.3 User’s Guide for information about formulas and other details. The options that are used in CALL STDIZE are the same as those used in PROC STDIZE. |
specify how to compute the location and scale measures that are used to standardize the variables. The following standardization options are available:
ABW= | must be followed by an argument that is a numeric expression specifying the tuning constant. |
AGK= | must be followed by an argument that is a numeric expression that specifies the proportion of pairs to be included in the estimation of the within-cluster variances. |
AHUBER= | must be followed by an argument that is a numeric expression specifying the tuning constant. |
AWAVE= | must be followed by an argument that is a numeric expression specifying the tuning constant. |
EUCLEN | specifies the Euclidean length. |
IQR | specifies the interquartile range. |
L= | must be followed by an argument that is a numeric expression with a value greater than or equal to 1 specifying the power to which differences are to be raised in computing an L(p) or Minkowski metric. |
MAD | specifies the median absolute deviation from the median. |
MAXABS | specifies the maximum absolute values. |
MEAN | specifies the arithmetic mean (average). |
MEDIAN | specifies the middle number in a set of data that is ordered according to rank. |
MIDRANGE | specifies the midpoint of the range. |
RANGE | specifies a range of values. |
SPACING= | must be followed by an argument that is a numeric expression that specifies the proportion of data to be contained in the spacing. |
STD | specifies the standard deviation. |
SUM | specifies the result that you obtain when you add numbers. |
USTD | specifies the standard deviation about the origin, based on the uncorrected sum of squares. |
specify the divisor to be used in the calculation of variances. VARDEF options can have the following values:
DF | specifies degrees of freedom. |
N | specifies the number of observations. The default is DF. |
Miscellaneous options can have the following values:
ADD= | is followed by a numeric argument that specifies a number to add to each value after standardizing and multiplying by the value from the MULT= option. The default value is 0. |
FUZZ= | is followed by a numeric argument that specifies the relative fuzz factor. |
MISSING= | is followed by a numeric argument that specifies a value to be assigned to variables that have a missing value. |
MULT= | is followed by a numeric argument that specifies a number by which to multiply each value after standardizing. The default value is 1. |
NORM | normalizes the scale estimator to be consistent for the standard deviation of a normal distribution. This option affects only the methods AGK=, IQR, MAD, and SPACING=. |
PSTAT | writes the values of the location and scale measures in the log. |
REPLACE | replaces missing values with the value 0 in the standardized data (this value corresponds to the location measure before standardizing). To replace missing values by other values, see the MISSING= option. |
SNORM | normalizes the scale estimator to have an expectation of approximately 1 for a standard normal distribution. This option affects only the SPACING= method. |