Nesting tibbles
You're pre-processing the US army body measurement dataset ANSUR II to train multiple models in a single pipeline. You'll experiment with the nest() function to create a list column with nested tibbles containing sub-sets of the data.
the dplyr package has been pre-loaded for you.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Reshaping Data with tidyr
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
ansur_df %>%
# Group the data by branch, then nest
___ %>%
___