recode_as_value: Recode a value as another value

Description Usage Arguments Value Examples

View source: R/recode_as_value.R

Description

This provides a convenient way to convert a number/value to another value.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
recode_as_value(
  df,
  value = NULL,
  replacement_value = NULL,
  subset_cols = NULL,
  pattern_type = NULL,
  pattern = NULL,
  case_sensitive = FALSE,
  ...
)

Arguments

df

A data.frame object for which recoding is to be done.

value

The value/vector of values to convert.

replacement_value

New value.

subset_cols

An optional character vector to define columns for which changes are required.

pattern_type

One of contains', 'starts_with' or 'ends_with'.

pattern

A character pattern to match

case_sensitive

Defaults to FALSE. Patterns are case insensitive if TRUE

...

Other arguments to other functions

Value

An object of the same class as x with values changed to 'NA'.

Examples

1
2
head(recode_as_value(airquality,
value=c(67,118),replacement=NA, pattern_type="starts_with",pattern="S|O"))

mde documentation built on Feb. 10, 2022, 5:08 p.m.

Related to recode_as_value in mde...