seqToHumanReadable
From R.utils v1.4.2
by Henrik Bengtsson
Gets a short human readable string representation of an vector of indices
Gets a short human readable string representation of an vector of indices.
- Keywords
- attribute
Usage
## S3 method for class 'default':
seqToHumanReadable(idx, delimiter="-", collapse=", ", ...)
Arguments
See Also
Examples
print(seqToHumanReadable(1:10)) # "1-10"
print(seqToHumanReadable(c(1:10, 15:18, 20))) # "1-10, 15-18, 20"
Community examples
Looks like there are no examples yet.