-
Notifications
You must be signed in to change notification settings - Fork 135
Closed
Labels
Milestone
Description
From rnabioco/valr#338 (comment):
6d53680
library(tidyverse)
tibble(a = 1:3) %>%
group_by(a) %>%
as_tibble()
#> # A tibble: 3 x 1
#> a
#> <int>
#> 1 1
#> 2 2
#> 3 3Created on 2018-11-10 by the reprex package (v0.2.1.9000)
v1.4.2
library(tidyverse)
tibble(a = 1:3) %>%
group_by(a) %>%
as_tibble()
#> # A tibble: 3 x 1
#> # Groups: a [3]
#> a
#> <int>
#> 1 1
#> 2 2
#> 3 3Created on 2018-11-10 by the reprex package (v0.2.1)
Options
- Document as breaking change (this would be consistent with
as_tibblescrubs data.table class #181 and with the current behavior ofas.data.frame()) - Revisit (needs a test too)