LogDensity
Documentation for LogDensity.
LogDensity.logdensity
— Method(logf, β) = logdensity( X, x, h; various optional arguments )
Computes estimates of the log density and its derivatives of the data
in the vector X evaluated at the elements in the vector x, using the
bandwidth h. Returns a tuple ( logf, β ) where logf is a vector whose
elements correspond to the evaluation points and β a matrix with rows
corresponding to the evaluation points and columns to the derivatives;
this is a matrix even if S = 1.
Mandatory arguments
X::Vector{T}
: vector of datax::Vector{T}
: vector of evaluation pointsh::T
: bandwidth
T is a floating point type
Optional arguments
g::Function=g
: the function g to be used (see Pinkse and Schurter)dg::Function=dg
: its derivativeS::Int=1
: the number of derivatives to be computedminx::T=0.0
: the left hand side of the supportmaxx::T=Inf
: the right hand side of the supportlogf::Bool=true
: whether the log density itself should be computedmz::Function=LogDensity.epanechnikov
: the kernel to be used for the log density itselfanal::Bool=true
: whether to run many sanity checks
Other choices for the kernel are: LogDensity.quartic LogDensity.gaussian LogDensity.triweight LogDensity.uniform LogDensity.cosinus
LogDensity.logdensityderivatives
— Methodβ = logdensityderivatives( X, x, h; various optional arguments )
Computes estimates of the derivatives of the log density of the data
in the vector X evaluated at the elements in the vector x, using the
bandwidth h. Returns a matrix β with rows corresponding to the
evaluation points and columns to the derivatives. This is a matrix
even if S = 1.
Mandatory arguments
X::Vector{T}
: vector of datax::Vector{T}
: vector of evaluation pointsh::T
: bandwidth
T is a floating point type
Optional arguments
g::Function=g
: the function g to be used (see Pinkse and Schurter)dg::Function=dg
: its derivativeS::Int=1
: the number of derivatives to be computedminx::T=0.0
: the left hand side of the supportmaxx::T=Inf
: the right hand side of the supportanal::Bool=true
: whether to run many sanity checks