create_bins {Distance} | R Documentation |
Create bins from a set of binned distances and a set of cutpoints.
Description
This is an internal routine and shouldn't be necessary in normal analyses.
Usage
create_bins(data, cutpoints)
Arguments
data |
|
cutpoints |
vector of cutpoints for the bins |
Value
argument data
with two extra columns distbegin
and
distend
.
Author(s)
David L. Miller
Examples
## Not run:
library(Distance)
data(minke)
# put the minke data into bins 0-1, 1-2, 2-3 km
minke_cuts <- create_bins(minke[!is.na(minke$distance),], c(0,1,2,3))
## End(Not run)
[Package Distance version 1.0.9 Index]