In order to calculate standard descriptive statistics, you can use the following built-in functions:
- VARIANCE: This gives you the variance of your data, which calculates what the difference is for each individual point and the mean of all the points. If zero is returned, then all the data points are the same. A larger value returned means that individual data points are farther from the mean.
- STDDEV: This gives you the standard deviation, which helps you understand how spread out your data is, as well as how close each individual data point is to the mean (you calculate the mean by using the AVG built-in function). If zero is returned, then all the data points are exactly the same. A larger value returned ...