Learn R Programming

GoFKernel (version 2.1-1)

area.between: Area between a Density Function and a Kernel Estimate

Description

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.

Usage

area.between(f, kernel.density, lower = -Inf, upper = Inf)

Arguments

f

a density function.

kernel.density

an empirical kernel estimate, an object of the class density.

lower

lower limit of the support of f, default -Inf.

upper

upper limit of the support of f, default Inf.

Value

A number corresponding to the numerical value of the area between a density function and a kernel estimate.

Details

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.

See Also

density.reflected, dgeometric.test, inverse random.function, support.facto and density

Examples

Run this code
# NOT RUN {
## 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)
# }

Run the code above in your browser using DataLab