Description Usage Arguments Value Examples
View source: R/explore_outliers.R
Explores outliers in each feature of dataset based on standard deviation range. Before calculation, NA rows are dropped and only numeric columns are
1 | explore_outliers(df, std_range)
|
df |
A data.frame: The target dataframe to explore |
std_range |
A integer: The range of standard deviation |
data.frame: Dataframe with details on the outliers
1 2 3 | df <- data.frame('col1'= c(1, 2, 1.00, 3, -1, 100),
'col2'= c(3, 1 ,3, -2, 3, -1))
explore_outliers(df, 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.