Previous Page | Next Page

Functions and CALL Routines

GEOMEANZ Function



Returns the geometric mean, using zero fuzzing.
Category: Descriptive Statistics

Syntax
Arguments
Comparisons
Details
Examples
See Also

Syntax

GEOMEANZ(argument<,argument,...>)


Arguments

argument

is a non-negative numeric constant, variable, or expression.

Tip: The argument list can consist of a variable list, which is preceded by OF.

Comparisons

The MEAN function returns the arithmetic mean (average), and the HARMEAN function returns the harmonic mean, whereas the GEOMEANZ function returns the geometric mean of the non-missing values. Unlike GEOMEAN, GEOMEANZ does not fuzz the values of the arguments that are approximately zero.


Details

If any argument is negative, then the result is a missing value. A message appears in the log that the negative argument is invalid, and _ERROR_ is set to 1. If any argument is zero, then the geometric mean is zero. If all the arguments are missing values, then the result is a missing value. Otherwise, the result is the geometric mean of the non-missing values.

Let [equation] be the number of arguments with non-missing values, and let [equation] be the values of those arguments. The geometric mean is the [equation] root of the product of the values:

[equation]

Equivalently, the geometric mean is

[equation]


Examples

SAS Statements Results
x1=geomeanz(1,2,2,4);
2
x2=geomeanz(.,2,4,8);
4
x3=geomeanz(of x1-x2);
2.8284271247


See Also

Function:

GEOMEAN Function

HARMEAN Function

HARMEANZ Function

MEAN Function

Previous Page | Next Page | Top of Page