mapColorQual: Function: Maps a qualitative theme for a maximum of 12...

Description Usage Arguments Details Value Author(s) Examples

View source: R/mapColorQual.R

Description

mapColorQual generates a map of a qualitative variable

Usage

1
2
mapColorQual(var.name, shape, map.title="", legend.title=deparse(substitute(var.name)),
                    legend.pos="bottomleft", legend.cex=1, add.to.map=FALSE)

Arguments

var.name

A factor, perhaps with NA's, to be mapped with a maximum of 12 categories. If the factor is in a data-frame, then the data-frame must be explicitly referred to, e.g., df$var

shape

An existing spatial polygon or spatial polygon data-frame

map.title

Character string with map title

legend.title

Character string with legend title (default=var.name)

legend.pos

Location of legend in the map frame (default="bottomleft")

legend.cex

Relative font size of the legend

add.to.map

Logical to start a new map frame if FALSE or overlay onto an existing map frame if TRUE

Details

The function mapColorQual maps a categorical variable with a set of distinct colors. A legend is generated. The maximum number of valid factor levels should not exceed 12. NA's are permitted.

Value

NULL

Author(s)

Michael Tiefelsdorf <tiefelsdorf@utdallas.edu>

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
library(maptools)
validTractShp <- tractShp[!is.na(tractShp$BUYPOW), ]         # Remove 2 tracts with NA's
mapColorQual(validTractShp$CITYPERI, validTractShp,
             map.title="Cities and Peripherie in Dallas County",
             legend.title="Regions")

mapColorRamp(validTractShp$bad1500D, validTractShp, breaks=9,
             map.title="Density of Convenience Stores in Dallas County\nbw=1500 meters",
             legend.title="Junk Food")

hist(tractShp$LRRmedD)
mapBiPolar(validTractShp$LRRmedD, validTractShp, break.value=0,
           neg.breaks=5, pos.breaks=5,
           map.title="LRR: log(f(junk food),f(healthy food))\nbw=medium",
           legend.title="log relative risk")

TexMix documentation built on March 1, 2020, 5:10 p.m.