Learn R Programming

sdsfun (version 0.7.0)

check_tbl_na: check for NA values in a tibble

Description

check for NA values in a tibble

Usage

check_tbl_na(tbl)

Value

A logical value.

Arguments

tbl

A tibble

Examples

Run this code
demotbl = tibble::tibble(x = c(1,2,3,NA,1),
                         y = c(NA,NA,1:3),
                         z = 1:5)
demotbl
check_tbl_na(demotbl)

Run the code above in your browser using DataLab