Learn R Programming

xts (version 0.14.1)

nseconds: Number of Periods in Data

Description

Calculate the number of specified periods in a given time series like data object.

Usage

nseconds(x)

nminutes(x)

nhours(x)

ndays(x)

nweeks(x)

nmonths(x)

nquarters(x)

nyears(x)

Value

The number of respective periods in x.

Arguments

x

A time-based object.

Author

Jeffrey A. Ryan

Details

Essentially a wrapper to endpoints() with the appropriate period specified. The result is the number of endpoints found.

As a compromise between simplicity and accuracy, the results will always round up to the nearest complete period. Subtract 1 from the result to get the completed periods.

For finer grain detail one should call the higher frequency functions.

An alternative summary can be found with periodicity(x) and unclass(periodicity(x)).

See Also

endpoints()

Examples

Run this code

if (FALSE) {
getSymbols("QQQQ")

ndays(QQQQ)
nweeks(QQQQ)
}

Run the code above in your browser using DataLab