case_match.: Vectorized 'switch()'

View source: R/case_match.R

case_match.R Documentation

Vectorized switch()

Description

Allows the user to succinctly create a new vector based off conditions of a single vector.

Usage

case_match.(.x, ..., .default = NA, .ptype = NULL)

Arguments

.x

A vector

...

A sequence of two-sided formulas. The left hand side gives the old values, the right hand side gives the new value.

.default

The default value if all conditions evaluate to FALSE.

.ptype

Optional ptype to specify the output type.

Examples

df <- tidytable(x = c("a", "b", "c", "d"))

df %>%
  mutate(
    case_x = case_match(x,
                        c("a", "b") ~ "new_1",
                        "c" ~ "new_2",
                        .default = x)
  )

tidytable documentation built on Oct. 5, 2023, 5:07 p.m.