Learn R Programming

raptr (version 0.0.3)

AttributeSpaces: Create new AttributeSpaces object

Description

This function creates a new AttributeSpaces object.

Usage

AttributeSpaces(spaces, name)

Arguments

spaces

list of AttributeSpace objects for different species.

name

character name to identify the attribute space.

See Also

AttributeSpace-class.

Examples

Run this code
# 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
)
spaces1 <- AttributeSpaces(list(space1, space2), 'test')
# }

Run the code above in your browser using DataLab