Metadata-Version: 2.1
Name: datafuncs
Version: 0.1.2
Summary: Functions for Data Processing
Project-URL: Homepage, https://github.com/Liam-Leonard/Data-Funcs
Project-URL: Bug Tracker, https://github.com/Liam-Leonard/Data-Funcs/issues
Author-email: Liam Leonard <liamleonard@outlook.ie>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Data Funcs

Functions for Data Processing

## Functions

.mean - Returns the mean of a list

.grt - Returns the mean of a list for values greater than specified

.grtEqual - Returns the mean of a list for values greater than or equal to specified

.less - Returns the mean of a list for values less than specified

.lessEqual - Returns the mean of a list for values less than or equal to specified

.notEqual - Returns the mean of a list for values not equal to specified

.outlier - Removes the outliers from a list

.imputate - Replaces outliers in a list with the mean of the filtered list.

.median - Returns the median of a list

.mode - Returns the mode of a list

.Help - Prints a list of the above functions and their explanations

### Created by Liam Leonard & Fraser Woodward