| auto_filter | R Documentation |
Works exactly like dplyr::filter(), but also logs a tracking step
recording how many unique IDs remain after the filter.
auto_filter(
.data,
step = "",
description = "",
...,
cache = NULL,
assume_unique = FALSE
)
.data |
A Spark DataFrame or local data frame. |
step |
Character label for this filtering step. |
description |
Character description of the filter. |
... |
Filter conditions, same syntax as |
cache |
Logical or NULL (named-only). If TRUE, materializes the
result with |
assume_unique |
Logical (named-only). Passed to |
The signature mirrors v0.1.0 for full backward compatibility: step
and description come first (so existing positional calls keep working),
then ... for the filter conditions, and finally the new big-data
options (cache, assume_unique) which must be passed by name.
The filtered data frame.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.