Z.TEST
The Z.TEST function in Google Sheets returns the one-tailed P-value of a Z-test with standard distribution. It is used to determine the probability that a value is drawn from a standard normal distribution. This function is commonly used in statistical analysis and hypothesis testing.
Function Syntax and Parameters
Syntax: Z.TEST(data, value, [standard_deviation])
Parameters:
data: The array or range containing the dataset.value: The value to be tested against the null hypothesis.standard_deviation(optional): The standard deviation of the population. If omitted, the sample standard deviation will be used.
Step-by-Step Tutorial
-
Performing a Z-test on a dataset:
- Example: If the dataset is in cells
A1:A10and the value to be tested is in cellB1, use the formula=Z.TEST(A1:A10, B1).
- Example: If the dataset is in cells
-
Performing a Z-test with a specified standard deviation:
- Example: If the dataset is in cells
A1:A10, the value to be tested is in cellB1, and the standard deviation is in cellC1, use the formula=Z.TEST(A1:A10, B1, C1).
- Example: If the dataset is in cells
Use Cases and Scenarios
- Hypothesis Testing: Determine the statistical significance of a sample or experiment.
- Quality Control: Verify if a process is functioning within acceptable limits.
- Market Research: Analyze survey data to draw conclusions about a population.
Related Functions
T.TEST: Perform a t-test for two samples.