assets-outliers: Detection of Outliers in Asset Sets

assets-outliersR Documentation

Detection of Outliers in Asset Sets

Description

Detects multivariate outliers in asset sets.

Usage

assetsOutliers(x, center, cov, ...)

Arguments

x

an object of class timeSeries.

center

a numeric vector, a (robust) estimate of the vector of means of the multivariate time series x.

cov

a numeric matrix, a (robust) estimate of the covariance matrix of the multivariate time series x.

...

optional arguments to be passed.

Value

returns a list with the following entries: the estimate for the location named center, the estimate for the covariance matrix named cov, the estimate for the correlation matrix named cor, the quantile named quantile, the outliers named outliers, and the time series named series.

Author(s)

Moritz Gschwandtner and Peter Filzmoser for the original R code from package "mvoutliers",
Diethelm Wuertz for the Rmetrics port.

References

Wuertz, D., Chalabi, Y., Chen W., Ellis A. (2009); Portfolio Optimization with R/Rmetrics, Rmetrics eBook, Rmetrics Association and Finance Online, Zurich.

Examples

## LPP -
   LPP <- as.timeSeries(data(LPP2005REC))[, 1:6]
   colnames(LPP)
   
## assetsOutliers -
   assetsOutliers(LPP, colMeans(LPP), cov(LPP))

fAssets documentation built on Jan. 14, 2024, 8:24 p.m.