subset.popn | R Documentation |
Retain selected rows of a popn object.
## S3 method for class 'popn'
subset(x, subset = NULL, sessions = NULL, poly = NULL,
poly.habitat = TRUE, keep.poly = TRUE, renumber = FALSE, ...)
x |
|
subset |
vector to subscript the rows of |
sessions |
vector to subscript sessions if |
poly |
bounding polygon (see Details) |
poly.habitat |
logical for whether poly represents habitat or its inverse (non-habitat) |
keep.poly |
logical; if TRUE any bounding polygon is saved as the attribute ‘polygon’ |
renumber |
logical for whether to renumber rows in output |
... |
arguments passed to other functions |
The subscripts in subset
may be of type integer, character or
logical as described in Extract
. By default, all rows are
retained.
In the case of a multi-session popn object (a list of populations),
subset
may be a list with one component for the subscripts in
each new session.
If poly
is specified, points outside poly
are
dropped. poly
may be one of the types descrbed in
boundarytoSF
.
An object of class popn
with only the requested subset of rows.
Subsetting is applied to the covariates
attribute if this is
present. Attributes ‘Ndist’ and ‘model2D’ are set to NULL.
popn
temppop <- sim.popn (D = 10, expand.grid(x = c(0,100), y =
c(0,100)), buffer = 50)
## 50% binomial sample of simulated population
temppops <- subset(temppop, runif(nrow(temppop)) < 0.5)
plot(temppop)
plot(temppops, add = TRUE, pch = 16)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.