Difference between revisions of "Manuals/calci/AVEDEV"

From ZCubes Wiki
Jump to navigation Jump to search
Line 20: Line 20:
  
 
==Examples==
 
==Examples==
=AVEDEV(50,52, 54, 56, 58, 60) gives the result 3
+
=AVEDEV(50,52, 54, 56, 58, 60) gives the result 3<br/>
Steps
+
Steps
#Mean=(50+52+ 54+ 56+ 58+ 60)/6 = 330/6 = 55
+
Mean=(50+52+ 54+ 56+ 58+ 60)/6 = 330/6 = 55
#Deviation=|50-55|,|52-55|,|54-55|,|56-55|,|58-55|,|60-55|=5,3,1,1,3,5
+
Deviation=|50-55|,|52-55|,|54-55|,|56-55|,|58-55|,|60-55|=5,3,1,1,3,5
#Average Deviation = 5+3+1+1+3+5)/6 = 3
+
Average Deviation = 5+3+1+1+3+5)/6 = 3
  
 
Where N1, N 2 ...   are positive integers.
 
Where N1, N 2 ...   are positive integers.
 
=AVEDEV (B2:B5) is 1.75
 
=AVEDEV (B2:B5) is 1.75

Revision as of 04:40, 21 November 2013

AVEDEV(n1,n2,n3...)


  • are any real numbers.

Description

  • AVEDEV returns the average of the absolute deviations of data points from their mean.
  • Arguments can be numbers, names, arrays, or references.

This function gives the average absolute deviation of a given set of numbers. The Average deviation is calculated in three steps:

  1. We have to find the mean .
  2. To find the deviation of each value, subtract all numbers with its mean value.
  3. Then find the average deviation, add all the deviation values and divide by the number of given set of numbers.

  • Here is the observation.
  • is the mean.
  • is the number of given set of observations.

Here we have to give more than one arguments. Arguments can be either number, name,logical values, arrays or cell references that contain numbers.

This function will give the result as error, when the text couldn't convert in to numbers.

Examples

=AVEDEV(50,52, 54, 56, 58, 60) gives the result 3

Steps
Mean=(50+52+ 54+ 56+ 58+ 60)/6 = 330/6 = 55
Deviation=|50-55|,|52-55|,|54-55|,|56-55|,|58-55|,|60-55|=5,3,1,1,3,5
Average Deviation = 5+3+1+1+3+5)/6 = 3

Where N1, N 2 ...   are positive integers. =AVEDEV (B2:B5) is 1.75