Name | badgers JSON |
Version |
0.0.10
JSON |
| download |
home_page | None |
Summary | Badgers: bad data generators |
upload_time | 2024-12-20 21:10:36 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | BSD 3-Clause License Copyright (c) 2023, the badgers developers All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
keywords |
bad data
data quality
data science
|
VCS |
|
bugtrack_url |
|
requirements |
numpy
scikit-learn
networkx
pandas
scipy
tox
mkdocs
mkdocstrings
mkdocstrings-python
mkdocs-gen-files
mkdocs-material
mkdocs-literate-nav
mkdocs-jupyter
jupyterlab
matplotlib
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Badgers: bad data generators
[badgers](https://github.com/Fraunhofer-IESE/badgers) is a python library for generating bad data (more precisely to augment existing data with data quality deficits such as outliers, missing values, noise, etc.). It is based upon a simple API and provides a set of generators object that can generate data quality deficits from existing data.
A word of caution: badgers is still in an early development stage. Although the core structure of the package and the `generate(X,y)` signature are not expected to change, some API details (like attributes names) are likely to change.
The full documentation is hosted here: [https://fraunhofer-iese.github.io/badgers/](https://fraunhofer-iese.github.io/badgers/).
For a quick-start, you can install `badgers` with pip:
```bash
pip install badgers
```
Import badgers as any other library and start using it:
```python
from sklearn.datasets import make_blobs
from badgers.generators.tabular_data.noise import GaussianNoiseGenerator
X, y = make_blobs()
trf = GaussianNoiseGenerator(noise_std=0.5)
Xt, yt = trf.generate(X,y)
```
More examples are available in the [tutorials](https://fraunhofer-iese.github.io/badgers/tutorials/Imbalance-Tabular-Data/) section.
The API documentation is also available in the [API](https://fraunhofer-iese.github.io/badgers/reference/badgers/) section.
Interested developers will find relevant information in the [CONTRIBUTING.md](CONTRIBUTING.md) page.
Raw data
{
"_id": null,
"home_page": null,
"name": "badgers",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "Julien Siebert <julien.siebert@iese.fraunhofer.de>",
"keywords": "bad data, data quality, data science",
"author": null,
"author_email": "Julien Siebert <julien.siebert@iese.fraunhofer.de>",
"download_url": "https://files.pythonhosted.org/packages/81/b3/ff59cbe8c17a07308fe3e7c91edaae15d901247e140c7874ed898a69e922/badgers-0.0.10.tar.gz",
"platform": null,
"description": "# Badgers: bad data generators\n\n[badgers](https://github.com/Fraunhofer-IESE/badgers) is a python library for generating bad data (more precisely to augment existing data with data quality deficits such as outliers, missing values, noise, etc.). It is based upon a simple API and provides a set of generators object that can generate data quality deficits from existing data.\n\nA word of caution: badgers is still in an early development stage. Although the core structure of the package and the `generate(X,y)` signature are not expected to change, some API details (like attributes names) are likely to change.\n\n\nThe full documentation is hosted here: [https://fraunhofer-iese.github.io/badgers/](https://fraunhofer-iese.github.io/badgers/).\n\nFor a quick-start, you can install `badgers` with pip:\n\n```bash\npip install badgers\n```\n\nImport badgers as any other library and start using it:\n\n```python\nfrom sklearn.datasets import make_blobs\nfrom badgers.generators.tabular_data.noise import GaussianNoiseGenerator\n\nX, y = make_blobs()\ntrf = GaussianNoiseGenerator(noise_std=0.5)\nXt, yt = trf.generate(X,y)\n```\n\nMore examples are available in the [tutorials](https://fraunhofer-iese.github.io/badgers/tutorials/Imbalance-Tabular-Data/) section.\n\nThe API documentation is also available in the [API](https://fraunhofer-iese.github.io/badgers/reference/badgers/) section.\n\nInterested developers will find relevant information in the [CONTRIBUTING.md](CONTRIBUTING.md) page. ",
"bugtrack_url": null,
"license": "BSD 3-Clause License Copyright (c) 2023, the badgers developers All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
"summary": "Badgers: bad data generators",
"version": "0.0.10",
"project_urls": {
"Bug Tracker": "https://github.com/Fraunhofer-IESE/badgers/issues",
"Homepage": "https://github.com/Fraunhofer-IESE/badgers"
},
"split_keywords": [
"bad data",
" data quality",
" data science"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "59db79b050577105a3f6fbded0d71c03f347cd3ce206209ef4c641e91030af21",
"md5": "6807c431f73caf4a0d201c66ba9acc07",
"sha256": "61b41d50bfeaad22d527de22c10034003ad54910f4f8aeefe7b5d6a7b1ef8763"
},
"downloads": -1,
"filename": "badgers-0.0.10-py3-none-any.whl",
"has_sig": false,
"md5_digest": "6807c431f73caf4a0d201c66ba9acc07",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 32165,
"upload_time": "2024-12-20T21:10:35",
"upload_time_iso_8601": "2024-12-20T21:10:35.522978Z",
"url": "https://files.pythonhosted.org/packages/59/db/79b050577105a3f6fbded0d71c03f347cd3ce206209ef4c641e91030af21/badgers-0.0.10-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "81b3ff59cbe8c17a07308fe3e7c91edaae15d901247e140c7874ed898a69e922",
"md5": "10027dafb7267ef916578e8163ec320b",
"sha256": "550bd8d7bd42dba33090b1d0ccedebd6bade2528fc32ecd615a829bfb9d89ec7"
},
"downloads": -1,
"filename": "badgers-0.0.10.tar.gz",
"has_sig": false,
"md5_digest": "10027dafb7267ef916578e8163ec320b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 2596985,
"upload_time": "2024-12-20T21:10:36",
"upload_time_iso_8601": "2024-12-20T21:10:36.781730Z",
"url": "https://files.pythonhosted.org/packages/81/b3/ff59cbe8c17a07308fe3e7c91edaae15d901247e140c7874ed898a69e922/badgers-0.0.10.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-20 21:10:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Fraunhofer-IESE",
"github_project": "badgers",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "numpy",
"specs": [
[
"~=",
"2.2.0"
]
]
},
{
"name": "scikit-learn",
"specs": [
[
"~=",
"1.6.0"
]
]
},
{
"name": "networkx",
"specs": [
[
"~=",
"3.4.2"
]
]
},
{
"name": "pandas",
"specs": [
[
"~=",
"2.2.3"
]
]
},
{
"name": "scipy",
"specs": [
[
"~=",
"1.14.1"
]
]
},
{
"name": "tox",
"specs": [
[
"~=",
"4.23.2"
]
]
},
{
"name": "mkdocs",
"specs": [
[
"~=",
"1.4.3"
]
]
},
{
"name": "mkdocstrings",
"specs": [
[
"~=",
"0.25.2"
]
]
},
{
"name": "mkdocstrings-python",
"specs": [
[
"~=",
"1.10.9"
]
]
},
{
"name": "mkdocs-gen-files",
"specs": [
[
"~=",
"0.5.0"
]
]
},
{
"name": "mkdocs-material",
"specs": [
[
"~=",
"9.1.12"
]
]
},
{
"name": "mkdocs-literate-nav",
"specs": [
[
"~=",
"0.6.0"
]
]
},
{
"name": "mkdocs-jupyter",
"specs": [
[
"~=",
"0.24.1"
]
]
},
{
"name": "jupyterlab",
"specs": [
[
"~=",
"4.3.4"
]
]
},
{
"name": "matplotlib",
"specs": [
[
"~=",
"3.10.0"
]
]
}
],
"tox": true,
"lcname": "badgers"
}