The STDEV.P function in Google Sheets is a statistical function used to calculate the standard deviation based on the entire population of a set of numbers. It helps in understanding the dispersion or variability in the dataset. Learn how to apply the STDEV.P function effectively with our comprehensive guide.
Parameters
value1: The first value or range to consider for the standard deviation calculation.value2, ...: [Optional] Additional numbers or ranges to consider.
Step-by-Step Tutorial
-
Using
STDEV.Pwith individual numbers:- Example:
=STDEV.P(3, 10, 5) - Result: The standard deviation value based on the entire population of the numbers provided.
- Example:
-
Using
STDEV.Pwith a range of cells:- Example: If
A1:A5has the values5, 10, 3, 8, 7, then=STDEV.P(A1:A5)will return the standard deviation based on the entire population.
- Example: If
Working with a Single Value, a List, and a Range
STDEV.P accepts numbers one at a time, as a comma-separated list, or as a range — mix and match freely.
- Single value:
=STDEV.P(A1)— returns0, since a single data point has no deviation from itself. - List of values:
=STDEV.P(A1, A2, A3)— treats each cell as one data point in the population. - Range:
=STDEV.P(A1:A10)— treats every cell in the range as part of the population. - Mixed:
=STDEV.P(A1, A3:A6, 10)— combine single cells, ranges, and literal numbers into one population.
Use Cases and Scenarios
- Quality Control: Assess the variability in product weights during manufacturing.
- Market Research: Analyze the dispersion of customer ratings for a specific product.
- Financial Analysis: Measure the risk and volatility of prices in the stock market.
Related Functions
STDEV.S: Calculate the standard deviation based on a sample from a population.AVERAGE: Find the mean or average value of a set of numbers.