Learn R Programming

seg (version 0.4-1)

SegDecomp-class: Class Decomp

Description

A class to hold results from deseg.

Arguments

Objects from the Class

Objects can be created by calls to deseg, or the constructor SegDecomp.

See Also

SegDecomp, deseg

Examples

Run this code
# creates 100 regularly-spaced data points and 3 population groups
xy <- expand.grid(1:10, 1:10)
colnames(xy) <- c("x", "y")
pop <- matrix(runif(300), ncol = 3)
colnames(pop) <- LETTERS[1:3]

# randomly-generated index values
d <- runif(2, 0, 0.4)
d <- c(d, 0.9 - sum(d))

# constructs an object of class 'SegDecomp'
v <- SegDecomp(d = d, coords = as.matrix(xy), data = pop)
print(v)

# retrieves the index values
as.vector(v) # same as: as(v, "vector")

# displays the kernel estimates in the slot 'data'
spplot(v, col.regions = heat.colors(20))

Run the code above in your browser using DataLab