| streaklog | R Documentation | 
The function returns where the continuous streaks start and how long they are, which can be used for efficient and flexible subsetting.
streaklog(x)
whichmaxstreak(x, which = -1)
| x | ( | 
| which | 
 | 
The output list of streaklog contains the following elements:
starts: the indices where the streaks start.
streaks: the lengths of the individual streaks (number of values).
runs: the number of streaks.
The function whichmaxstreak() will return the indices of those values that are in the longest continuous streak.
A list (streaklog) or a numeric vector (whichmaxstreak).
# generate a sequence of values
  b<-40:1
# add some gaps
  b[c(1:4, 15, 19, 23:27)]  <- NA
# the functions
  streaklog(b)
  whichmaxstreak(b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.