Displaying 2 results from an estimated 2 matches for "lowertail".
Did you mean:
lower_tail
2006 Mar 30
1
ansari.test one-tailed (PR#8730)
...tailed test.
Here is what is written in ansari.test :
p <- pnorm(normalize(STATISTIC, r, TIES))
PVAL <- switch(alternative,
two.sided = 2 * min(p, 1 - p),
less = 1 - p,
greater = p)
pnorm() is written without "lowertail = FALSE". So it should be :
less = p
greater = 1-p
Am I wrong ???
Thanks very much for your help.
Gael.
Gael Millot
UMR 7147 et Universite Paris 6
Equipe Recombinaison et instabilite genetique
Pav Trouillet Rossignol 5eme etage
Institut Curie
26 rue d'Ulm
75248 Paris Cedex 05
tel : 01...
2006 Mar 28
0
ansari.test (one tailed)
..., is it
may have a mistake in this part of the code :
p <- pnorm(normalize(STATISTIC, r, TIES))
PVAL <- switch(alternative,
two.sided = 2 * min(p, 1 - p),
less = 1 - p,
greater = p)
pnorm() is written without "lowertail = FALSE". So it should be :
less = p
greater = 1-p
Am I wrong ???
Thanks very much for your help.
Gael.
Gael Millot
UMR 7147 et Universite Paris 6
Equipe Recombinaison et instabilite genetique
Pav Trouillet Rossignol 5eme etage
Institut Curie
26 rue d'Ulm
75248 Paris Cedex 05
tel...