Difference between revisions of "Manuals/calci/AVEDEV"

From ZCubes Wiki
Jump to navigation Jump to search
 
(45 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<div style="font-size:30px">'''AVEDEV(n1,n2,n3...)'''</div><br/>
+
<div style="font-size:30px">'''AVEDEV()'''</div><br/>
*<math>n1,n2,n3...</math> are any real numbers.
+
*Parameters are any set of any real numbers.
 +
**AVEDEV(),returns the average of the absolute deviations of data points from their mean.
  
 
==Description==
 
==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 is used to find  the average of the absolute deviations of data points from its mean.
 +
*Arguments can be numbers,names,arrays or references.  
 
This function gives the average absolute deviation of a given set of numbers.
 
This function gives the average absolute deviation of a given set of numbers.
 
The Average deviation is calculated in three steps:
 
The Average deviation is calculated in three steps:
 
#We have to find the mean <math>\bar{x}</math>.
 
#We have to find the mean <math>\bar{x}</math>.
 
#To find the deviation of each value, subtract all numbers with its mean value.
 
#To find the deviation of each value, subtract all numbers with its mean value.
#Then find the average deviation, add all the deviation values and divide by the number of given set of numbers.
+
#Then find the average deviation, add all the deviation values and divide by the total number of given numbers.  
 
+
:<math>Average Deviation =\sum_{i=1}^{n} \frac{x_i-\bar{x}}{n}</math>
<math>Average Deviation =\sum_{i=1}^n \frac{xi-\bar{x}}{n}</math>
+
*Here <math>x_i</math> is the observation.  
 
 
*Here <math>xi</math> is the observation.  
 
 
*<math>\bar{x}</math> is the mean.
 
*<math>\bar{x}</math> is the mean.
 
*<math>n</math> is the number of given set of observations.
 
*<math>n</math> 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.
 
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.
 
  This function will give the result as error, when the text couldn't convert in to numbers.
 +
 +
 +
==ZOS==
 +
 +
*The syntax is to calculate AVEDEV in ZOS is <math>AVEDEV()</math>.
 +
**Parameters are any set of any real numbers.
 +
*For e.g.,AVEDEV(-25..-12)
 +
{{#ev:youtube|_hYy71RCZxg|280|center|AVEDEV}}
  
 
==Examples==
 
==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(50,52, 54, 56, 58, 60) gives the result 3<br/>
=AVEDEV (B2:B5) is 1.75
+
'''Steps'''
 +
#Mean = <math>\frac{50+52+ 54+ 56+ 58+ 60}{6} = \frac{330}{6} = 55</math>
 +
#Deviation =<math> |50-55|,|52-55|,|54-55|,|56-55|,|58-55|,|60-55| = 5,3,1,1,3,5</math>
 +
#Average Deviation = <math>\frac{5+3+1+1+3+5}{6} = 3</math>
 +
*=AVEDEV(-20,40,-30,50,60) = 36
 +
*=AVEDEV(-1.2,3.5,7,2,8.3,9.1) = 3.35
 +
*=AVEDEV(B2:B5) = 1.75
 +
 
 +
==Related Videos==
 +
 
 +
{{#ev:youtube|GdIkEngwGNU|280|center|Mean Absolute Deviation}}
 +
 
 +
==See Also==
 +
 
 +
*[[Manuals/calci/SUM | SUM]]
 +
*[[Manuals/calci/AVERAGE  | AVERAGE ]]
 +
*[[Manuals/calci/AVERAGEA  | AVERAGEA ]]
 +
 
 +
 
 +
==References==
 +
 
 +
[http://en.wikipedia.org/wiki/Absolute_deviation  Average Deviation]
 +
 
 +
 
 +
 
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 02:34, 11 August 2020

AVEDEV()


  • Parameters are any set of any real numbers.
    • AVEDEV(),returns the average of the absolute deviations of data points from their mean.

Description

  • This function is used to find the average of the absolute deviations of data points from its 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 total number of given 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.


ZOS

  • The syntax is to calculate AVEDEV in ZOS is .
    • Parameters are any set of any real numbers.
  • For e.g.,AVEDEV(-25..-12)
AVEDEV

Examples

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

Steps

  1. Mean =
  2. Deviation =
  3. Average Deviation =
  • =AVEDEV(-20,40,-30,50,60) = 36
  • =AVEDEV(-1.2,3.5,7,2,8.3,9.1) = 3.35
  • =AVEDEV(B2:B5) = 1.75

Related Videos

Mean Absolute Deviation

See Also


References

Average Deviation