powered by
The values of a series that are absolute greater than min and/or max are capped to these specified values.
min
max
capser(y, min, max)
An object of the same class as y, containing the truncated series.
y
Objects of classes: numeric, matrix, data.frame, ts, mts, and timeSeries are supported.
Numeric, minimum value for the series.
Numeric, maximim value for the series.
The calculation is applied per column of the data.frame and only if all columns are numeric.
The calculation is applied per column of the matrix.
The calculation is applied per column of the mts object. The attributes are preserved and an object of the same class is returned.
Calculation of the es trend.
The calculation is applied per column of the timeSeries object and an object of the same class is returned.
Calculation of the es trend. The attributes are preserved and an object of the same class is returned.
Bernhard Pfaff
trdbilson, trdbinary, trdes, trdhp, trdsma, trdwma
trdbilson
trdbinary
trdes
trdhp
trdsma
trdwma
data(StockIndex) y <- StockIndex[, "SP500"] cs <- capser(y, min = 100, max = 200) head(cs)
Run the code above in your browser using DataLab