WorksheetFunction.Covar Method (Excel)

Returns covariance, the average of the products of deviations for each data point pair.

Important

This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality.

For more information about the new functions, see the Covariance_P and Covariance_S method.

Syntax

expression .Covar(Arg1, Arg2)

expression A variable that represents a WorksheetFunction object.

Parameters

Name

Required/Optional

Data Type

Description

Arg1

Required

Variant

The first cell range of integers.

Arg2

Required

Variant

The second cell range of integers.

Return Value

Double

Remarks

Use covariance to determine the relationship between two data sets. For example, you can examine whether greater income accompanies greater levels of education.

  • The arguments must either be numbers or be names, arrays, or references that contain numbers.

  • If an array or reference argument contains text, logical values, or empty cells, those values are ignored; however, cells with the value zero are included.

  • If Arg1 and Arg2 have different numbers of data points, COVAR generates an error.

  • If either Arg1 or Arg2 is empty, Covar generates an error.

  • The covariance is: Ff835620.awfcovar_ZA06051128(en-us,office.14).gifwhere x and y are the sample means AVERAGE(array1) and AVERAGE(array2), and n is the sample size.

See Also

Concepts

WorksheetFunction Object Members

WorksheetFunction Object