ComeçarComece de graça

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 exercício faz parte do curso

Visualizing Big Data with Trelliscope in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

library(ggplot2)
library(trelliscopejs)

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