| dplyr_table_manipulation | R Documentation |
Use these methods without the '.dm_zoomed' suffix (see examples).
## S3 method for class 'dm_zoomed'
filter(.data, ..., .by = NULL, .preserve = FALSE)
## S3 method for class 'dm_keyed_tbl'
filter(.data, ..., .by = NULL, .preserve = FALSE)
## S3 method for class 'dm_zoomed'
filter_out(.data, ..., .by = NULL, .preserve = FALSE)
## S3 method for class 'dm_keyed_tbl'
filter_out(.data, ..., .by = NULL, .preserve = FALSE)
## S3 method for class 'dm_zoomed'
mutate(
.data,
...,
.by = NULL,
.keep = c("all", "used", "unused", "none"),
.before = NULL,
.after = NULL
)
## S3 method for class 'dm_keyed_tbl'
mutate(
.data,
...,
.by = NULL,
.keep = c("all", "used", "unused", "none"),
.before = NULL,
.after = NULL
)
## S3 method for class 'dm_zoomed'
transmute(.data, ...)
## S3 method for class 'dm_keyed_tbl'
transmute(.data, ...)
## S3 method for class 'dm_zoomed'
select(.data, ...)
## S3 method for class 'dm_keyed_tbl'
select(.data, ...)
## S3 method for class 'dm_zoomed'
relocate(.data, ..., .before = NULL, .after = NULL)
## S3 method for class 'dm_keyed_tbl'
relocate(.data, ..., .before = NULL, .after = NULL)
## S3 method for class 'dm_zoomed'
rename(.data, ...)
## S3 method for class 'dm_keyed_tbl'
rename(.data, ...)
## S3 method for class 'dm_zoomed'
distinct(.data, ..., .keep_all = FALSE)
## S3 method for class 'dm_keyed_tbl'
distinct(.data, ..., .keep_all = FALSE)
## S3 method for class 'dm_zoomed'
arrange(.data, ..., .by_group = FALSE, .locale = NULL)
## S3 method for class 'dm_keyed_tbl'
arrange(.data, ..., .by_group = FALSE, .locale = NULL)
## S3 method for class 'dm_zoomed'
slice(.data, ..., .by = NULL, .preserve = FALSE, .keep_pk = NULL)
## S3 method for class 'dm_keyed_tbl'
slice(.data, ..., .by = NULL, .preserve = FALSE)
## S3 method for class 'dm_zoomed'
group_by(.data, ..., .add = FALSE, .drop = group_by_drop_default(.data))
## S3 method for class 'dm_keyed_tbl'
group_by(.data, ..., .add = FALSE, .drop = group_by_drop_default(.data))
## S3 method for class 'dm_zoomed'
ungroup(x, ...)
## S3 method for class 'dm_keyed_tbl'
ungroup(x, ...)
## S3 method for class 'dm_zoomed'
summarise(.data, ..., .by = NULL, .groups = NULL)
## S3 method for class 'dm_keyed_tbl'
summarise(.data, ..., .by = NULL, .groups = NULL)
## S3 method for class 'dm_zoomed'
reframe(.data, ..., .by = NULL)
## S3 method for class 'dm_keyed_tbl'
reframe(.data, ..., .by = NULL)
## 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_keyed_tbl'
count(
x,
...,
wt = NULL,
sort = FALSE,
name = NULL,
.drop = group_by_drop_default(x)
)
## S3 method for class 'dm_zoomed'
tally(x, wt = NULL, sort = FALSE, name = NULL)
## S3 method for class 'dm_keyed_tbl'
tally(x, wt = NULL, sort = FALSE, name = NULL)
## S3 method for class 'dm_zoomed'
pull(.data, var = -1, name = NULL, ...)
## S3 method for class 'dm_zoomed'
compute(x, ...)
zoomed <- dm_nycflights13() %>%
dm_zoom_to(flights) %>%
arrange(desc(day)) %>%
summarize(.by = month, 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.