Skip to content

lazy_dt() doesn't respect grouping #206

@mgirlich

Description

@mgirlich

The grouping information is lost after using lazy_dt()

library(dplyr, warn.conflicts = FALSE)
library(dtplyr, warn.conflicts = FALSE)

tibble(x = 1) %>% 
  group_by(x) %>% 
  lazy_dt()
#> Source: local data table [1 x 1]
#> Call:   `_DT1`
#> 
#>       x
#>   <dbl>
#> 1     1
#> 
#> # Use as.data.table()/as.data.frame()/as_tibble() to access results

Created on 2021-03-02 by the reprex package (v1.0.0)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions