removeNaRows: Remove rows with Na Values from dataframe

Description Usage Arguments Value Examples

View source: R/removeNaRows.R

Description

The function will remove all rows which contain na values. Specific columns can be cleaned whilst ignoring the other columns

Usage

1
removeNaRows(dataframe, applicableColumns = c())

Arguments

dataframe

a dataframe

applicableColumns

a vector of dataframe names which should be checked, ignore others

Value

The dataframe with rows which have NA values removed

Examples

1
2
3
removeNaRows(data)
removeNaRows(read.csv("train.csv"))
removeNaRows(data, c("A", "B", "C"))

christophperrins/Documentation-with-R documentation built on Nov. 4, 2019, 8:51 a.m.