Learn R Programming

mark (version 0.8.1)

na_assignments: NA at positions

Description

Converts select elements of a vector into NAs

This is how the end results are

  • NA_at and NA_if require a suitable index value (x[y] <- NA)

    • NA_at expects y (or the result of function y) to be integers

    • NA_if expects y (or the result of function y) to be logical

  • NA_in and NA_out expect some values to match on

    • NA_in checks x[x %in% y] <- NA

    • NA_out checks x[x %out% y] <- NA (see fuj::match_ext)

Usage

NA_at(x, y, ...)

NA_if(x, y, ...)

NA_in(x, y, ...)

NA_out(x, y, ...)

Value

x with assigned NA values

Arguments

x

A vector of values

y

Either a suitable value (see Details) or a function which accepts x as its first parameter and can return suitable values

...

Additional values passed to y (if y is a function)

Details

Convert specific values to NA

See Also

Inspired by dplyr::na_if()

Examples

Run this code
let <- ordered(letters[1:5])
NA_at(let, c(1, 3, 5))   # [1]  b     d    
NA_if(let, let <= "b")   # [1]   c    d    e
NA_in(let, c("a", "c"))  # [1]  b     d    e
NA_out(let, c("a", "c")) # [1] a     c     

Run the code above in your browser using DataLab