3 Visualization
Data visualization is integral to understanding both data and models. Computational statistics and data science sometimes focus on models or resulting predictions from the models. But there is no doubt that the structure and format of the data are the key to whether or not a model is appropriate or good. A good data analyst will always spend a lot of time and effort on exploratory data analysis, much of which includes making as many visualizations of the data as possible.
Depending on the introductory (or other) statistics classes you’ve had, your instructor may have focused more or less on visualizations in class. They (I) may have even said something like making visualizations are incredibly important to the entire data analysis process. But even if you buy the perspective, why is it that we don’t see more good graphics in our analyses? Andrew Gelman (Gelman 2011) responds by stating, “Good statistical graphics are hard to do, much harder than running regressions and making tables.” Our goal will be to create graphics and visualizations that convey statistical information.
Nolan (Nolan and Perrett 2016) describes three important ways that graphics can be used to convey statistical information. The “guiding principles” will be used as a way of evaluating others’ figures as well as a metric for creating our own visualizations to help with statistical analysis.
- Make the data stand out
The important idea here is to find anything unusual in the data. Are there patterns? Outliers? What are the bounds of the variables? How should the axes be scaled? Are transformations warranted?
- Facilitate comparison
The second item allows us to consider the research questions at hand. What are the important variables? How do we emphasize them? Which variables should be plotted together? Can they be super-imposed? Does color, plotting character, size of plot character help to bring out the important relationships? Be aware of over plotting and issues of color blindness. http://colorbrewer2.org/
- Add information
Plots should also add context to the comparison. Figure legends, axes scales, and reference markers (e.g., a line at \(y=x\)) go a long way toward helping the reader understand your message. Captions should be self-contained (and not assume the user has also read your text) and descriptive; they should summarize the content of the figure and the conclusion related to the message you want to convey.
Randy Pruim asks the following question to decide whether or not a plot is good: Does my plot make the comparisons I am interested in…
- easily? and
- accurately?
Consider adding alt text to allow screen readers to parse the image. The DataViz Society/Nightingale by way of Amy Cesal has an article on writing good alt text for plots/graphs, Writing Alt Text for Data Visualization.
3.1 Thoughts on Plotting
3.1.1 Advice
- Basic plotting
- Avoid having other graph elements interfere with data
- Use visually prominent symbols
- Avoid over-plotting (One way to avoid over plotting: Jitter the values)
- Different values of data may obscure each other
- Include all or nearly all of the data
- Fill data region
- Eliminate superfluous material
- Chart junk & stuff that adds no meaning, e.g. butterflies on top of barplots, background images
- Extra tick marks and grid lines
- Unnecessary text and arrows
- Decimal places beyond the measurement error or the level of difference
- Facilitate Comparisons
- Put juxtaposed plots on same scale
- Make it easy to distinguish elements of superposed plots (e.g. color)
- Emphasizes the important difference
- Comparison: volume, area, height (be careful, volume can seem bigger than you mean it to)
- Choosing the Scale (n.b., some of the principles may go counter to one another, use your judgment.)
- Keep scales on x and y axes the same for both plots to facilitate the comparison
- Zoom in to focus on the region that contains the bulk of the data
- Keep the scale the same throughout the plot (i.e. don’t change it mid-axis)
- Origin need not be on the scale
- Choose a scale that improves resolution
- Avoid jiggling the baseline
- How to make a plot information rich
- Describe what you see in the caption
- Add context with reference markers (lines and points) including text
- Add legends and labels
- Use color and plotting symbols to add more information
- Plot the same thing more than once in different ways/scales
- Reduce clutter
- Captions should
- Be comprehensive
- Self-contained
- Describe what has been graphed
- Draw attention to important features
- Describe conclusions drawn from graph
- Good Plot Making Practice
- Put major conclusions in graphical form
- Provide reference information
- Proof read for clarity and consistency
- Graphing is an iterative process
- Multiplicity is OK, i.e. two plots of the same variable may provide different messages
- Make plots data rich
Creating a statistical graphic is an iterative process of discovery and fine tuning. We try to model the process of creating visualizations in the course by dedicating class time to an iterative creation of a plot. We begin either with a plot that screams for correction, and we transform it step-by-step, always thinking about the goal of a graph that is data rich and presents a clear vision of the important features of the data.
3.1.1.1 Fonts Matter
At RStudio::conf 2020, The Glamour of Graphics, Will Chase makes some very important points about how and why making good graphics matters. The talk might be summarized by the plot below: fonts matter.
3.2 Deconstructing a graph
3.2.1 The Grammar of Graphics (gg
)
Yau (2013) and Wickham (2014) have come up with a taxonomy and a grammar for thinking about the parts of a figure just like we conceptualize the parts of a body or the parts of a sentence.
One great way of thinking of the new process: it is not longer necessary to talk about the name of the graph (e.g., boxplot). Instead we now think in glyphs (geoms), and so we can put whatever we want on the plot. Note also that the transition leads you from a passive consumer (I need to make plot XXX because everyone else does, so I just plug in the data) into an active participant (what do I want my data to say? and how can I put that information onto my graphic?)
The most important questions you can ask with respect to creating figures are:
- What do we want R to do? (What is the goal?)
- What does R need to know?
Yau (2013) gives us nine visual cues, and Wickham (2014) translates them into a language using ggplot2
. (The items below are from Baumer, Kaplan, and Horton (2021), chapter 2.)
Visual Cues: the aspects of the figure where we should focus.
Position (numerical) where in relation to other things?
Length (numerical) how big (in one dimension)?
Angle (numerical) how wide? parallel to something else?
Direction (numerical) at what slope? In a time series, going up or down?
Shape (categorical) belonging to what group?
Area (numerical) how big (in two dimensions)? Beware of improper scaling!
Volume (numerical) how big (in three dimensions)? Beware of improper scaling!
Shade (either) to what extent? how severely?
Color (either) to what extent? how severely? Beware of red/green color blindness.Coordinate System: rectangular, polar, geographic, etc.
Scale: numeric (linear? logarithmic?), categorical (ordered?), time
Context: in comparison to what (think back to ideas from Tufte)
Cues Together
What are the visual cues on the plot?
- position?
- length?
- shape?
- area/volume?
- shade/color?
- coordinate System?
- scale?
3.2.1.1 The grammar of graphics in ggplot2
geom: the geometric “shape” used to display data
- bar, point, line, ribbon, text, etc.
aesthetic: an attribute controlling how geom is displayed with respect to variables
- x position, y position, color, fill, shape, size, etc.
scale: adjust information in the aesthetic to map onto the plot
- particular assignment of colors, shapes, sizes, etc.; making axes continuous or constrained to a particular range of values.
guide: helps user convert visual data back into raw data (legends, axes)
stat: a transformation applied to data before geom gets it
- example: histograms work on binned data
3.2.2 ggplot2
In ggplot2
, an aesthetic refers to a mapping between a variable and the information it conveys on the plot. Further information about plotting and visualizing information is given in chapter 2 (Data visualization) of Baumer, Kaplan, and Horton (2021). Much of the data in the presentation represents all births from 1978 in the US: the date, the day of the year, and the number of births.
Goals
What I will try to do
give a tour of
ggplot2
explain how to think about plots the
ggplot2
wayprepare/encourage you to learn more later
What I can’t do in one session
show every bell and whistle
make you an expert at using
ggplot2
Getting help
One of the best ways to get started with ggplot is to google what you want to do with the word ggplot. Then look through the images that come up. More often than not, the associated code is there. There are also ggplot galleries of images, one of them is here: https://plot.ly/ggplot2/
ggplot2
cheat sheet: https://www.rstudio.com/wp-content/uploads/2015/03/ggplot2-cheatsheet.pdfLook at the end of the presentation. More help options there.
require(mosaic)
require(lubridate) # package for working with dates
data(Births78) # restore fresh version of Births78
head(Births78, 3)
## date births wday year month day_of_year day_of_month day_of_week
## 1 1978-01-01 7701 Sun 1978 1 1 1 1
## 2 1978-01-02 7527 Mon 1978 1 2 2 2
## 3 1978-01-03 8825 Tue 1978 1 3 3 3
How can we make the plot?
Two Questions:
What do we want R to do? (What is the goal?)
-
What does R need to know?
data source:
Births78
-
aesthetics:
date -> x
births -> y
- points (!)
-
Goal: scatterplot = a plot with points
ggplot() + geom_point()
-
What does R need to know?
data source:
data = Births78
aesthetics:
aes(x = date, y = births)
Adding day of week to the data set
The wday()
function in the lubridate
package computes the day of the week from a date.
ggplot(data=Births78) +
geom_point(aes(x=date, y=births, color=wday))+
ggtitle("US Births in 1978")
How can we make the plot?
Now we have two layers, one with points and one with lines
ggplot(data=Births78,
aes(x=date, y=births, color=wday)) +
geom_point() + geom_line()+
ggtitle("US Births in 1978")
The layers are placed one on top of the other: the points are below and the lines are above.
data
andaes
specified inggplot()
affect all geoms
What does adding the color argument do?
Births78 %>%
ggplot(aes(x=date, y=births, color="navy")) +
geom_point() +
ggtitle("US Births in 1978")
Because there is no variable, we have mapped the color aesthetic to a new variable with only one value (“navy”). So all the dots get set to the same color, but it’s not navy.
Setting vs. Mapping
If we want to set the color to be navy for all of the dots, we do it outside the aesthetic, without a dataset variable:
Births78 %>%
ggplot(aes(x=date, y=births)) + # map x & y
geom_point(color = "navy") + # set color
ggtitle("US Births in 1978")
- Note that
color = "navy"
is now outside of the aesthetics list. That’s howggplot2
distinguishes between mapping and setting.
How can we make the plot?
Setting vs. Mapping (again)
Information gets passed to the plot via:
map
the variable information inside the aes (aesthetic) commandset
the non-variable information outside the aes (aesthetic) command
Other geoms
apropos("^geom_")
[1] "geom_abline" "geom_area"
[3] "geom_ash" "geom_bar"
[5] "geom_barh" "geom_bin_2d"
[7] "geom_bin2d" "geom_blank"
[9] "geom_boxplot" "geom_boxploth"
[11] "geom_col" "geom_colh"
[13] "geom_contour" "geom_contour_filled"
[15] "geom_count" "geom_crossbar"
[17] "geom_crossbarh" "geom_curve"
[19] "geom_density" "geom_density_2d"
[21] "geom_density_2d_filled" "geom_density_line"
[23] "geom_density_ridges" "geom_density_ridges_gradient"
[25] "geom_density_ridges2" "geom_density2d"
[27] "geom_density2d_filled" "geom_dotplot"
[29] "geom_errorbar" "geom_errorbarh"
[31] "geom_errorbarh" "geom_freqpoly"
[33] "geom_function" "geom_hex"
[35] "geom_histogram" "geom_histogramh"
[37] "geom_hline" "geom_jitter"
[39] "geom_label" "geom_line"
[41] "geom_linerange" "geom_linerangeh"
[43] "geom_lm" "geom_map"
[45] "geom_path" "geom_point"
[47] "geom_pointrange" "geom_pointrangeh"
[49] "geom_polygon" "geom_qq"
[51] "geom_qq_line" "geom_quantile"
[53] "geom_raster" "geom_rect"
[55] "geom_ribbon" "geom_ridgeline"
[57] "geom_ridgeline_gradient" "geom_rug"
[59] "geom_segment" "geom_sf"
[61] "geom_sf_label" "geom_sf_text"
[63] "geom_sina" "geom_smooth"
[65] "geom_spline" "geom_spoke"
[67] "geom_step" "geom_text"
[69] "geom_tile" "geom_violin"
[71] "geom_violinh" "geom_vline"
[73] "geom_vridgeline"
help pages will tell you their aesthetics, default stats, etc.
?geom_area # for example
Let’s try geom_area
Using area does not produce a good plot
- over plotting is hiding much of the data
- extending y-axis to 0 may or may not be desirable.
Side note: what makes a plot good?
Most (all?) graphics are intended to help us make comparisons
- How does something change over time?
- Do my treatments matter? How much?
- Do men and women respond the same way?
Key plot metric: Does my plot make the comparisons I am interested in
- easily, and
- accurately?
Time for some different data
HELPrct
: Health Evaluation and Linkage to Primary care randomized clinical trial
head(HELPrct)
## age anysubstatus anysub cesd d1 daysanysub dayslink drugrisk e2b female
## 1 37 1 yes 49 3 177 225 0 NA 0
## 2 37 1 yes 30 22 2 NA 0 NA 0
## 3 26 1 yes 39 0 3 365 20 NA 0
## 4 39 1 yes 15 2 189 343 0 1 1
## 5 32 1 yes 39 12 2 57 0 1 0
## 6 47 1 yes 6 1 31 365 0 NA 1
## sex g1b homeless i1 i2 id indtot linkstatus link mcs pcs pss_fr
## 1 male yes housed 13 26 1 39 1 yes 25.111990 58.41369 0
## 2 male yes homeless 56 62 2 43 NA <NA> 26.670307 36.03694 1
## 3 male no housed 0 0 3 41 0 no 6.762923 74.80633 13
## 4 female no housed 5 5 4 28 0 no 43.967880 61.93168 11
## 5 male no homeless 10 13 5 38 1 yes 21.675755 37.34558 10
## 6 female no housed 4 4 6 29 0 no 55.508991 46.47521 5
## racegrp satreat sexrisk substance treat avg_drinks max_drinks
## 1 black no 4 cocaine yes 13 26
## 2 white no 7 alcohol yes 56 62
## 3 black no 2 heroin no 0 0
## 4 white yes 4 heroin no 5 5
## 5 black no 6 cocaine no 10 13
## 6 black no 5 cocaine yes 4 4
## hospitalizations
## 1 3
## 2 22
## 3 0
## 4 2
## 5 12
## 6 1
Subjects admitted for treatment for addiction to one of three substances.
Who are the people in the study?
HELPrct %>%
ggplot(aes(x=substance)) +
geom_bar()+
ggtitle("HELP clinical trial at detoxification unit")
-
Hmm. What’s up with
y
?-
stat_bin()
is being applied to the data before thegeom_bar()
gets to do its thing. Binning creates they
values.
-
How old are people in the HELP study?
HELPrct %>%
ggplot(aes(x=age)) +
geom_histogram()+
ggtitle("HELP clinical trial at detoxification unit")
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
Notice the messages
stat_bin
: Histograms are not mapping the raw data but binned data.stat_bin()
performs the data transformation.binwidth
: a defaultbinwidth
has been selected, but we should really choose our own.
Setting the binwidth manually
HELPrct %>%
ggplot(aes(x=age)) +
geom_histogram(binwidth=2)+
ggtitle("HELP clinical trial at detoxification unit")
How old are people in the HELP study? – Other geoms
HELPrct %>%
ggplot(aes(x=age)) +
geom_freqpoly(binwidth=2)+
ggtitle("HELP clinical trial at detoxification unit")
HELPrct %>%
ggplot(aes(x=age)) +
geom_density()+
ggtitle("HELP clinical trial at detoxification unit")
Selecting stat and geom manually
Every geom comes with a default stat
- for simple cases, the stat is
stat_identity()
which does nothing - we can mix and match geoms and stats however we like
Selecting stat and geom manually
Every stat comes with a default geom
, every geom with a default stat
- we can specify stats instead of
geom
, if we prefer - we can mix and match geoms and stats however we like
HELPrct %>%
ggplot(aes(x=age)) +
stat_density( geom="line")+
ggtitle("HELP clinical trial at detoxification unit")
More combinations
HELPrct %>%
ggplot(aes(x=age)) +
geom_point(stat="bin", binwidth=3) +
geom_line(stat="bin", binwidth=3) +
ggtitle("HELP clinical trial at detoxification unit")
How much do they drink? (i1)
HELPrct %>%
ggplot(aes(x=i1)) + geom_histogram()+
ggtitle("HELP clinical trial at detoxification unit")
HELPrct %>%
ggplot(aes(x=i1)) + geom_density()+
ggtitle("HELP clinical trial at detoxification unit")
Covariates: Adding in more variables
Using color
and linetype
:
HELPrct %>%
ggplot(aes(x=i1, color=substance, linetype=sex)) +
geom_line(stat="density")+
ggtitle("HELP clinical trial at detoxification unit")
Using color
and facet
s
Boxplots
Boxplots use stat_quantile()
which computes a five-number summary (roughly the five quartiles of the data) and uses them to define a “box” and “whiskers”.
The quantitative variable must be y
, and there must be an additional x
variable.
HELPrct %>%
ggplot(aes(x=substance, y=age, color=sex)) +
geom_boxplot()+
ggtitle("HELP clinical trial at detoxification unit")
Horizontal boxplots
Horizontal boxplots are obtained by flipping the coordinate system:
HELPrct %>%
ggplot(aes(x=substance, y=age, color=sex)) +
geom_boxplot() +
coord_flip()+
ggtitle("HELP clinical trial at detoxification unit")
-
coord_flip()
may be used with other plots as well to reverse the roles ofx
andy
on the plot.
Axes scaling with boxplots
We can scale the continuous axis
HELPrct %>%
ggplot(aes(x=substance, y=age, color=sex)) +
geom_boxplot() +
coord_trans(y="log")+
ggtitle("HELP clinical trial at detoxification unit")
Give me some space
We’ve triggered a new feature: dodge
(for dodging things left/right). We can control how much if we set the dodge manually.
HELPrct %>%
ggplot(aes(x=substance, y=age, color=sex)) +
geom_boxplot(position=position_dodge(width=1)) +
ggtitle("HELP clinical trial at detoxification unit")
Issues with bigger data
## [1] 10000 76
NHANES %>% ggplot(aes(x=Height, y=Weight)) +
geom_point() + facet_grid( Gender ~ PregnantNow ) +
ggtitle("National Health and Nutrition Examination Survey")
- Although we can see a generally positive association (as we would expect), the over plotting may be hiding information.
Using alpha (opacity)
One way to deal with over plotting is to set the opacity low.
NHANES %>%
ggplot(aes(x=Height, y=Weight)) +
geom_point(alpha=0.01) + facet_grid( Gender ~ PregnantNow ) +
ggtitle("National Health and Nutrition Examination Survey")
geom_density2d
Alternatively (or simultaneously) we might prefer a different geom
altogether.
NHANES %>%
ggplot(aes(x=Height, y=Weight)) +
geom_density2d() + facet_grid( Gender ~ PregnantNow ) +
ggtitle("National Health and Nutrition Examination Survey")
Multiple layers
ggplot( data=HELPrct, aes(x=sex, y=age)) +
geom_boxplot(outlier.size=0) +
geom_jitter(alpha=.6) +
coord_flip()+
ggtitle("HELP clinical trial at detoxification unit")
Multiple layers
ggplot( data=HELPrct, aes(x=sex, y=age)) +
geom_boxplot(outlier.size=0) +
geom_point(alpha=.6, position=position_jitter(width=.1, height=0)) +
coord_flip()+
ggtitle("HELP clinical trial at detoxification unit")
Things I haven’t mentioned (much)
coords (
coord_flip()
is good to know about)themes (for customizing appearance)
position (
position_dodge()
,position_jitterdodge()
,position_stack()
, etc.)transforming axes
ggplot(data=HELPrct, aes(x=substance, y=age, color=sex)) +
geom_boxplot(coef = 10, position=position_dodge()) +
geom_point(aes(color=sex, fill=sex), position=position_jitterdodge()) +
ggtitle("HELP clinical trial at detoxification unit")
A little bit of everything
ggplot( data=HELPrct, aes(x=substance, y=age, color=sex)) +
geom_boxplot(coef = 10, position=position_dodge(width=1)) +
geom_point(aes(fill=sex), alpha=.5,
position=position_jitterdodge(dodge.width=1)) +
facet_wrap(~homeless)+
ggtitle("HELP clinical trial at detoxification unit")
What else can we do?
shiny
interactive graphics / modeling
plotly
Plotly
is an R package for creating interactive web-based graphs via plotly’s JavaScript graphing library,plotly.js
. Theplotly
R library contains theggplotly
function , which will convertggplot2
figures into a Plotly object. Furthermore, you have the option of manipulating the Plotly object with thestyle
function.
Dynamic documents
- combination of
RMarkdown
,ggvis
, andshiny