Metadata-Version: 2.1
Name: subgroups
Version: 0.0.5
Summary: subgroups is a python library which contains a collection of subgroup discovery algorithms and other data analysis utilities
Home-page: https://github.com/antoniolopezmc/subgroups
Author: Antonio López Martínez-Carrasco
Author-email: antoniolopezmc1995@gmail.com
Maintainer: Antonio López Martínez-Carrasco
Maintainer-email: antoniolopezmc1995@gmail.com
License: BSD-3-Clause
Keywords: python,data-science,machine-learning,data-analysis,subgroups,subgroup-discovery
Platform: any
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas (>=1.3.4)
Requires-Dist: bitarray (>=2.3.0)

# subgroups

**subgroups** is a Python library that provides a collection of subgroup discovery algorithms and other data analysis utilities.

## Installation

The source code is currently hosted on: https://github.com/antoniolopezmc/subgroups

To install subgroups library from pip, it is neccesary to execute:

```sh
pip install subgroups
```

## Testing

After installing the library, a collection of tests can be launched by executing:

```python
import subgroups.tests as st
st.run_all_tests()
```
