GithubHelp home page GithubHelp logo

khushgrover / outlier-removal-python Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 12 KB

Removing Outliers in a dataset using Python

Home Page: https://pypi.org/project/outlier-removal-101703289

License: MIT License

Python 100.00%

outlier-removal-python's Introduction

Outlier Removal using Interquartile Range - Python

Project 2 : UCS633

Submitted By: Khushnuma Grover 101703289


pypi: https://pypi.org/project/outlier-removal-101703289
git: https://github.com/khushgrover/outlier-removal-python.git


What are Outliers ?

There are certain things which, if are not done in the Exploratory Data Analysis phase, can affect further statistical/Machine Learning modelling. One of them is finding Outliers.

In statistics, an outlier is an observation point that is distant from other observations.

Interquartile Range Method

A robust method for labelling outliers is the IQR (interquartile range) method of outlier detection developed by John Tukey, the pioneer of exploratory data analysis. This was in the days of calculation and plotting by hand, so the datasets involved were typically small, and the emphasis was on understanding the story the data told. A box-and-whisker plot (also a Tukey contribution), shows this method in action.

A box-and-whisker plot uses quartiles (points that divide the data into four groups of equal size) to plot the shape of the data. The box represents the 1st and 3rd quartiles, which are equal to the 25th and 75th percentiles. The line inside the box represents the 2nd quartile, which is the median.

The interquartile range, which gives this method of outlier detection its name, is the range between the first and the third quartiles (the edges of the box). Tukey considered any data point that fell outside of either 1.5 times the IQR below the first โ€“ or 1.5 times the IQR above the third โ€“ quartile to be outside or far out. In a classic box-and-whisker plot, the 'whiskers' extend up to the last data point that is not outside.


How to use this package:

In this package this method is implemented. It take in the dataset csv file and outputs out a csv file in the rows having outlier values are removed. This package handles univariate datasets as well as multivariate. Each feature having outlier rows are removed.

OUTLIER-REMOVAL-KHUSHNUMA-101703289 can be run as in the following example:

Installing the package

On your Command Prompt run the following command:

pip install outlier-removal-101703289

Sample dataset

The dataset should be constructed with each row representing a data, and each column representing a criterion feature, ending with a target.


Feature Target
10 0.62
100 0.44
100 0.31
100 0.67
10 0.56

In Command Prompt:

>> remove-outlier data.csv

In Python IDLE:

>>> from outlier_removal.outlier import remove_outlier
>>> file1 = pd.read_csv('data.csv')
>>> remove_outlier(file1)

Output

Feature Target
100 0.44
100 0.31
100 0.67

outlier-removal-python's People

Contributors

khushgrover avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.