Learn R Programming

quantmod (version 0.3-1)

period.max: Calculate Max By Period

Description

Calculate a maximum for each period of INDEX. Essentially a rolling application of maximum over a series of non-overlapping sections.

Usage

period.max(x, INDEX)

Arguments

x
a univariate data object
INDEX
a vector of breakpoints to calculate maximum on

Value

  • A numeric vector of maximums per period.

Details

Used to calculate a maximum per period given an arbitrary index of sections to be calculated over. This is an optimized function for maximum. There are additionally optimized versions for min, sum, and prod.

See Also

period.apply, period.sum, period.min, period.prod

Examples

Run this code
period.max(c(1,1,4,2,2,6,7,8,-1,20),c(0,3,5,8,10))

Run the code above in your browser using DataLab