Metadata-Version: 2.4
Name: kevin_statistics
Version: 0.0.6
Summary: For performing operations on weather data
Home-page: https://github.com/kevinwhitedhrh/kevin_statistics
Author: Kevin Whited
Author-email: kevinwhitedhrh@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=2.0.0
Dynamic: license-file

# kevin_statistics

A lightweight Python package for performing common statistical calculations.

[![Python versions](https://img.shields.io/pypi/pyversions/kevin-statistics.svg)](https://pypi.org/project/kevin-statistics/)
[![License](https://img.shields.io/pypi/l/kevin-statistics.svg)](LICENSE)

## Features

- Calculate descriptive statistics from numeric data.
- Provide simple, reusable functions for statistical analysis on pandas dataframes.

## Installation

```bash
pip install kevin-statistics
```
```bash
pip install pandas
```


## Quick start

```python
import kevin_statistics

or

from kevin_statistics import statistics as stats

```

## Usage

Import the functions you need from `kevin_statistics` and pass them numeric
iterables. Refer to the package source and docstrings for the complete API.

```python
from kevin_statistics import statistics as stats

stats.percentile(data, 10)
```

Other available functions can be called in the same way:

```python
stats.mean(data)
stats.max(data)
stats.min(data)
stats.range(data)
stats.median(data)
stats.mode(data)
stats.variance(data)
stats.standard_deviation(data)
stats.count(data)
stats.quartiles(data)
stats.sum(data)
stats.summary_statistics(data)
```


## Requirements

- Python 3.8 or later
- pandas

## Documentation

Documentation is provided in the package source and function docstrings.


## Contributing

Contributions are welcome. Please open an issue to discuss significant changes before submitting a pull request.

## License

This project is licensed under the MIT License. See [LICENSE](LICENSE) for details.

## Author

Kevin Whited — [GitHub](https://github.com/kevinwhitedhrh)
