Image from Few (2012, pg. 227)
Image from Few (2012, pg. 227)
Image from excelcharts.com
(Always cite your sources)
Cleveland, W. S., & McGill, R. (1985). Graphical perception and graphical methods for analyzing scientific data. Science, New Series, 229(4716), 828-833.
#> country lifeExp#> 1 Afghanistan 43.828#> 2 Iraq 59.545#> 3 Cambodia 59.723#> 4 Myanmar 62.069#> 5 Yemen, Rep. 62.698#> 6 Nepal 63.785#> 7 Bangladesh 64.062#> 8 India 64.698#> 9 Pakistan 65.483#> 10 Mongolia 66.803#> 11 Korea, Dem. Rep. 67.297#> 12 Thailand 70.616#> 13 Indonesia 70.650#> 14 Iran 70.964#> 15 Philippines 71.688#> 16 Lebanon 71.993#> 17 Jordan 72.535#> 18 Saudi Arabia 72.777#> 19 China 72.961#> 20 West Bank and Gaza 73.422
Sorting helps a bit...
Align to 0 scale:
No need to scale to 0:
Sorting still matters!
Our minds fill in the missing information
This should cause you cognitive pain
It's the graphical equivalent of this:
This makes our brains happy
We will group together objects that follow an established direction
We will group together objects that follow an established direction
We see elements that are physically similar as part of the same object
We see elements that are physically similar as part of the same object
We see elements that are physically similar as part of the same object
We see elements that are physically similar as part of the same object
We tend to see elements that are physically near each other as part of the same object
We tend to see elements that are physically near each other as part of the same object
We tend to see elements that are physically near each other as part of the same object
Law of Closure | Prägnanz | Law of Continuity | Law of Similarity | Law of Proximity |
---|---|---|---|---|
Fill in the missing information | We like regular, simple, and orderly | Group together objects with established direction | Physically similar = same object | Physically near = same object |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
A door where the design tells you to do the opposite of what you're actually supposed to do.
A door that gives the wrong signal and needs a sign to correct it.
The white circles you see at the intersections is called the "Hermann Grid illusion"
05:00
*most of the time
*most of the time
Figure 1.6: `Monstrous Costs’ by Nigel Holmes, in Healy, 2018
Figure 1.6: `Monstrous Costs’ by Nigel Holmes, in Healy, 2018
Figure 24.1: From Data Looks Better Naked by Darkhorse Analytics
*most of the time
*most of the time
Edward Tufte (2001) "The Visual Display of Quantitative Information", 2nd Edition, pg. 57-58.
Edward Tufte (2001) "The Visual Display of Quantitative Information", 2nd Edition, pg. 57-58.
Image from https://www.mediamatters.org/fox-news/fox-news-newest-dishonest-chart-immigration-enforcement
Image from https://www.mediamatters.org/fox-news/fox-news-newest-dishonest-chart-immigration-enforcement
Image from Image from http://livingqlikview.com/the-9-worst-data-visualizations-ever-created/
*most of the time
*most of the time
*most of the time
*most of the time
*most of the time
*most of the time
*most of the time
Clinton | Trump | |
---|---|---|
Among Democrats | 99% | 1% |
Among Republicans | 53% | 47% |
For your "bad" visualization:
1) Identify where the graphic falls on Cleveland's pattern recognition hierarchy
2) Any design rules that are broken
3) Suggest at least two improvements
10:00
Before:
After:
# Format the data framewildlife_impacts %>% count(operator)
#> # A tibble: 4 × 2#> operator n#> <chr> <int>#> 1 AMERICAN AIRLINES 14887#> 2 DELTA AIR LINES 9005#> 3 SOUTHWEST AIRLINES 17970#> 4 UNITED AIRLINES 15116
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = operator, y = n), width = 0.7, alpha = 0.8)
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = operator, y = n), width = 0.7, alpha = 0.8) +# Flip coordinates coord_flip()
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = operator), width = 0.7, alpha = 0.8)
reorder()
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8)
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) +# Adjust x axis scale scale_x_continuous( expand = expansion(mult = c(0, 0.05)))
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) +# Adjust x axis scale scale_x_continuous( expand = expansion(mult = c(0, 0.05)), breaks = c(0, 10000, 20000), limits = c(0, 20000))
cowplot
themes you should knowFor horizontal bars, add only vertical grid
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) +# Adjust x axis scale scale_x_continuous( expand = expansion(mult = c(0, 0.05))) +# Adjust theme theme_minimal_vgrid()
# Format the data framewildlife_impacts %>% count(operator) %>% mutate(operator = str_to_title(operator)) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) +# Adjust x axis scale scale_x_continuous( expand = expansion(mult = c(0, 0.05))) +# Adjust theme theme_minimal_vgrid() +# Annotate labs( x = 'Count', y = NULL)
wildlife_impacts %>% count(operator) %>% mutate(operator = str_to_title(operator)) %>% ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) + scale_x_continuous( expand = expansion(mult = c(0, 0.05))) + theme_minimal_vgrid() + labs( x = 'Count', y = NULL)
15:00
Use the gapminder.csv
data to create the following plot, following these steps:
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
o | Tile View: Overview of Slides |
Esc | Back to slideshow |
Image from Few (2012, pg. 227)
Image from Few (2012, pg. 227)
Image from excelcharts.com
(Always cite your sources)
Cleveland, W. S., & McGill, R. (1985). Graphical perception and graphical methods for analyzing scientific data. Science, New Series, 229(4716), 828-833.
#> country lifeExp#> 1 Afghanistan 43.828#> 2 Iraq 59.545#> 3 Cambodia 59.723#> 4 Myanmar 62.069#> 5 Yemen, Rep. 62.698#> 6 Nepal 63.785#> 7 Bangladesh 64.062#> 8 India 64.698#> 9 Pakistan 65.483#> 10 Mongolia 66.803#> 11 Korea, Dem. Rep. 67.297#> 12 Thailand 70.616#> 13 Indonesia 70.650#> 14 Iran 70.964#> 15 Philippines 71.688#> 16 Lebanon 71.993#> 17 Jordan 72.535#> 18 Saudi Arabia 72.777#> 19 China 72.961#> 20 West Bank and Gaza 73.422
Sorting helps a bit...
Align to 0 scale:
No need to scale to 0:
Sorting still matters!
Our minds fill in the missing information
This should cause you cognitive pain
It's the graphical equivalent of this:
This makes our brains happy
We will group together objects that follow an established direction
We will group together objects that follow an established direction
We see elements that are physically similar as part of the same object
We see elements that are physically similar as part of the same object
We see elements that are physically similar as part of the same object
We see elements that are physically similar as part of the same object
We tend to see elements that are physically near each other as part of the same object
We tend to see elements that are physically near each other as part of the same object
We tend to see elements that are physically near each other as part of the same object
Law of Closure | Prägnanz | Law of Continuity | Law of Similarity | Law of Proximity |
---|---|---|---|---|
Fill in the missing information | We like regular, simple, and orderly | Group together objects with established direction | Physically similar = same object | Physically near = same object |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
A door where the design tells you to do the opposite of what you're actually supposed to do.
A door that gives the wrong signal and needs a sign to correct it.
The white circles you see at the intersections is called the "Hermann Grid illusion"
05:00
*most of the time
*most of the time
Figure 1.6: `Monstrous Costs’ by Nigel Holmes, in Healy, 2018
Figure 1.6: `Monstrous Costs’ by Nigel Holmes, in Healy, 2018
Figure 24.1: From Data Looks Better Naked by Darkhorse Analytics
*most of the time
*most of the time
Edward Tufte (2001) "The Visual Display of Quantitative Information", 2nd Edition, pg. 57-58.
Edward Tufte (2001) "The Visual Display of Quantitative Information", 2nd Edition, pg. 57-58.
Image from https://www.mediamatters.org/fox-news/fox-news-newest-dishonest-chart-immigration-enforcement
Image from https://www.mediamatters.org/fox-news/fox-news-newest-dishonest-chart-immigration-enforcement
Image from Image from http://livingqlikview.com/the-9-worst-data-visualizations-ever-created/
*most of the time
*most of the time
*most of the time
*most of the time
*most of the time
*most of the time
*most of the time
Clinton | Trump | |
---|---|---|
Among Democrats | 99% | 1% |
Among Republicans | 53% | 47% |
For your "bad" visualization:
1) Identify where the graphic falls on Cleveland's pattern recognition hierarchy
2) Any design rules that are broken
3) Suggest at least two improvements
10:00
Before:
After:
# Format the data framewildlife_impacts %>% count(operator)
#> # A tibble: 4 × 2#> operator n#> <chr> <int>#> 1 AMERICAN AIRLINES 14887#> 2 DELTA AIR LINES 9005#> 3 SOUTHWEST AIRLINES 17970#> 4 UNITED AIRLINES 15116
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = operator, y = n), width = 0.7, alpha = 0.8)
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = operator, y = n), width = 0.7, alpha = 0.8) +# Flip coordinates coord_flip()
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = operator), width = 0.7, alpha = 0.8)
reorder()
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8)
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) +# Adjust x axis scale scale_x_continuous( expand = expansion(mult = c(0, 0.05)))
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) +# Adjust x axis scale scale_x_continuous( expand = expansion(mult = c(0, 0.05)), breaks = c(0, 10000, 20000), limits = c(0, 20000))
cowplot
themes you should knowFor horizontal bars, add only vertical grid
# Format the data framewildlife_impacts %>% count(operator) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) +# Adjust x axis scale scale_x_continuous( expand = expansion(mult = c(0, 0.05))) +# Adjust theme theme_minimal_vgrid()
# Format the data framewildlife_impacts %>% count(operator) %>% mutate(operator = str_to_title(operator)) %>%# Add geoms ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) +# Adjust x axis scale scale_x_continuous( expand = expansion(mult = c(0, 0.05))) +# Adjust theme theme_minimal_vgrid() +# Annotate labs( x = 'Count', y = NULL)
wildlife_impacts %>% count(operator) %>% mutate(operator = str_to_title(operator)) %>% ggplot() + geom_col( aes(x = n, y = reorder(operator, n)), width = 0.7, alpha = 0.8) + scale_x_continuous( expand = expansion(mult = c(0, 0.05))) + theme_minimal_vgrid() + labs( x = 'Count', y = NULL)
15:00
Use the gapminder.csv
data to create the following plot, following these steps: