I use tidyr::unnest frequently. But I don't use nest; I can't figure out what problem it solves. The nest documentation give examples like
as_tibble(iris) %>% nest(-Species)
But I don't see what to do with the result, except to immediately apply unnest to it and get iris back. Anything else I think of - like inner_joining it - I could do just as well if I'd group_byed it instead. I've looked at other SO posts which used nest, e.g. Irregular nest tidyverse, but they didn't edify.
nest - what problem is it solving? Can you give me examples of a problem which is most straightforwardly solved using nest?
PS
The example code as_tibble(iris) %>% nest(-Species) now (tidyr 1.0.2) gives a warning. What's the new, right way to invoke it without listing every included column? as_tibble(iris) %>% nest(-Species, cols = everything()) didn't work.