LoslegenKostenlos loslegen

Animating the space race

In lesson 1, you create static line charts to explore the space race. In this exercise, you will work through the steps to create an animated version of that chart.

plotly, dplyr, tidyr, and purrr have been loaded for you.

Diese Übung ist Teil des Kurses

Intermediate Interactive Data Visualization with plotly in R

Kurs anzeigen

Interaktive Übung

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

# Complete the state_launches data set
annual_launches <- state_launches %>%
  count(launch_year, state_code) %>%
  ___(___, ___, ___)
Code bearbeiten und ausführen