pdensity {exams.forge} | R Documentation |
Density Function
Description
Creates a linear (power=1
) or constant (power=0
) density function in a interval
[a, b]
where
a
and b
are sampled from x
. It samples size
elements without replacement and computes
the value of the distribution function.
Usage
pdensity(x, size = 3, power = 1, tol = 1e-06)
sample_density(x, size = 3, power = 1, tol = 1e-06)
Arguments
x |
numeric: range of density with |
size |
numeric: number of elements to be sampled (without replacement) from x |
power |
numeric: constant or linear density function |
tol |
numeric: disallow for density coefficients near zero (default: |
Value
A list with:
-
a
the minimum of the interval -
i
the maximum of the interval -
x
thesize
sampled values -
fx
the distribution function atx
-
pcoeff
a polynomial (intercept = first value) -
qcoeff
indefinite integral of the polynomial (intercept = first value) -
pint
result of theintegral(pcoeff, c(a,b), 0:2)
Examples
pdensity(-5:5)
pdensity(-5:5, power=1)