ComenzarEmpieza gratis

Trelliscope faceting gapminder by country

With a subset of the gapminder data (just the two countries in Oceania), take the example of life expectancy vs. year faceted by country and continent and create a TrelliscopeJS display.

The gapminder data set is available for you in your workspace.

Este ejercicio forma parte del curso

Visualizing Big Data with Trelliscope in R

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

library(ggplot2)
library(trelliscopejs)

# Create the plot
ggplot(gapminder, ___) +
  ___ +
  # Facet on country and continent
  facet_trelliscope(~ ___ + ___)
Editar y ejecutar código