blank2NA: Replace Blanks in Data Frame

Description Usage Arguments Value See Also Examples

Description

Replaces blank (empty) cells in a dataframe. Generally, for internal use.

Usage

1
  blank2NA(dataframe, missing = NA)

Arguments

dataframe

A dataframe with blank (empty) cells.

missing

Value to replace empty cells with.

Value

Returns a data frame with blank spaces replaced.

See Also

rm_row

Examples

1
2
3
4
5
6
set.seed(15)
dat <- data.frame(matrix(sample(c(month.abb[1:4], ""), 50, TRUE),
    10, byrow = TRUE), stringsAsFactors = FALSE)

dat
blank2NA(dat)

trinker/qdap2 documentation built on May 31, 2019, 9:47 p.m.