AttributeSpace {raptr} | R Documentation |
Create new AttributeSpace object
Description
This function creates a new AttributeSpace
object.
Usage
AttributeSpace(planning.unit.points, demand.points, species)
Arguments
planning.unit.points |
|
demand.points |
|
species |
|
Value
A new AttributeSpace
object.
See Also
DemandPoints, PlanningUnitPoints.
Examples
## Not run:
space <- AttributeSpace(
PlanningUnitPoints(
matrix(rnorm(100), ncol = 2),
seq_len(50)
),
DemandPoints(
matrix(rnorm(100), ncol = 2),
runif(50)
),
species = 1L
)
## End(Not run)
[Package raptr version 1.0.1 Index]