View source: R/check_outliers.R
check_outliers | R Documentation |
This function checks for outliers or extreme values in a given dataframe.
check_outliers(df)
df |
A dataframe. |
A message indicating whether or not extreme values were found.
df <- data.frame(w = c(7, 8, 180, 7), x = c("a", "b", "c", "a"),
y = c(4, 5, -6, 4), z = c(7, 8, NA, 7))
check_outliers(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.