findCols
From classInt v0.4-3
by Roger Bivand
extract classes from classInterval object
This helper function is a wrapper for findInterval
to extract classes from a "classInterval" object
- Keywords
- spatial
Usage
findCols(clI)
Arguments
- clI
a "classIntervals" object
Value
an integer vector of class indices
See Also
Examples
# NOT RUN {
if (!require("spData", quietly=TRUE)) {
message("spData package needed for examples")
run <- FALSE
} else {
run <- TRUE
}
if (run) {
data(jenks71, package="spData")
fix5 <- classIntervals(jenks71$jenks71, n=5, style="fixed",
fixedBreaks=c(15.57, 25, 50, 75, 100, 155.30))
print(fix5)
}
if (run) {
print(findCols(fix5))
}
# }
Community examples
Looks like there are no examples yet.