cov_estim_wrapper | R Documentation |
Estimates the covariance matrix of a dataset according to the user-defined function.
cov_estim_wrapper(data, est_func, res_all = FALSE, ...)
data |
an nxp data matrix. |
est_func |
an estimation function. |
res_all |
a logical, defining the return object. If FALSE, only the estimated covariance matrix is returned. If TRUE, a list with two entries is returned. The first entry is the estimated covariance matrix. The second entry is the estimation specific (tuning) parameter. Default value is FALSE. |
... |
additional parameters, parsed to est_func |
a list with the following entries
a pxp estimated covariance matrix.
an estimation specific (tuning) parameter.
data(rets_m)
sigma_ml <- cov_estim_wrapper(rets_m, est_func = cov_estim_ml)[[1]]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.