seqToIntervals | R Documentation |
Get all sequences of contiguous values in a vector of integers.
seqToIntervals(x)
x |
A vector of integers, for example, representing
indices. |
A matrix with one row for each sequence, and two columns containing the start and the end of the sequence, respectively.
Chris Jackson <chris.jackson@mrc-bsu.cam.ac.uk>. Thanks to Tobias Verbeke for the suggestion.
sectioned.density
seqToIntervals(1:10) # [1 10]
seqToIntervals(c(1:10, 15:18, 20)) # [1 10; 15 18; 20 20]
# vectorised, so efficient for large vectors x
seqToIntervals(sample(1:1000000, size=999990))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.