LoslegenKostenlos loslegen

Using complete() and fill() together

Now let's put it together!

Use complete() and fill() together to fix explicit and implicitly missing values in the frogger dataset.

Diese Übung ist Teil des Kurses

Dealing With Missing Data in R

Kurs anzeigen

Anleitung zur Übung

  • Use fill() and complete() to correctly fill and complete the values in the data so we went up with a dataset that has 5 names, all completed, each with 4 times filled in.

Interaktive Übung

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

# Print the frogger data to have a look at it
___

# Correctly fill() and complete() missing values so that our dataset becomes sensible

___ %>% 
  fill(___) %>%
  ___(___, ___)
Code bearbeiten und ausführen