Learn R Programming

baizer (version 0.8.0)

dx_tb: diagnosis a tibble for character NA, NULL, all T/F column, blank in cell

Description

diagnosis a tibble for character NA, NULL, all T/F column, blank in cell

Usage

dx_tb(x)

Value

list

Arguments

x

tibble

Examples

Run this code
x <- tibble::tibble(
  c1 = c("NA", NA, "a", "b"),
  c2 = c("c", "d", "e", "NULL"),
  c3 = c("T", "F", "F", "T"),
  c4 = c("T", "F", "F", NA),
  c5 = c("", " ", "\t", "\n")
)

dx_tb(x)

Run the code above in your browser using DataLab