Displaying 3 results from an estimated 3 matches for "aymptotic".
Did you mean:
asymptotic
2005 Aug 23
0
NAs by integer overflow in Spearman's test p-value (PR#8087)
...as.integer(n),
as.double(q + 1),
p = double(1),
integer(1),
as.logical(lower.tail),
PACKAGE = "stats")$p
else { # for large n: aymptotic t_{n-2}
n <- as.double(n); # *** fix ***
r <- 1 - 6 * q / (n*(n*n - 1))
pt(r / sqrt((1 - r^2)/(n-2)), df = n-2,
lower.tail= !lower.tail)
}
}...
2005 Aug 23
0
(PR#8087) NAs by integer overflow in Spearman's test p-value
...gt; as.double(q + 1),
> p = double(1),
> integer(1),
> as.logical(lower.tail),
> PACKAGE = "stats")$p
> else { # for large n: aymptotic t_{n-2}
> n <- as.double(n); # *** fix ***
> r <- 1 - 6 * q / (n*(n*n - 1))
> pt(r / sqrt((1 - r^2)/(n-2)), df = n-2,
> lower.tail= !lower.tail)
> }
>...
2006 May 24
0
the computation of exact p-value for the nonparametric cor-test with ties
...as.integer(n),
as.double(q + 1),
p = double(1),
integer(1),
as.logical(lower.tail),
PACKAGE = "stats")$p
else { # for large n: aymptotic t_{n-2}
r <- 1 - 6 * q / (n*(n*n - 1))
pt(r / sqrt((1 - r^2)/(n-2)), df = n-2,
lower.tail= !lower.tail)
}
}
xr<-rank(x)
yr<-rank(y)
Gx<-table...