Description Usage Arguments Details Value Examples
View source: R/hermite_estimator_univar.R
This method calculates the probability density values at a vector of x values using the hermite_estimator_univar object (this).
1 2 |
this |
A hermite_estimator_univar object. |
x |
A numeric vector. Values at which to estimate the probability density. |
clipped |
A boolean value. This value determines whether probability densities are clipped to be bigger than zero. |
accelerate_series |
A boolean value. This value determines whether Hermite series acceleration is applied. |
The object must be updated with observations prior to the use of the method.
A numeric vector of probability density values.
1 2 3 | hermite_est <- hermite_estimator_univar(N = 10, standardize = TRUE)
hermite_est <- update_batch(hermite_est, rnorm(30))
pdf_est <- dens(hermite_est, c(0, 0.5, 1))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.