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