View source: R/columns_without_nan.R
columns_with_nan | R Documentation |
This function identifies and returns the names of the columns in a DataFrame that contain missing values (NaN). It is particularly useful for missing data imputation and preliminary analysis, allowing for quick identification of columns that need to be handled due to the presence of missing values
columns_with_nan(data)
data |
The DataFrame's rows represent observations and the columns represent variables |
It returns a vector of columns with NAN
data("airquality")
columns_with_nan(airquality)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.