ID EN
#Statistical

AVEDEV

Excel Functions

Get sum of squared deviations

Syntax

EXCEL
=AVEDEV(number1, [number2], ...)

Arguments

Parameter Description
number1 First value or reference.
number2 [optional] Second value or reference.

Return Value

Calculated sum

Details

The Excel AVEDEV function calculates the average of absolute deviations from the mean in a given set of data. Variance and standard deviation functions deal with negative deviations by squaring deviations before they are averaged. AVEDEV handles negative values by working only with absolute values. This average is called the average absolute deviation. It's an easy way to show variability in a data set, but not as common as variance and standard deviation. One advantage of AVEDEV is that units remain unchanged. If values are centimeters, the absolute average deviation is in centimeters as well. AVEDEV takes multiple arguments in the form number1, number2, number3, etc. up to 255 total. Arguments can be a hardcoded constant, a cell reference, or a range. Empty cells, and cells that contain

Examples

Examples

In the example shown, the formula in G5 is:

EXCEL
=AVEDEV(B5:B10)
Examples

The formulas in C5 and D5 are, respectively:

EXCEL
=B5-$G$4 // deviation
=ABS(C5) // absolute deviation

See Also

AVERAGE STDEV VAR DEVSQ