CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Visualizing Big Data with Trelliscope in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

library(ggplot2)
library(trelliscopejs)

# Create the plot
ggplot(gapminder, ___) +
  ___ +
  # Facet on country and continent
  facet_trelliscope(~ ___ + ___)
Modifier et exécuter le code