Description Usage Arguments Value Examples
The function will remove all rows which contain na values. Specific columns can be cleaned whilst ignoring the other columns
1 | removeNaRows(dataframe, applicableColumns = c())
|
dataframe |
a dataframe |
applicableColumns |
a vector of dataframe names which should be checked, ignore others |
The dataframe with rows which have NA values removed
1 2 3 | removeNaRows(data)
removeNaRows(read.csv("train.csv"))
removeNaRows(data, c("A", "B", "C"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.