subsequence: Identify Sequences in a Vector

Description Usage Arguments Author(s) References See Also Examples

View source: R/subsequence.R

Description

The subsequence function is like the inverse of rep, and is somewhat related to rle. It detects the sequence in a vector and returns the period of the sequence, the actual sequence, the number of times the sequence is repeated, and optionally, a "Groups" vector the same length as the input vector that can be used as a grouping variable.

Usage

1
subsequence(data, groups = FALSE)

Arguments

data

The input vector

groups

Logical. Should the grouping vector be returned?

Author(s)

Ananda Mahto

References

This function was written as an answer to the following Stack Overflow question: http://stackoverflow.com/q/12824931/1270695

See Also

rep, rle,

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Some sample data
s1a <- rep(c(1, 2, 3), 3)
s1b <- c(s1a, 1)
s2 <- rep(c(1, 2, 3), 50)
s3 <- c(1, 2, 3, 4, 2, 3, 4, 1, 2, 3, 4, 2, 3, 4)
set.seed(1)
s4 <- rep(sample(300, 15), 5)

subsequence(s1a)
## Note the creation of a grouping variable
subsequence(s1b, groups = TRUE)
subsequence(s2)
subsequence(s3)
subsequence(s4)

mrdwab/mrdwabmisc documentation built on May 23, 2019, 7:15 a.m.