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')
Single plots with plotly
Easy!
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Complete interactive apps with Shiny
Super complicated!
Plotly is special software for
creating interactive plots with JavaScript
Plotly is special software for
creating interactive plots with JavaScript
No knowledge of JavaScript needed!
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!
Save a self-contained HTML version of it withsaveWidget()
in the htmlwidgets R package
# This is like ggsave, but for interactive HTML plotshtmlwidgets::saveWidget(interactive_plot, "fancy_plot.html")
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
Single plots with plotly
Easy!
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Use basic R Markdown to build a dashboard!
Make any kind of block arrangement
Add other elements like text and gauges
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!
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Complete interactive apps with Shiny
Super complicated!
Shiny is a complete web application framework for interactive statistics
Shiny is a complete web application framework for interactive statistics
It's super complex and hard for beginners
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)
You can use reactive Shiny things in flexdashboards
without building a complete Shiny app!
I have done this
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')
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 |
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')
Single plots with plotly
Easy!
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Complete interactive apps with Shiny
Super complicated!
Plotly is special software for
creating interactive plots with JavaScript
Plotly is special software for
creating interactive plots with JavaScript
No knowledge of JavaScript needed!
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!
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)
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
car_hist <- ggplot(mpg, aes(x = hwy)) + geom_histogram(binwdith = 2, boundary = 0, color = "white")
ggplotly(car_hist)
Save a self-contained HTML version of it withsaveWidget()
in the htmlwidgets R package
# This is like ggsave, but for interactive HTML plotshtmlwidgets::saveWidget(interactive_plot, "fancy_plot.html")
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
Single plots with plotly
Easy!
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Use basic R Markdown to build a dashboard!
Make any kind of block arrangement
Add other elements like text and gauges
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!
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Single plots with plotly
Easy!
Dashboards with flexdashboard
Slightly more complicated
Complete interactive apps with Shiny
Super complicated!
Shiny is a complete web application framework for interactive statistics
Shiny is a complete web application framework for interactive statistics
It's super complex and hard for beginners
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)
You can use reactive Shiny things in flexdashboards
without building a complete Shiny app!
I have done this