powered by
Cluster ranges which are implemented as 2 equal-length numeric vectors.
cluster_interval(starts, ends, max_distance = 0L)
A numeric vector that defines the starts of each interval
A numeric vector that defines the ends of each interval
The maximum distance up to which intervals are still considered to be the same cluster. Default: 0.
# NOT RUN { starts <- c(50, 100, 120) ends <- c(75, 130, 150) j <- cluster_interval(starts, ends) j == c(0,1,1) # }
Run the code above in your browser using DataLab