Description Usage Arguments Details Value Author(s) See Also Examples
The function area.between
is an (internal) function of the GoFKernel
package that calculates the area,
in a given interval, between a theoretical density function and an empirical
kernel estimate. area.between
is called by dgeometric.test
of the GoFKernel
package.
1 | area.between(f, kernel.density, lower = -Inf, upper = Inf)
|
f |
a density function. |
kernel.density |
an empirical kernel estimate, an object of the class |
lower |
lower limit of the support of f, default -Inf. |
upper |
upper limit of the support of f, default Inf. |
area.between
is called by dgeometric.test
and numerically calculates
the area between the density function of the null hypothesis and the kernel density estimate
of either the observed sample or a simulated sample from f
.
A number corresponding to the numerical value of the area between a density function and a kernel estimate.
Jose M. Pavia
density.reflected
, dgeometric.test
, inverse
random.function
, support.facto
and
density
1 2 3 4 5 6 7 8 9 | ## Unbounded example
x <- rnorm(100)
dx <- density(x)
area.between(dnorm, dx)
## Bounded example
x <- rbeta(100, 1.3, 2)
dx <- density.reflected(x, lower=0, upper=1)
area.between(dunif, dx)
|
Loading required package: KernSmooth
KernSmooth 2.23 loaded
Copyright M. P. Wand 1997-2009
[1] 0.1604134
[1] 0.3501884
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.