The VAR.S function in Google Sheets is a statistical function used to calculate the variance based on a sample data set. It measures the dispersion or spread of data points from the average. Learn how to use this function effectively with our comprehensive guide.
Parameters
value1: The first value or range containing the sample data.value2, ...: [Optional] Additional values or ranges containing the sample data.
Step-by-Step Tutorial
-
Using
VAR.Swith individual numbers:- Example:
=VAR.S(5, 8, 10, 12, 15) - Result: The variance will be calculated based on the provided data points.
- Example:
-
Using
VAR.Swith a range of cells:- Example: If cells
A1:A5contain the data5, 8, 10, 12, 15, then=VAR.S(A1:A5)will calculate the variance.
- Example: If cells
Use Cases and Scenarios
- Financial Analysis: Measure the volatility of stock prices.
- Quality Control: Assess the variability in product dimensions.
- Educational Research: Analyze the spread of test scores.
Related Functions
VAR.P: Calculate the variance based on the entire population.