check_df: Checking whether any values in a data frame are nice

View source: R/check_df.R

check_dfR Documentation

Checking whether any values in a data frame are nice

Description

Checking whether any values in a data frame are nice

Usage

check_df(data)

Arguments

data

A data frame (can be a data.frame, tibble, or data.table)

Examples

df <- data.frame(a = c(1, 2, 3, 4, 5, 6), b = c(10, 20, 30, 40, 50, 69))
check_df(df)

df <- data.frame(a = c(1, 2, 3), b = c("ten", "twenty", "sixty nine"))
check_df(df)

Paulj1989/nice documentation built on Feb. 22, 2024, 8:10 p.m.