disk.frame icon indicating copy to clipboard operation
disk.frame copied to clipboard

WIP: adding support for tidyfast

Open xiaodaigh opened this issue 6 years ago • 0 comments

  • [x] Wait for tidyfast to land on CRAN

  • [x] Assess gdt https://github.com/mtfairbanks/gdt

  • [ ] Add tests

  • [ ] Pass check

  • [ ] Merge with master

  • [ ] submit to CRAN

  • [ ] Integrate with new group-by framework

The below example already works!

library(tidyfast)
library(data.table)


disk.frame_to_split <- as.disk.frame(data.table(
  x = paste(letters, LETTERS, sep = ".")
))

disk.frame_to_split %>% 
  dt_separate(x, into = c("lower", "upper")) %>% 
  collect

delete(disk.frame_to_split)

xiaodaigh avatar Nov 30 '19 06:11 xiaodaigh