-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from alteryx/quickstart-installation_update
Documentation Updates and Relevant Links added
- Loading branch information
Showing
4 changed files
with
94 additions
and
201 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,30 @@ | |
CheckMates is an Alteryx Open Source library which catches and warns of problems with your data and problem setup before modeling. | ||
|
||
## Installation | ||
|
||
```bash | ||
python -m pip install checkmates | ||
``` | ||
## Start | ||
#### Load and validate example data | ||
```python | ||
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 | ||
|
||
|
@@ -14,7 +36,7 @@ Read more about CheckMates on our [documentation page](#): | |
|
||
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: | ||
1. For usage questions, use [Stack Overflow](#) with the `CheckMates` tag. | ||
2. For bugs, issues, or feature requests start a [Github issue](#). | ||
2. For bugs, issues, or feature requests start a [Github issue](https://github.com/alteryx/CheckMates/issues). | ||
3. For discussion regarding development on the core library, use [Slack](#). | ||
4. For everything else, the core developers can be reached by email at [email protected] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.