Skip to content

An outlier discovering package for Julia

License

Notifications You must be signed in to change notification settings

LoveFrootLoops/Outliers.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Outliers.jl

An outlier discovering package for Julia.

At this stage, a naive outlier discovering for numerical vectors is implemented, using the BoxPlot Rules.

This package will be extended for more functionalities in the future.

Outliers and BoxPlot Rules

This method works with 1 dimensional numerical vectors. Suppose we have a random vector of float numbers, then manually append a relatively big number at the end, and we want to find out the outlier(s) among such vector. This can be done using outliers function as following:

using Outliers

a = [randn(10), 100.] # Generate 10 random float numbers, and append a relatively large number as "outlier"
o, idc = outliers(a) # returns the outliers, and according indices in vector

About

An outlier discovering package for Julia

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Julia 100.0%