Home
last modified time | relevance | path

Searched refs:str_replace_na (Results 1 – 10 of 10) sorted by relevance

/dports/textproc/R-cran-stringr/stringr/tests/testthat/
H A Dtest-replace.r58 expect_equal(str_replace_na(NA), "NA")
59 expect_equal(str_replace_na(NA_character_), "NA")
60 expect_equal(str_replace_na(NA_complex_), "NA")
61 expect_equal(str_replace_na(NA_integer_), "NA")
62 expect_equal(str_replace_na(NA_real_), "NA")
/dports/textproc/R-cran-stringr/stringr/man/
H A Dstr_replace_na.Rd3 \name{str_replace_na}
4 \alias{str_replace_na}
7 str_replace_na(string, replacement = "NA")
19 str_replace_na(c(NA, "abc", "def"))
H A Dstr_c.Rd16 be missing. Use \code{\link[=str_replace_na]{str_replace_na()}} to convert \code{NA} to
55 str_c(str_replace_na(c("a", NA, "b")), "-d")
H A Dstr_replace.Rd80 \code{\link[=str_replace_na]{str_replace_na()}} to turn missing values into "NA";
/dports/textproc/R-cran-stringr/stringr/
H A DNAMESPACE33 export(str_replace_na)
H A DMD569 336d96a35dfaf71efed27c5d0e67e28d *man/str_replace_na.Rd
H A DNEWS.md144 yields `NA`. If you want `"xNA"`, use `str_replace_na()` on the inputs.
/dports/textproc/R-cran-stringr/stringr/R/
H A Dview.R70 lines <- str_replace_na(lines)
H A Dreplace.r165 str_replace_na <- function(string, replacement = "NA") { function
/dports/textproc/R-cran-stringr/stringr/vignettes/releases/
H A Dstringr-1.0.0.Rmd73 yields `NA`. If you want `"xNA"`, use `str_replace_na()` on the inputs.