FREQUENCY
The FREQUENCY function in Google Sheets calculates the frequency distribution of a one-column array into specified classes. It is a useful tool for analyzing data and understanding its distribution across different ranges.
Function Syntax and Parameters
Syntax: FREQUENCY(data, classes)
Parameters:
data: The one-column array of data to analyze.classes: The array representing the class intervals or bins.
Step-by-Step Tutorial
- Using
FREQUENCYto calculate frequency distribution:- Example: If
A1:A10has the values5, 12, 8, 15, 20, 8, 10, 5, 10, 15andB1:B4has the values0, 10, 15, 20, then enter=FREQUENCY(A1:A10, B1:B4)inC1:C4to get the frequency distribution.
- Example: If
Use Cases and Scenarios
- Data Analysis: Understand the distribution of data points across different intervals.
- Survey Responses: Analyze the responses to a survey question based on different answer options.
- Test Scores: Group and analyze test scores to determine the frequency of scores falling within specific ranges.
Related Function
HISTOGRAM: Generate a histogram from a set of data.