@@ -28,7 +28,7 @@ class Significance
2828 * @param float $Hₐ Alternate hypothesis (M Sample mean)
2929 * @param int $n Sample size
3030 * @param float $H₀ Null hypothesis (μ Population mean)
31- * @param float $σ SD of population (Standard error of the mean)
31+ * @param float $σ SD of population
3232 *
3333 * @return array{
3434 * z: float,
@@ -61,7 +61,7 @@ public static function zTest(float $Hₐ, int $n, float $H₀, float $σ): array
6161 * @param float $Hₐ Alternate hypothesis (M Sample mean)
6262 * @param int $n Sample size
6363 * @param float $H₀ Null hypothesis (μ Population mean)
64- * @param float $σ SD of population (Standard error of the mean)
64+ * @param float $σ SD of population
6565 *
6666 * @return array{
6767 * z: float,
@@ -126,7 +126,7 @@ public static function zTestOneSample(float $Hₐ, int $n, float $H₀, float $
126126 * @param float $μ₁ Sample mean of population 1
127127 * @param float $μ₂ Sample mean of population 2
128128 * @param int $n₁ Sample size of population 1
129- * @param int $n₂ Sample size of population 1
129+ * @param int $n₂ Sample size of population 2
130130 * @param float $σ₁ Standard deviation of sample mean 1
131131 * @param float $σ₂ Standard deviation of sample mean 2
132132 * @param float $Δ (Optional) hypothesized difference between the population means (0 if testing for equal means)
@@ -441,7 +441,7 @@ public static function tTestTwoSample(array $x₁, array $x₂): array
441441 * @param float $μ₁ Sample mean of population 1
442442 * @param float $μ₂ Sample mean of population 2
443443 * @param int $n₁ Sample size of population 1
444- * @param int $n₂ Sample size of population 1
444+ * @param int $n₂ Sample size of population 2
445445 * @param float $σ₁ Standard deviation of sample mean 1
446446 * @param float $σ₂ Standard deviation of sample mean 2
447447 *
0 commit comments