Grouping and nesting
Let's practice nesting data frames, getting familiar with the output, and computing on nested data frames.
Diese Übung ist Teil des Kurses
Visualizing Big Data with Trelliscope in R
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
library(dplyr)
library(tidyr)
# Nest stocks by symbol
by_symbol <- stocks %>%
___ %>%
___