+ - 0:00:00
Notes for current slide
Notes for next slide

Animations
and interactivity

ggplot
1 / 24

Animations

Use gganimate to map variables to a time aesthetic

ggplot(gapminder,
aes(x = gdpPercap, y = lifeExp,
size = pop, color = country)) +
geom_point(alpha = 0.7) +
scale_size(range = c(2, 12)) +
scale_x_log10(labels = dollar_format()) +
guides(size = FALSE, color = FALSE) +
facet_wrap(vars(continent)) +
# Special gganimate stuff
labs(title = 'Year: {frame_time}') +
transition_time(year) +
ease_aes('linear')

2 / 24

Interactivity

Single plots with plotly

Easy!

3 / 24

Interactivity

Single plots with plotly

Easy!

Dashboards with flexdashboard

Slightly more complicated

3 / 24

Interactivity

Single plots with plotly

Easy!

Dashboards with flexdashboard

Slightly more complicated

Complete interactive apps with Shiny

Super complicated!

3 / 24

Single plots with plotly

Plotly is special software for
creating interactive plots with JavaScript

4 / 24

Single plots with plotly

Plotly is special software for
creating interactive plots with JavaScript

No knowledge of JavaScript needed!

4 / 24

Single plots with plotly

Plotly is special software for
creating interactive plots with JavaScript

No knowledge of JavaScript needed!

ggplotly() in the plotly R package translates
between R and Javascript for you!

4 / 24

Plotly

library(gapminder)
library(plotly)
gapminder_2007 <- filter(gapminder,
year == 2007)
my_plot <- ggplot(
data = gapminder_2007,
mapping = aes(x = gdpPercap, y = lifeExp,
color = continent)) +
geom_point() +
scale_x_log10() +
theme_minimal()
ggplotly(my_plot)
3001000300010000300004050607080
AfricaAfricaAmericasAmericasAsiaAsiaEuropeEuropeOceaniaOceaniagdpPercaplifeExpcontinent
5 / 24

Plotly tooltips

my_plot <- ggplot(
data = gapminder_2007,
mapping = aes(x = gdpPercap, y = lifeExp,
color = continent)) +
geom_point(aes(text = country)) +
scale_x_log10() +
theme_minimal()
interactive_plot <- ggplotly(
my_plot, tooltip = "text"
)
interactive_plot
3001000300010000300004050607080
AfricaAfricaAmericasAmericasAsiaAsiaEuropeEuropeOceaniaOceaniagdpPercaplifeExpcontinent
6 / 24

Works with most geoms!

car_hist <- ggplot(mpg,
aes(x = hwy)) +
geom_histogram(binwdith = 2,
boundary = 0,
color = "white")
ggplotly(car_hist)
7 / 24

Save as HTML

Save a self-contained HTML version of it with
saveWidget() in the htmlwidgets R package

# This is like ggsave, but for interactive HTML plots
htmlwidgets::saveWidget(interactive_plot, "fancy_plot.html")
8 / 24

Fully documented

The documentation for ggplot2 + plotly is full of
examples of how to customize everything

Rely on that ↑ + Google to make
really fancy (and easy!) interactive plots

9 / 24

Interactivity

Single plots with plotly

Easy!

10 / 24

Interactivity

Single plots with plotly

Easy!

Dashboards with flexdashboard

Slightly more complicated

10 / 24

Dashboards with flexdashboard

Use basic R Markdown to build a dashboard!

flexdashboard simple layout
11 / 24

Dashboards with flexdashboard

Make any kind of block arrangement

flexdashboard complex layout
12 / 24

Dashboards with flexdashboard

Add other elements like text and gauges

flexdashboard value boxes
flexdashboard gauges
13 / 24

Example dashboards

14 / 24

Example dashboards

15 / 24

Example dashboards

16 / 24

Outstanding documentation

The documentation for flexdashboard is
full of examples and details of everything you can do

Rely on that ↑ + Google to make
really fancy (and easy!) dashboards!

17 / 24

Interactivity

Single plots with plotly

Easy!

Dashboards with flexdashboard

Slightly more complicated

18 / 24

Interactivity

Single plots with plotly

Easy!

Dashboards with flexdashboard

Slightly more complicated

Complete interactive apps with Shiny

Super complicated!

18 / 24

Shiny

Shiny is a complete web application framework for interactive statistics

19 / 24

Shiny

Shiny is a complete web application framework for interactive statistics

It's super complex and hard for beginners

19 / 24

Shiny

Shiny is a complete web application framework for interactive statistics

It's super complex and hard for beginners

I've never made a standalone Shiny app!

(And I don't plan on trying anytime soon)

19 / 24

Lots of resources to help start

RStudio has a whole website for helping you get started

20 / 24

Really neat examples!

22 / 24

Really neat examples!

23 / 24

flexdashboard + Shiny

You can use reactive Shiny things in flexdashboards
without building a complete Shiny app!

I have done this

Why Donors Donate
24 / 24

Animations

Use gganimate to map variables to a time aesthetic

ggplot(gapminder,
aes(x = gdpPercap, y = lifeExp,
size = pop, color = country)) +
geom_point(alpha = 0.7) +
scale_size(range = c(2, 12)) +
scale_x_log10(labels = dollar_format()) +
guides(size = FALSE, color = FALSE) +
facet_wrap(vars(continent)) +
# Special gganimate stuff
labs(title = 'Year: {frame_time}') +
transition_time(year) +
ease_aes('linear')

2 / 24
Paused

Help

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
oTile View: Overview of Slides
Esc Back to slideshow