CheckMates is an AutoML library which catches and warns of problems with your data and problem setup before modeling.
Project description
CheckMates
CheckMates is an Alteryx Open Source library which catches and warns of problems with your data and problem setup before modeling.
Installation
python -m pip install checkmates
Start
Load and validate example data
from checkmates import (
IDColumnsDataCheck
)
import pandas as pd
id_data_check_name = IDColumnsDataCheck.name
X_dict = {
"col_1": [1, 1, 2, 3],
"col_2": [2, 3, 4, 5],
"col_3_id": [0, 1, 2, 3],
"Id": [3, 1, 2, 0],
"col_5": [0, 0, 1, 2],
"col_6": [0.1, 0.2, 0.3, 0.4],
}
X = pd.DataFrame.from_dict(X_dict)
id_cols_check = IDColumnsDataCheck(id_threshold=0.95)
print(id_cols_check.validate(X))
Next Steps
Read more about CheckMates on our documentation page:
Support
The CheckMates community is happy to provide support to users of CheckMates. Project support can be found in four places depending on the type of question:
- For usage questions, use Stack Overflow with the
CheckMates
tag. - For bugs, issues, or feature requests start a Github issue.
- For discussion regarding development on the core library, use Slack.
- For everything else, the core developers can be reached by email at open_source_support@alteryx.com
Built at Alteryx
CheckMates is an open source project built by Alteryx. To see the other open source projects we’re working on visit Alteryx Open Source. If building impactful data science pipelines is important to you or your business, please get in touch.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file CheckMates-0.2.0.tar.gz
.
File metadata
- Download URL: CheckMates-0.2.0.tar.gz
- Upload date:
- Size: 87.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2b252e82ef508c90a173bf2d0427463e87f59812cde40f021e42ffc922673bb |
|
MD5 | 63f4f8619b560c0251bf7180979ae45f |
|
BLAKE2b-256 | a2c9f8b1ecf40a54a84ea0120e98e01638c09ac55bfc533d986b34d6258503a9 |
File details
Details for the file CheckMates-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: CheckMates-0.2.0-py3-none-any.whl
- Upload date:
- Size: 124.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e17b75e95df27c5851bedf340b14191d9bd3a7844b00ac58c87f33c6bd4506b4 |
|
MD5 | 172b241d3bb680743908e0fa2445fcc5 |
|
BLAKE2b-256 | 7d98f48db9d376819f4e580497c15f62c148177dedd277aa9970981dcd8a9c98 |