durations | R Documentation |
Computes durations from an object of class "timeSeries"
.
durations(x, trim = FALSE, units = c("secs", "mins", "hours", "days"))
x |
an object of class |
trim |
a logical value. By default |
units |
a character value or vector which allows to set the units in which the durations are measured. By default durations are measured in seconds. |
Durations measure how long it takes until we get the next record in a
timesSeries
object. We return a time series in which for each
time stamp we get the length of the period from when we got the last
record. This period is measured in length specified by the argument
units
, for daily data use units="days"
.
an object of class "timeSeries"
## Compute Durations in days for the MSFT Sereries -
head(durations(MSFT, units = "days"))
head(durations(MSFT, trim = TRUE, units = "days"))
## The same in hours -
head(durations(MSFT, trim = TRUE, units = "hours"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.