Description Usage Arguments Value See Also Examples
View source: R/outlier_labeler.R
Locate and label possible outliers in a string.
| 1 | outlier_labeler(x, standardize = TRUE, ...)
 | 
| x | A numeric vector. | 
| standardize | logical.  If  | 
| ... | Other arguments passed to  | 
Returns a matrix (one column) of possible outliers coded as 
"3sd", "2sd" and "1.5sd", corresponding to >= to 3, 2, 
or 1.5 standard deviations.
| 1 2 3 4 5 6 | ## Not run: 
outlier_labeler(mtcars$hp)[20:32]
by(mtcars$mpg, mtcars$cyl, outlier_labeler)
tapply(mtcars$mpg, mtcars$cyl, outlier_labeler)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.