purrr icon indicating copy to clipboard operation
purrr copied to clipboard

losing tbl_df class after lmap

Open py-b opened this issue 2 years ago • 2 comments

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"

py-b avatar Jan 27 '23 10:01 py-b