Learn R Programming

timeSeries (version 4021.104)

na.contiguous: Find Longest Contiguous Stretch of non-NAs

Description

Find the longest consecutive stretch of non-missing values in a timeSeries object. (In the event of a tie, the first such stretch.)

Usage

# S4 method for timeSeries
na.contiguous(object, ...)

Value

A timeSeries object without missing values.

Arguments

object

a timeSeries object.

...

further arguments passed to or from other methods.

Examples

Run this code
## Dummy timeSeries with NAs entries
   data <- matrix(sample(c(1:20, rep(NA,4))), ncol = 2)
   s <- timeSeries(data, timeCalendar())
   
## Find the longest consecutive non-missing values
   na.contiguous(s)

Run the code above in your browser using DataLab