Type: | Package |
Title: | Geographic Display of Survey Data Statistics |
Version: | 3.1 |
Date: | 2023-11-6 |
Description: | Automated calculation and visualization of survey data statistics on a color-coded (choropleth) map. |
Depends: | R (≥ 3.0.2), survey, lattice |
License: | GPL-2 | GPL-3 [expanded from: GPL (≥ 2)] |
Imports: | RColorBrewer, Hmisc, classInt, sp, sf, colorspace, reshape2, ttutils |
NeedsCompilation: | no |
Packaged: | 2023-11-09 16:24:12 UTC; Sam Ackerman |
Author: | Samuel Ackerman [aut, cre] |
Maintainer: | Samuel Ackerman <smackrmn@gmail.com> |
Repository: | CRAN |
Date/Publication: | 2023-11-10 07:20:02 UTC |
Geographic display of survey data statistics
Description
mapStats
will calculate statistics (mean, total, quantiles, variance, and standard deviation) for survey data
variables, by geography level (e.g., state, county) and optional observation-level factor variables
(e.g., survey year, eduction level, race). The statistics for each variable
are then plotted on a shapefile with color codes (choropleth map). Easy control over visual
elements such as cell censoring, color palettes, titles, plot layout, and variable renaming is enabled; see included demo(map_examples)
for a
full overview of options. Statistics may be calculated either weighted or unweighted.
The function calcStats
, which is called by mapStats
, can also be used on its own to calculate variable statistics.
Details
Package: | mapStats |
Type: | Package |
Version: | 3.1 |
Date: | 2023-11-6 |
License: | GPL (>=2) |
Author(s)
Samuel Ackerman Maintainer: Samuel Ackerman <smackrmn@gmail.com>
Adjust class boundaries to protect from rounding errors
Description
When using classIntervals
to compute classes, occasionally there are rounding errors so that
when the data is plotted and the class breaks are used for colors, for instance, the rounding error may cause a value to
not be plotted with the right color, or to not be plotted at all. For this reason, we add a small value to each of the
break points to accomodate a possible rounding error. This correction is negligible and should not affect plotting.
When both the variable values and all the interval breaks are integer-valued (e.g. for sums of integer values),
jiggleClass adjusts the interval breaks to be at the midpoints between interval endpoints.
Additionally, in case ngroups
is high, resulting in empty groups (even though the number of unique values is higher than ngroups
),
the function also eliminates the empty groups as part of the adjustment above. In case there is such a change, the palettes are also changed.
Usage
jiggleClass(x)
Arguments
x |
an object of class |
Value
an object of class classIntervals
.
Examples
y <- 100*rnorm(50)
#compute class intervals using either right or left interval closure
class_list_right <- classInt::classIntervals(var=y, n=12, intervalClosure="right")
class_list_right$brks
class_list_left <- classInt::classIntervals(var=y, n=12, intervalClosure="left")
class_list_left$brks
#there should be a slight difference now between class breaks from before, but should
#have same number of observations per interval as before, and for both left and right closure
jiggleClass(x=class_list_right)
jiggleClass(x=class_list_left)
#example with discrete data, 7 groups but 9 unique values.
#classIntervals generates some empty intervals, so jiggleClass eliminates them and adjusts breaks
#in this example, with integer values, right/left closure matters more, and so the results
#will differ slightly depending on which is chosen
# here, both the observed values and the breaks under right and left are integers
y <- c(1, 1, 1, 1, 2, 3, 6, 7, 8, 9, 10, 10, 10, 10, 11)
class_list_right <- classInt::classIntervals(y, 7, intervalClosure="right")
class_list_right
#style: quantile
# one of 28 possible partitions of this variable into 7 classes
# [1,1] (1,2] (2,6] (6,8] (8,10] (10,10] (10,11]
# 4 1 2 2 1 4 1
class_list_left <- classInt::classIntervals(y, 7, intervalClosure="left")
class_list_left
#style: quantile
# one of 28 possible partitions of this variable into 7 classes
# [1,1) [1,2) [2,6) [6,8) [8,10) [10,10) [10,11]
# 0 4 2 2 2 0 5
#number of groups falls now for left closure, from 7 to 5, in this example
jiggleClass(x=class_list_right)
#style: quantile
# one of 28 possible partitions of this variable into 7 classes
# [0.5,1.5] (1.5,2.5] (2.5,6.5] (6.5,8.5] (8.5,9.5] (9.5,10.5] (10.5,11.5]
# 4 1 2 2 1 4 1
jiggleClass(x=class_list_left)
#style: quantile
# one of 70 possible partitions of this variable into 5 classes
# [0.5,1.5) [1.5,4.5) [4.5,7.5) [7.5,9.5) [9.5,11.5]
# 4 2 2 2 5
Calculate and plot survey statistics
Description
mapStats
computes statistics and quantiles of survey variable(s), with optional class variables, and displays them on a color-coded map.
It calls function calcStats
which is also usable outside of mapStats
.
Usage
mapStats(d = NULL, main.var, stat = c("mean", "quantile"), quantiles = c(0.5, 0.75),
wt.var = NULL, wt.label = TRUE, d.geo.var, by.var = NULL,
map.file = NULL, map.geo.var = d.geo.var, makeplot = TRUE, ngroups = 4,
separate = 1 , cell.min = 0, paletteName = "Reds", colorVec = NULL,
map.label = TRUE, map.label.names = map.geo.var, cex.label = 0.8,
col.label = "black", titles = NULL, cex.title = 1, var.pretty = main.var,
geo.pretty = map.geo.var, by.pretty = by.var, as.table = TRUE,
sp_layout.pars = list(), between = list(y = 1), horizontal.fill = TRUE,
plotbyvar = ifelse(separate == 1 & length(main.var) > 1, FALSE, TRUE),
num.row = 1, num.col = 1, ...)
calcStats(d, main.var, d.geo.var, stat = c("mean", "quantile"), quantiles = c(0.5, 0.75),
by.var = NULL, wt.var = NULL, cell.min = 0)
Arguments
d |
a data frame containing the variables to be analyzed. |
main.var |
a vector of character strings of the name of the variables that statistics will be calculated for. Multiple variables are allowed. |
stat |
a character vector of names of statistics to calculate. Valid names are "mean", "total", "quantile", "sd" (standard deviation), and "var" (variance). "Quantile" must be included
for the quantiles specified to be calculated. Statistics are printed in the order given. For instance if |
quantiles |
a numeric vector of quantiles to be calculated for each variable in variable |
wt.var |
a character string of the name of the variable to be used as sample weights in calculating statistics. The default is NULL, meaning unweighted statistics will be calculated. |
wt.label |
logical. Default is TRUE, in which case automatic titles will be followed by the string '(wtd.)' or '(unwtd.)' as appropriate, depending on whether weighted statistics were calculated. If FALSE no label will be added. |
d.geo.var |
a character string specifying the variable name in the dataset that is the geographic unit to calculate statistics by.
When using |
by.var |
a vector of character strings specifying variable names in the dataset |
map.file |
an object of class |
map.geo.var |
a character string of the name of the geographic identifier in the data portion of |
makeplot |
logical. Default is TRUE; if FALSE, plots will not be drawn. This option can be used to calculate statistics without an available shapefile. |
ngroups |
a numeric vector of the number of levels for color plotting of variable statistics. If more than one number is specified, |
separate |
numeric (or logical TRUE or FALSE for legacy cases). Accepted values are 0,1,2,3. This parameter controls how plot color breaks are calculated. If |
cell.min |
numeric. Indicates the minimum number of observations in a cell combination of class variables of |
paletteName |
a character vector containing names of color palettes for the |
colorVec |
a list where each element is vector of ordered colors; they should be ordered from light to dark for a sequential palette. These override
the use of |
map.label |
logical. Default is TRUE; if FALSE, names of the geographic regions will not be labeled on the map outputs. |
map.label.names |
a character string naming the vector from the |
cex.label |
numeric. Character expansion for the labels to be printed. |
col.label |
color of the label text to be printed. Default is black. |
titles |
a character string of length equal to the number of statistics to be plotted, in order. Replaces the default plot titles. The default is NULL, in which case the plot titles are automatically generated. See details below. |
cex.title |
numeric. Character expansion for the plot titles. |
var.pretty |
a character string used to name the analysis variables |
geo.pretty |
a character string used to name the geographic variable in the default panel strip labels. The default is to use |
by.pretty |
a character string used to name the by-variables (optional class variables) in the default panel strip labels. The default is to use |
as.table |
logical. Default is TRUE, meaning the panels will be displayed in ascending order of |
sp_layout.pars |
a list. This contains additional parameters to be plotted on each panel. See details section below and explanation of |
between |
list. A |
horizontal.fill |
logical. Default is TRUE, meaning that given the plot arrangement specified with |
plotbyvar |
logical. If TRUE plots will be grouped by variable, otherwise by statistic. |
num.row |
numeric. To print multiple statistics on one page, indicate the number of rows for panel arrangement. Under the default, one statistic is printed per page. |
num.col |
numeric. To print multiple statistics on one page, indicate the number of columns for panel arrangement. Under the default, one statistic is printed per page. |
... |
Further arguments, usually lattice plot arguments. |
Details
paletteName
should contain one or more names of a sequential color palette in R from the RColorBrewer
package. These are:
Blues BuGn BuPu GnBu Greens Greys Oranges OrRd PuBu PuBuGn PuRd Purples RdPu Reds YlGn YlGnBu YlOrBr YlOrRd. The argument ngroups
for this option should contain
values between 3 and 9 since sequential color palettes have at most nine levels. The style
argument from classIntervals
can be included
to change the method for calculating breaks (the default is by quantiles).
The default titles for the plots will be "(stat) of (variable) by (geography)", followed by either "(unwtd.)" or "(wtd.)", as appropriate. Using the wt.label
argument controls the appearance of the weight label in the titles. Providing a value for the titles
argument will override the default titles.
This can be used, for instance, as shown below, to display percentages for a binary variable by calculating the mean of an
indicator variable and specifying titles that indicate the percent is displayed.
If quantiles
are 0 (minimum), 0.50 (median), or 1 (maximum), the statistics in the titles will be named "Minimum", "Median", and "Maximum" instead of "Q0", "Q50" or "Q100".
Parameter separate
affects given values of colorVec
, paletteName
, and ngroups
. Say there are 2 variables and 3 statistics (mean, median, and variance) to calculate for each. If any of the 3 parameters above are of length 1, (e.g. paletteName
="Reds"), these will be used for all plots. If multiple values are given for any of the 3 parameters, these should be done with separate
in mind. For instance, if separate
=0 (same color breaks for all plots), then the first element of each of colorVec
, paletteName
, and ngroups
will be used. If separate
=1 (e.g. all of the means) have the same breaks, then the user may want to specify 3 different color palettes, for example. In this case, if ngroups
=c(3,4,5,6), for instance, only the first 3 values will be used since there are only 3 statistics. If separate
=2, then only up to 2 palettes, for instance, are used. If separate
=3, then up to 6 values for each parameter will be used. See the demo file for examples.
The lattice
layout
argument can be used to control the placement of panels within a graph, especially if multiple plots are done on a page.
sp_layout.pars
must itself be a list, even if its contents are lists also. This allows overplotting of more than one object. For instance, say you had a shapefile
areas
to be colored blue, and a vector of strings labels1
that had x-coordinates xplaces
and y-coordinates yplaces
to overlay on
the plot. Create objects areas_overlay
=
list("sp.polygons", areas, fill="blue")
, and labels_overlay
=
list("panel.text", labels1, xplaces, yplaces)
.
Then set argument sp_layout.pars
=
list(areas_overlay, labels_overlay)
. Even if you only wanted to
overlay with areas
, you would still need to enclose it in another list, for example sp_layout.pars
= list(areas_overlay)
. An example is shown in the demo file.
Value
mapStats
and calcStats
return an object of class "list"
summary.stats |
a list containing the calculated statistics matrices, as well as a frequency count matrix |
with attribute
variable |
the name of the variable |
Note
Please see the included demo file map_examples
for examples on controlling formatting,
coloring, and other customizable options, as well as more examples
Author(s)
Samuel Ackerman
See Also
The survey
package function svyby
is used to calculate variable statistics, and spplot
plots the map.
See the supplied demo map_examples
for a fuller set of examples illustrating the range of parameter options.
Examples
#More complex examples with formatting are shown in the map_examples
#demo for the package
#create synthetic survey dataset from internal function
surveydata <- synthetic_US_dataset()
#load map shapefile
usMap <- sf::as_Spatial(sf::st_read(system.file("shapes/usMap.shp", package="mapStats")[1]))
#Calculate weighted mean of variable income by state and year. Display using red
#sequential color palette with 4 groups. In the titles, rename 'income'
#by 'household income'.
# save result in an object to suppress output
res <- mapStats(d=surveydata, main.var="income", d.geo.var="state", by.var="year",
wt.var="obs_weight", map.file=usMap, stat="mean", ngroups=4,
paletteName="Reds", var.pretty="household income", map.label=TRUE)
#Calculate the weighted mean and 40th and 50th quantiles of the variable income
#by state, survey year, and education. Use three color palettes
res <- mapStats(d=surveydata, main.var="income", d.geo.var="state",
by.var=c("year","educ"), wt.var="obs_weight", map.file=usMap,
stat=c("mean","quantile"), quantiles=c(.4, .5), ngroups=6,
paletteName=c("Reds","Greens","Blues"),
var.pretty="household income", map.label=TRUE, num.col=1,
num.row=2, layout=c(2,1), cex.label=.5)
#To calculate percentages of class variables, create an indicator variable, calculate
#its mean, and override the default titles to say you are calculating the percentage.
#Here we illustrate by calculating the percent of respondents by state that have income
#above $20,000.
res <- mapStats(d=surveydata, main.var="income_ge30k", wt.var="obs_weight",
map.file=usMap, d.geo.var="state", map.geo.var="STATE_ABBR",
paletteName="Reds", stat=c("mean"),
titles="Percent of respondents with income at least $30,000")
#calculating statistics using the functions outside of mapStats
res <- calcStats(d=surveydata, main.var="income", stat="mean",
d.geo.var="state", by.var=c("year", "educ"),
wt.var="obs_weight")
Internal functions for mapStats package
Description
plotStats
creates trellis plot objects that are then printed by print.plotStats
. They are called
internally from within mapStats
. nobsEach
is used by jiggleClass
to
calculate the number of observations in each division. synthetic_US_dataset
generates a synthetic dataset
to be used in examples with the supplied usMap
.
Usage
plotStats(statmats, map.file, d.geo.var, map.geo.var, ngroups, separate, paletteName,
colorVec, map.label, map.label.names, cex.label, col.label, titles, cex.title,
wt.ind = FALSE, wt.label, var.pretty, geo.pretty, by.pretty,
sp_layout.pars, plotbyvar, num.col, ...)
calcQuantiles(...)
nobsEach(divs)
## S3 method for class 'plotStats'
print(x, horizontal.fill = TRUE, num.row = 1, num.col = 1, ...)
synthetic_US_dataset()
Arguments
statmats |
a list object produced by |
map.file |
an object of class |
d.geo.var |
a character string of the name of the variable in the data frame |
map.geo.var |
a character string of the name of the geographic identifier in the data portion of |
ngroups |
a numeric vector of the number of levels for color plotting of variable statistics. If more than one number is specified, |
separate |
logical. Default is TRUE, meaning that class divisions will be calculated separately for each statistic's values. Setting
it to FALSE causes the function to calculate a color key by pooling the values from all the statistics across the by variables.
Generally if you plot multiple statistics on a page with the same color palette, setting |
paletteName |
a character vector containing names of color palettes for the |
colorVec |
a list where each element is vector of ordered colors; they should be ordered from light to dark for a sequential palette. These will override
the use of |
map.label |
logical. Default is TRUE; if FALSE, names of the geographic regions will not be labeled on the map outputs. |
map.label.names |
a character string naming the vector from the |
cex.label |
numeric. Character expansion for the labels to be printed. |
col.label |
color of the label text to be printed. Default is black. |
titles |
a character string of length equal to the number of statistics to be plotted, in order. Replaces the default plot titles. |
cex.title |
numeric. Character expansion for the plot titles. |
wt.ind |
logical. Default is FALSE. If TRUE, weighted statistics were calculated. If |
wt.label |
logical. Default is TRUE, in which case automatic titles will be followed by the string '(wtd.)' or '(unwtd.)' as appropriate, depending on whether weighted statistics were calculated. If FALSE no label will be added. |
var.pretty |
a character string used to name the analysis variable in the default plot titles. The default is to use |
geo.pretty |
a character string used to name the geographic class variable in the default plot titles. The default is to use |
by.pretty |
a vector of character strings used to name the by variables (other than the geographic one) in the default panel strip labels. The default is to use the original variable names in |
sp_layout.pars |
a list. This contains additional parameters to be plotted on each panel. See details section below and explanation of |
plotbyvar |
logical. If TRUE plots will be grouped by variable, otherwise by statistic. |
num.col |
numeric. To print multiple statistics on one page, indicate the number of columns for panel arrangement. Under the default, one statistic is printed per page. |
x |
list. A list produced by |
horizontal.fill |
logical. Default is TRUE, meaning that given the plot arrangement specified with |
num.row |
numeric. To print multiple statistics on one page, indicate the number of rows for panel arrangement. Under the default, one statistic is printed per page. |
divs |
An object of class |
... |
Further arguments, usually lattice plot arguments. |
Value
plotStats |
Returns a list of plot images. Used only internally within function |
calcQuantiles |
Returns a list of |
nobsEach |
Returns a vector of frequency counts of observations in an object of class |
synthetic_US_dataset |
Returns an item of class |
Author(s)
Samuel Ackerman
Shapefile of US state boundaries
Description
Examples are provided using the usMap
shapefile with a synthetic dataset.
Source
https://www.cdc.gov/brfss/gis/gis_maps.htm
Examples
#read the shapefile
#display first five rows of shapefile dataset
#plot the shapefile boundaries
usMap <- sf::as_Spatial(sf::st_read(system.file("shapes/usMap.shp", package="mapStats")[1]))
head(usMap@data)
# plot the outlines of the shapefile only
sp::plot(usMap)
# plot map colored according to one of the variables in @data
sp::spplot(usMap, zcol="A187_1")