Functions and CALL Routines |
Returns the uncorrected sum of squares of the nonmissing arguments.
Category: |
Descriptive Statistics
|
USS(argument-1<,...argument-n>)
|
-
argument
-
specifies a numeric constant, variable,
or expression. At least one nonmissing argument is required. Otherwise, the
function returns a missing value. If you have more than one argument, the
argument list can consist of a variable list, which is preceded by OF.
SAS Statements |
Results |
x1=uss(4,2,3.5,6);
|
68.25
|
x2=uss(4,2,3.5,6,.);
|
68.25
|
x3=uss(of x1-x2);
|
9316.125
|
Copyright © 2011 by SAS Institute Inc., Cary, NC, USA. All rights reserved.