LoslegenKostenlos loslegen

Looking at all days

Let's view the previous visualization as a Trelliscope display, building on the daily_may dataset we created in the previous exercise, available in your session. This will allow us to later swap out the "May-only" data summary to look at all 215 days without being constrained for visual space.

Diese Übung ist Teil des Kurses

Visualizing Big Data with Trelliscope in R

Kurs anzeigen

Anleitung zur Übung

  • Facet on start_day using facet_trelliscope().
  • Use 3 rows and 7 columns to view 3 weeks of data at a time.

Interaktive Übung

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

library(ggplot2)

ggplot(daily_may, aes(start_hod, n, color = membership)) +
  geom_point() +
  # Facet on start_day
  ___
Code bearbeiten und ausführen