Minor changes
This commit is contained in:
parent
1fdb98af89
commit
60ce0e93ee
2 changed files with 5 additions and 5 deletions
|
@ -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["))
|
||||
|
||||
|
|
|
@ -77,8 +77,8 @@ 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.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue