kolmogorov {NSM3} | R Documentation |
Kolmogorov
Description
Function to compute the asymptotic P-value for the observed Kolmogorov D statistic.
Usage
kolmogorov(x,fnc,...)
Arguments
x |
a vector of data of length n |
fnc |
the functional form of the pdf of F0. The first argument must be the data. |
... |
all the parameters besides the data that fnc needs to operate. (See below for an example using pnorm and pexp) |
Value
The function returns a list with two elements:
D |
the value of the Kolmogorov statistic |
p |
the corresponding probability |
Author(s)
Rachel Becvarik
Examples
velocity<-c(12.8, 12.9, 13.3, 13.4, 13.7, 13.8, 14.5)
kolmogorov(velocity,pnorm, mean=14,sd=2)
kolmogorov(velocity,pexp,1/2)
[Package NSM3 version 1.18 Index]