manip_grouped_ffdf: Data manipulation for grouped data tables.

Description Usage Arguments Examples

Description

Data manipulation for grouped data tables.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## S3 method for class 'grouped_ffdf'
filter_(.data, ..., .dots)

## S3 method for class 'grouped_ffdf'
summarise_(.data, ..., .dots)

mutate.grouped_ffdf(.data, ..., inplace = FALSE)

## S3 method for class 'grouped_ffdf'
arrange_(.data, ..., .dots)

## S3 method for class 'grouped_ffdf'
slice_(.data, ..., .dots)

Arguments

.data

a data table

...

variables interpreted in the context of .data

inplace

if FALSE (the default) the data frame will be copied prior to modification to avoid changes propagating via reference.

Examples

1
2
3
4
5
species <-
  iris %>% tbl_ffdf %>%
  group_by(Species)
filter(species, Petal.Width == max(Petal.Width))
summarise(species, Petal.Width=mean(Petal.Width))

edwindj/ffbase2 documentation built on May 15, 2019, 11:05 p.m.