check_feature_na {hdImpute}R Documentation

Find features with (specified amount of) missingness

Description

Find features with (specified amount of) missingness

Usage

check_feature_na(data, threshold)

Arguments

data

A data frame or tibble.

threshold

Missingness threshold in a given column/feature as a proportion bounded between 0 and 1. Default set to sensitive level at 1e-04.

Value

A vector of column/feature names that contain missingness greater than threshold.

Examples

## Not run: 
check_feature_na(data = any_data_frame, threshold = 1e-04)

## End(Not run)

[Package hdImpute version 0.2.1 Index]