Skip to contents

dplyr methods for track tables objects.

Usage

# S3 method for track
select(.data, ...)

# S3 method for track
rename(.data, ...)

# S3 method for track
filter(.data, ...)

# S3 method for track
arrange(.data, ...)

# S3 method for track
mutate(.data, ...)

# S3 method for track
transmute(.data, ...)

# S3 method for track
summarise(.data, ...)

# S3 method for track
summarize(.data, ...)

# S3 method for track
group_by(.data, ...)

# S3 method for track
ungroup(x, ...)

# S3 method for track
slice_sample(.data, ...)

# S3 method for track
do(.data, ...)

# S3 method for track
slice(.data, ...)

# S3 method for track
semi_join(x, ...)

# S3 method for track
anti_join(x, ...)

# S3 method for track
inner_join(x, ...)

# S3 method for track
left_join(x, ...)

# S3 method for track
right_join(x, ...)

# S3 method for track
full_join(x, ...)

# S3 method for track
nest_join(x, ...)

# S3 method for track
distinct(.data, ...)

# S3 method for track
rowwise(data, ...)

Arguments

...

Additional arguments to be passed to the corresponding dplyr method.

data, .data, x

A track table.

See also