rollingMax | R Documentation |
The rolling maximum value along a series of data is computed.
rollingMax(mydata, length = 24)
mydata |
A vector of data |
length |
The length of data subset where the maximum values has to be picked. The value must be greater or equal than 3. |
It computes the maximum value centred along a subset of data.
A numeric vector of the same length as mydata
.
# Compute rolling max along 24 hours on hourly time series
data(airquality)
solar.R.24 <- rollingMax(mydata = airquality$Solar.R, length = 24)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.