Learn R Programming

mverse (version 0.2.3)

add_filter_branch: Add filter branches to a mverse object.

Description

This method adds one or more filter branches to an existing mverse object. Filter branches are used to define options for conditions for selecting subsets of data rows.

Usage

add_filter_branch(.mverse, ...)

Value

The resulting mverse object.

Arguments

.mverse

a mverse object.

...

filter_branch objects.

See Also

Other filter branch functions: filter_branch

Examples

Run this code
# Define a filter branch.
hurricane_outliers <- filter_branch(
  !Name %in% c("Katrina", "Audrey", "Andrew"),
  !Name %in% c("Katrina"),
  !Name %in% c("Katrina"),
  TRUE # include all
)
# Create a mverse and add the branch.
mv <- create_multiverse(hurricane) %>%
  add_filter_branch(hurricane_outliers)

Run the code above in your browser using DataLab