sigma_estim_wrapper: Wrapper Function for Covariance Estimation I

Description Usage Arguments Value Examples

View source: R/cov-estim.R

Description

Estimates the covariance matrix of a dataset according to the user-defined function.

Usage

1
sigma_estim_wrapper(data, est_func, res_all = FALSE, ...)

Arguments

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

Value

a list with the following entries

Examples

1
2
3
data(sp200)
sp_rets <- sp200[,-1]
sigma_ml <- sigma_estim_wrapper(sp_rets, est_func=sigma_estim_ml)[[1]]

antshi/CovEstim documentation built on Nov. 13, 2020, 2:25 p.m.