powered by
Iterates through all numeric columns in the dataset and provides a summary table of outliers found.
scan_data(data, method = "iqr")
A summary data frame with columns: Column, Outlier_Count, and Percentage.
A data frame.
"iqr" or "zscore". Defaults to "iqr".
df <- data.frame( a = c(1:10, 100), b = c(1:10, 1) ) scan_data(df, method = "iqr")
Run the code above in your browser using DataLab