-
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 #11 from alteryx/first_release
release v0.1.0 CheckMates
- Loading branch information
Showing
43 changed files
with
161 additions
and
157 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: General Technical Question | ||
about: "If you have a question like *How can I check for ID Columns?* you can ask on StackOverflow using the #checkers tag." | ||
url: https://stackoverflow.com/questions/tagged/checkers | ||
about: "If you have a question like *How can I check for ID Columns?* you can ask on StackOverflow using the #checkmates tag." | ||
url: https://stackoverflow.com/questions/tagged/checkmates | ||
- name: Real-time chat | ||
url: https://join.slack.com/t/alteryx-oss/shared_invite/zt-182tyvuxv-NzIn6eiCEf8TBziuKp0bNA | ||
about: "If you want to meet others in the community and chat about all things Alteryx OSS then check out our Slack." |
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.venv/ | ||
**/__pycache__/ | ||
.DS_Store | ||
Checkers.egg-info/ | ||
Checkmates.egg-info/ | ||
.python-version | ||
pdm.lock |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
"""General CheckMates directory.""" | ||
|
||
from checkmates.data_checks.checks.data_check import DataCheck | ||
from checkmates.data_checks.datacheck_meta.data_check_message_code import ( | ||
DataCheckMessageCode, | ||
) | ||
from checkmates.data_checks.datacheck_meta.data_check_action import DataCheckAction | ||
from checkmates.data_checks.datacheck_meta.data_check_action_option import ( | ||
DataCheckActionOption, | ||
DCAOParameterType, | ||
DCAOParameterAllowedValuesType, | ||
) | ||
from checkmates.data_checks.datacheck_meta.data_check_action_code import ( | ||
DataCheckActionCode, | ||
) | ||
from checkmates.data_checks.checks.data_checks import DataChecks | ||
from checkmates.data_checks.datacheck_meta.data_check_message import ( | ||
DataCheckMessage, | ||
DataCheckWarning, | ||
DataCheckError, | ||
) | ||
from checkmates.data_checks.datacheck_meta.data_check_message_type import ( | ||
DataCheckMessageType, | ||
) | ||
from checkmates.data_checks.checks.id_columns_data_check import IDColumnsDataCheck | ||
|
||
from checkmates.problem_types.problem_types import ProblemTypes | ||
from checkmates.problem_types.utils import ( | ||
handle_problem_types, | ||
detect_problem_type, | ||
is_regression, | ||
is_binary, | ||
is_multiclass, | ||
is_classification, | ||
is_time_series, | ||
) | ||
|
||
from checkmates.exceptions.exceptions import ( | ||
DataCheckInitError, | ||
MissingComponentError, | ||
ValidationErrorCode, | ||
) | ||
|
||
from checkmates.utils.gen_utils import classproperty | ||
from checkmates.utils.woodwork_utils import infer_feature_types |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
"""Base data checks and ID column data check.""" | ||
|
||
from checkmates.data_checks.checks.data_check import DataCheck | ||
from checkmates.data_checks.datacheck_meta.data_check_message_code import ( | ||
DataCheckMessageCode, | ||
) | ||
from checkmates.data_checks.datacheck_meta.data_check_action import DataCheckAction | ||
from checkmates.data_checks.datacheck_meta.data_check_action_option import ( | ||
DataCheckActionOption, | ||
DCAOParameterType, | ||
DCAOParameterAllowedValuesType, | ||
) | ||
from checkmates.data_checks.datacheck_meta.data_check_action_code import ( | ||
DataCheckActionCode, | ||
) | ||
from checkmates.data_checks.checks.data_checks import DataChecks | ||
from checkmates.data_checks.datacheck_meta.data_check_message import ( | ||
DataCheckMessage, | ||
DataCheckWarning, | ||
DataCheckError, | ||
) | ||
from checkmates.data_checks.datacheck_meta.data_check_message_type import ( | ||
DataCheckMessageType, | ||
) | ||
from checkmates.data_checks.checks.id_columns_data_check import IDColumnsDataCheck | ||
|
||
from checkmates.data_checks.datacheck_meta.utils import handle_data_check_action_code |
2 changes: 1 addition & 1 deletion
2
checkers/data_checks/checks/data_check.py → checkmates/data_checks/checks/data_check.py
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
6 changes: 3 additions & 3 deletions
6
checkers/data_checks/checks/data_checks.py → checkmates/data_checks/checks/data_checks.py
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
4 changes: 2 additions & 2 deletions
4
...ta_checks/checks/id_columns_data_check.py → ...ta_checks/checks/id_columns_data_check.py
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
4 changes: 2 additions & 2 deletions
4
...hecks/datacheck_meta/data_check_action.py → ...hecks/datacheck_meta/data_check_action.py
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
2 changes: 1 addition & 1 deletion
2
.../datacheck_meta/data_check_action_code.py → .../datacheck_meta/data_check_action_code.py
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
6 changes: 3 additions & 3 deletions
6
...atacheck_meta/data_check_action_option.py → ...atacheck_meta/data_check_action_option.py
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
2 changes: 1 addition & 1 deletion
2
...ecks/datacheck_meta/data_check_message.py → ...ecks/datacheck_meta/data_check_message.py
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
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
checkers/data_checks/datacheck_meta/utils.py → ...mates/data_checks/datacheck_meta/utils.py
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
2 changes: 1 addition & 1 deletion
2
checkers/exceptions/__init__.py → checkmates/exceptions/__init__.py
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
checkers/problem_types/__init__.py → checkmates/problem_types/__init__.py
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
2 changes: 1 addition & 1 deletion
2
checkers/problem_types/problem_types.py → checkmates/problem_types/problem_types.py
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
"""Utility methods.""" | ||
from checkmates.utils.gen_utils import classproperty | ||
from checkmates.utils.woodwork_utils import infer_feature_types |
File renamed without changes.
File renamed without changes.
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.