dplyr_table_manipulation | R Documentation |
Use these methods without the '.dm_zoomed' suffix (see examples).
## S3 method for class 'dm_zoomed'
filter(.data, ...)
## S3 method for class 'dm_zoomed'
mutate(.data, ...)
## S3 method for class 'dm_zoomed'
transmute(.data, ...)
## S3 method for class 'dm_zoomed'
select(.data, ...)
## S3 method for class 'dm_zoomed'
relocate(.data, ..., .before = NULL, .after = NULL)
## S3 method for class 'dm_zoomed'
rename(.data, ...)
## S3 method for class 'dm_zoomed'
distinct(.data, ..., .keep_all = FALSE)
## S3 method for class 'dm_zoomed'
arrange(.data, ...)
## S3 method for class 'dm_zoomed'
slice(.data, ..., .keep_pk = NULL)
## S3 method for class 'dm_zoomed'
group_by(.data, ...)
## S3 method for class 'dm_keyed_tbl'
group_by(.data, ...)
## S3 method for class 'dm_zoomed'
ungroup(x, ...)
## S3 method for class 'dm_zoomed'
summarise(.data, ...)
## S3 method for class 'dm_keyed_tbl'
summarise(.data, ...)
## S3 method for class 'dm_zoomed'
count(
x,
...,
wt = NULL,
sort = FALSE,
name = NULL,
.drop = group_by_drop_default(x)
)
## S3 method for class 'dm_zoomed'
tally(x, ...)
## S3 method for class 'dm_zoomed'
pull(.data, var = -1, ...)
## S3 method for class 'dm_zoomed'
compute(x, ...)
zoomed <- dm_nycflights13() %>%
dm_zoom_to(flights) %>%
group_by(month) %>%
arrange(desc(day)) %>%
summarize(avg_air_time = mean(air_time, na.rm = TRUE))
zoomed
dm_insert_zoomed(zoomed, new_tbl_name = "avg_air_time_per_month")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.