check_tbl_na: check for NA values in a tibble

check_tbl_naR Documentation

check for NA values in a tibble

Description

check for NA values in a tibble

Usage

check_tbl_na(tbl)

Arguments

tbl

A tibble

Value

A logical value.

Examples

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


sdsfun documentation built on April 3, 2025, 8:39 p.m.