Skip to content

Commit

Permalink
Merge pull request #86 from anilkumarpanda/create-a-comparison-of-imp…
Browse files Browse the repository at this point in the history
…utation-strategies

Create a comparison of imputation strategies
  • Loading branch information
Mateusz Garbacz authored Mar 15, 2021
2 parents 6d4a223 + 5064ce1 commit 97b0661
Show file tree
Hide file tree
Showing 10 changed files with 851 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/api/imputation_selector.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Imputation Selector

This module allows to select imputation strategies.


::: probatus.missing_values.imputation
Binary file added docs/img/imputation_comparision.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
272 changes: 272 additions & 0 deletions docs/tutorials/nb_imputation_comparison.ipynb

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ nav:
- Multivariate Sample Similarity: tutorials/nb_sample_similarity.ipynb
- Univariate Sample Similarity: tutorials/nb_distribution_statistics.ipynb
- Custom Scoring Metrics: tutorials/nb_custom_scoring.ipynb
- Imputation Strategy Comparision : tutorials/nb_imputation_comparison.ipynb
- API:
- probatus.feature_elimination: api/feature_elimination.md
- probatus.interpret: api/model_interpret.md
- probatus.metric_volatility: api/metric_volatility.md
- probatus.missing_values : api/imputation_selector.md
- probatus.sample_similarity: api/sample_similarity.md
- probatus.stat_tests: api/stat_tests.md
- probatus.utils: api/utils.md
Expand Down
23 changes: 23 additions & 0 deletions probatus/missing_values/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Copyright (c) 2020 ING Bank N.V.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
# the Software, and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
# FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
# COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


from .imputation import ImputationSelector

__all__ = ["ImputationSelector"]
Loading

0 comments on commit 97b0661

Please sign in to comment.