https://github.com/hadley/dplyr
Raw File
Tip revision: 0a7bbc5175accd041293502e87424f1b93c959f2 authored by Kirill Müller on 17 December 2018, 16:37:51 UTC
Merge pull request #4025 from tidyverse/r-0.7.8-docs
Tip revision: 0a7bbc5
na_if.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/na_if.R
\name{na_if}
\alias{na_if}
\title{Convert values to NA}
\usage{
na_if(x, y)
}
\arguments{
\item{x}{Vector to modify}

\item{y}{Value to replace with NA}
}
\value{
A modified version of \code{x} that replaces any values that
are equal to \code{y} with NA.
}
\description{
This is a translation of the SQL command \code{NULL_IF}. It is useful
if you want to convert an annoying value to \code{NA}.
}
\examples{
na_if(1:5, 5:1)

x <- c(1, -1, 0, 10)
100 / x
100 / na_if(x, 0)

y <- c("abc", "def", "", "ghi")
na_if(y, "")
}
\seealso{
\code{\link[=coalesce]{coalesce()}} to replace missing values with a specified
value.
}
back to top