The PERCENTILE.INC function in Google Sheets is a statistical function that calculates the k-th percentile of a dataset, based on a specified percentile value. It is useful for analyzing data distributions and finding values at specific percentiles. Discover how to effectively use this function with our comprehensive guide.
Parameters
data: The range or array containing the dataset from which to calculate the percentile.percentile: The value between 0 and 1 representing the desired percentile.
Step-by-Step Tutorial
- Using
PERCENTILE.INCwith a range of cells:- Example: If
A1:A5has the values20, 30, 40, 50, 60, and you want to find the value at the 75th percentile, use=PERCENTILE.INC(A1:A5, 0.75). - Result:
47.5
- Example: If
Use Cases and Scenarios
- Data Analysis: Determine the threshold value at a certain percentile.
- Financial Analysis: Calculate the 90th percentile of stock returns.
- Healthcare Research: Find the BMI value corresponding to the 95th percentile of a population.
Related Functions
PERCENTILE: Older version ofPERCENTILE.INCthat uses a different algorithm for calculating percentiles.QUARTILE.INC: Calculates the quartile values of a dataset.