Grouping and nesting
Let's practice nesting data frames, getting familiar with the output, and computing on nested data frames.
Este ejercicio forma parte del curso
Visualizing Big Data with Trelliscope in R
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
library(dplyr)
library(tidyr)
# Nest stocks by symbol
by_symbol <- stocks %>%
___ %>%
___