Center of Indexes
Divide a given range of index into two of exact halves.
midpoint(x)
x |
range of index. |
A list of two numeric vectors is returned.
[[1]] |
a range of index for the lower half |
[[2]] |
a range of index for the higher half |
Lengths of the two halves are exactly same. If the parent range has an odd length, the exact center index is used both at the end of the lower half and at the start of the higher half.
Shinichiro Tomizono
Quantiles: median, quartiles, octiles, hexadeciles, ... http://tomizonor.wordpress.com/2013/04/28/quantiles-octiles/
midpoint(c(2,8)) # results are shown below. # [[1]] # [1] 2 5 # # [[2]] # [1] 5 8 midpoint(c(2,9)) # results are shown below. # [[1]] # [1] 2 5 # # [[2]] # [1] 6 9
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.