Get startedGet started for free

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.

This exercise is part of the course

Visualizing Big Data with Trelliscope in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

library(ggplot2)
library(trelliscopejs)

# Create the plot
ggplot(gapminder, ___) +
  ___ +
  # Facet on country and continent
  facet_trelliscope(~ ___ + ___)
Edit and Run Code