Syntax
| Parameter | Description |
|---|---|
| array | Parameter of the Z.TEST function. |
| x | Parameter of the Z.TEST function. |
| [sigma] | (Optional.) Parameter of the Z.TEST function. |
Examples
Testing if batch average meets spec
=Z.TEST(A2:A31, 50)
With known population std dev
=Z.TEST(B2:B51, 100, 15)
Two-tailed z-test
=2*MIN(Z.TEST(C2:C41, 200), 1-Z.TEST(C2:C41, 200))
Common Errors
Returned if the array is empty or contains no numeric values.
Occurs if x (the hypothesized mean) is non-numeric.
Tips
Z.TEST returns a one-tailed p-value (the probability that the sample mean is greater than or equal to what was observed). For a two-tailed test, use =2*MIN(Z.TEST(...), 1-Z.TEST(...)).
If you omit the third argument, the sample standard deviation is used. Only specify sigma when you know the true population standard deviation.
Z.TEST is appropriate when the population standard deviation is known or the sample size is large (n > 30). For small samples with unknown sigma, use T.TEST instead.
Try Z.TEST in Viztab
Import your data and use Z.TEST with 370+ other formulas. No signup required.
Open Viztab