Difference between revisions of "Manuals/calci/AVEDEV"

From ZCubes Wiki
Jump to navigation Jump to search
 
(17 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>n_1,n_2,n_3...</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 its mean.
+
 
 +
*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.  
 
*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.
Line 17: Line 19:
 
  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 Section==
+
 
*The syntax is to calculate AVEDEV in ZOS is <math>AVEDEV(n_1,n_2,n_3,....)</math>.
+
==ZOS==
**<math>n_1,n_2,n_3...</math> are any real numbers.
+
 
 +
*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)
 
*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<br/>
 
*=AVEDEV(50,52, 54, 56, 58, 60) gives the result 3<br/>
 
'''Steps'''
 
'''Steps'''
Line 31: Line 37:
 
*=AVEDEV(-1.2,3.5,7,2,8.3,9.1) = 3.35
 
*=AVEDEV(-1.2,3.5,7,2,8.3,9.1) = 3.35
 
*=AVEDEV(B2:B5) = 1.75
 
*=AVEDEV(B2:B5) = 1.75
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|GdIkEngwGNU|280|center|Mean Absolute Deviation}}
  
 
==See Also==
 
==See Also==
 +
 
*[[Manuals/calci/SUM | SUM]]
 
*[[Manuals/calci/SUM | SUM]]
 
*[[Manuals/calci/AVERAGE  | AVERAGE ]]
 
*[[Manuals/calci/AVERAGE  | AVERAGE ]]
 
*[[Manuals/calci/AVERAGEA  | AVERAGEA ]]
 
*[[Manuals/calci/AVERAGEA  | AVERAGEA ]]
 +
  
 
==References==
 
==References==
 +
 
[http://en.wikipedia.org/wiki/Absolute_deviation  Average Deviation]
 
[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