stringr (version 1.3.0)

str_replace_na: Turn NA into "NA"

Description

Turn NA into "NA"

Usage

str_replace_na(string, replacement = "NA")

Arguments

string

Input vector. Either a character vector, or something coercible to one.

replacement

A single string.

Examples

Run this code
# NOT RUN {
str_replace_na(c(NA, "abc", "def"))
# }

Run the code above in your browser using DataCamp Workspace