Department events
Internship/summer research opportunities
Visualizations help us understand what we’re working with:
This understanding will inform our next steps:
Once our analysis is complete, visualizations are a powerful way to communicate our findings and tell a story.
Download a template .Rmd of this activity. Put the file in a Assignment_03
folder within your COMP_STAT_112
folder.
There is not one right way to visualize a data set.
Let’s try some critical analysis on specific examples.
Identify the following:
Think and then discuss with group. Be prepared to share.
Graphics are designed by the human expert (you!) in order to reveal information that’s in the data.
You should clearly identify what story you want the graphic to tell to the audience, and double check that this story is being told.
What audiences can access your story? Use alternative (alt) text and color-blind friendly color palettes.
Alt text should concisely articulate:
Great resource on writing alt text for data visualizations
Color blindness impacts whether you can perceive color aesthetic differences.
One color blind friend palette is viridis:
+ scale_fill_viridis_d()
or + scale_color_viridis_d()
when you are filling or coloring by a discrete/categorical variable+ scale_fill_viridis_c()
or + scale_color_viridis_c()
when you are filling or coloring by a continuous/quantitative variableData visualizations have a potentially enormous influence on how data are used to make decisions across all areas of human endeavor. - Michael Correll
Visibility - Make the invisible (labor, uncertainty, impact) visible
Privacy - Collect data with empathy
Power - Challenge structures of power
At a minimum, you should always:
Present data in a way that avoids misleading the audience (story should honestly represent data).
Always include your data source. Doing so attributes credit for labor, provides credibility to your work, and provides context for your graphic.
Good graphics make it easy for people to perceive things that are similar and things that are different.
Humans can perceive and compare nearby objects based on the aesthetics (roughly in descending order of ability):
Visual perception is selective, and our attention is often drawn to contrasts from the norm.
Implication: We should design visualizations so that the features we want to highlight stand out in contrast from those that are not worth the audience’s attention.
Our eyes are drawn to familiar patterns. We see what we know and expect.
Implication: Visualizations work best when they display information as patterns that familiar and easy to spot.
Memory plays an important role in human cognition, but working memory is extremely limited.
Implication: Visualizations must serve as external aids to augment working memory. If a visualization is unfamiliar, then it won’t be as effective.
Consider one of the more complicated data graphics from Exercise 2.5:
What story does the data graphic tell? What is the main message that you take away from it?
Can the data graphic be described in terms of the Grammar of Graphics (frame, glyphs, aesthetics, facet, scale, guide)? If so, please describe.
Critique and/or praise the visualization choices made by the designer.