purrr
purrr copied to clipboard
losing tbl_df class after lmap
Applying lmap
to a tibble now returns a simple data.frame.
I'm pretty sure the class c("tbl_df", "tbl", "data.frame")
was preserved (before version 1.0?).
iris %>% tibble::as_tibble() %>% lmap(identity) %>% class()
#> [1] "data.frame"