Difference between revisions of "Manuals/calci/AVEDEV"
Jump to navigation
Jump to search
| Line 3: | Line 3: | ||
==Description== | ==Description== | ||
| + | |||
*AVEDEV returns the average of the absolute deviations of data points from its mean. | *AVEDEV returns the average of the absolute deviations of data points from its mean. | ||
*Arguments can be numbers,names,arrays or references. | *Arguments can be numbers,names,arrays or references. | ||
| Line 18: | Line 19: | ||
==ZOS Section== | ==ZOS Section== | ||
| + | |||
*The syntax is to calculate AVEDEV in ZOS is <math>AVEDEV(n_1,n_2,n_3,....)</math>. | *The syntax is to calculate AVEDEV in ZOS is <math>AVEDEV(n_1,n_2,n_3,....)</math>. | ||
**<math>n_1,n_2,n_3...</math> are any real numbers. | **<math>n_1,n_2,n_3...</math> are any real numbers. | ||
| Line 23: | Line 25: | ||
==Examples== | ==Examples== | ||
| + | |||
*=AVEDEV(50,52, 54, 56, 58, 60) gives the result 3<br/> | *=AVEDEV(50,52, 54, 56, 58, 60) gives the result 3<br/> | ||
'''Steps''' | '''Steps''' | ||
| Line 33: | Line 36: | ||
==See Also== | ==See Also== | ||
| + | |||
*[[Manuals/calci/SUM | SUM]] | *[[Manuals/calci/SUM | SUM]] | ||
*[[Manuals/calci/AVERAGE | AVERAGE ]] | *[[Manuals/calci/AVERAGE | AVERAGE ]] | ||
| Line 38: | Line 42: | ||
==References== | ==References== | ||
| + | |||
[http://en.wikipedia.org/wiki/Absolute_deviation Average Deviation] | [http://en.wikipedia.org/wiki/Absolute_deviation Average Deviation] | ||
Revision as of 00:34, 23 April 2014
AVEDEV(n1,n2,n3...)
- are any real numbers.
Description
- AVEDEV returns 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:
- We have to find the mean Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \bar{x}} .
- 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 total number of given numbers.
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle Average Deviation =\sum_{i=1}^{n} \frac{x_i-\bar{x}}{n}}
- Here Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle x_i} is the observation.
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \bar{x}} is the mean.
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle n} 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 Section
- The syntax is to calculate AVEDEV in ZOS is Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle AVEDEV(n_1,n_2,n_3,....)}
.
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle n_1,n_2,n_3...} are any real numbers.
- For e.g.,AVEDEV(-25..-12)
Examples
- =AVEDEV(50,52, 54, 56, 58, 60) gives the result 3
Steps
- Mean = Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{50+52+ 54+ 56+ 58+ 60}{6} = \frac{330}{6} = 55}
- Deviation =Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle |50-55|,|52-55|,|54-55|,|56-55|,|58-55|,|60-55| = 5,3,1,1,3,5}
- Average Deviation = Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{5+3+1+1+3+5}{6} = 3}
- =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