
This function computes usedata
is set to
FALSE
; thus a normal approximation is implemented, including a
continuity correction.
pDtrend(
k,
n,
lower.tail = TRUE,
exact = (n
A double between 0 and 1 representing the probability/ies of
taking on at least (at most) the value(s) in the names
attribute.
An integer of length
"all"
indicating that the cumulative
distribution function should be applied to the entire support of exact
is TRUE
, since
the distribution is otherwise continuous.
A positive integer representing the number of observations in the series.
A logical. Should lower tailed cumulative probability be
calculated? Defaults to TRUE
. Note that both lower- and upper-
tailed cumulative probabilities are computed inclusive of k
.
A logical. Should exact distribution of dDtrend
? If FALSE
, a normal approximation
is used. If tiefreq
is not NA
(ties are present),
normal approximation is used regardless of the value of exact
.
By default, exact
is set to TRUE
provided that
n <= 10
. Setting exact
to TRUE
for n > 11
results in an error unless override
is set to TRUE
.
A double vector corresponding to the value of NA
(the default).
A logical. By default, the dDtrend
function aborts if
TRUE
overrides
the abort. Ignored unless exact
is TRUE
.
dDtrend
, horn
# For an independent sample of size 6, the probability that D is <= 50 is
# 0.8222
pDtrend(k = 50, n = 6)
# Normal approximation of the above with continuity correction is
# 0.8145
pDtrend(k = 50, n = 6, exact = FALSE)
Run the code above in your browser using DataLab