LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Visualizing Big Data with Trelliscope in R

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

library(ggplot2)
library(trelliscopejs)

# Create the plot
ggplot(gapminder, ___) +
  ___ +
  # Facet on country and continent
  facet_trelliscope(~ ___ + ___)
Code bearbeiten und ausführen