Grouping and nesting
Let's practice nesting data frames, getting familiar with the output, and computing on nested data frames.
Este exercício faz parte do curso
Visualizing Big Data with Trelliscope in R
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
library(dplyr)
library(tidyr)
# Nest stocks by symbol
by_symbol <- stocks %>%
___ %>%
___