Minor changes

This commit is contained in:
Loic Guegan 2023-10-18 20:55:32 +02:00
parent 1fdb98af89
commit 60ce0e93ee
2 changed files with 5 additions and 5 deletions

View file

@ -2,6 +2,6 @@ alpha=0.0003
lower=qnorm(alpha,mean=0,sd=1)
upper=qnorm(1-alpha,mean=0,sd=1)
message(paste0("Rejection region left tail Z in ]-inf,",lower,"]"))
message(paste0("Rejection region right tail Z in [",lower,",+inf["))
message(paste0("Rejection region for left tail: Z in ]-inf,",lower,"]"))
message(paste0("Rejection region for right tail: Z in [",upper,",+inf["))

View file

@ -77,9 +77,9 @@ Output:
.. code-block:: console
Rejection region left tail Z in ]-inf,-3.43161440362327]
Rejection region right tail Z in [-3.43161440362327,+inf[
Rejection region for left tail: Z in ]-inf,-3.43161440362327]
Rejection region for right tail: Z in [3.4316144036233,+inf[
Thus, if the z-score if part of one of the rejection regions, :math:`H_0` is rejected and :math:`H_1` is considered accepted.
One-tailed vs Two-tailed