Learn R Programming

vvauditor (version 0.7.0)

md_complete_cases: MD complete cases

Description

Print the complete cases of the data.

Usage

md_complete_cases(data, digits = 1)

Value

Message with the number of rows, number of rows with missing values and the percentage of complete rows.

Arguments

data

The data frame.

digits

Default: 1. number of digits for rounding.

Examples

Run this code
# example code
md_complete_cases(iris)

iris$Sepal.Length[5] <- NA_character_
md_complete_cases(iris)

Run the code above in your browser using DataLab