feat: Add box-plots and fix various issues#191
Open
pedrodicati wants to merge 8 commits intofbdesignpro:masterfrom
Open
feat: Add box-plots and fix various issues#191pedrodicati wants to merge 8 commits intofbdesignpro:masterfrom
pedrodicati wants to merge 8 commits intofbdesignpro:masterfrom
Conversation
This commit introduces a number of improvements to the Sweetviz library, including a new feature and several bug fixes. New Features: - Added the option to use box-plots instead of histograms for numerical features. This can be enabled by setting `use_boxplots = 1` in the `sweetviz_defaults.ini` file. Bug Fixes: - Fixed a `KeyError: 'cannot use a single bool to index into setitem'` error that occurred when using `compare_intra` with a boolean series. - Added a check to the `compare_intra` method to ensure that the `names` parameter has a length of 2. - Added a check to the `compare_intra` method to ensure that the index of the source dataframe and the condition series are the same. Code Quality: - Fixed a number of linting issues, including unused imports, unused variables, and bare excepts. - Improved the code formatting using `black`.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit improves the `README.md` file to be more comprehensive and user-friendly. It also adds a `CONTRIBUTING.md` file to provide guidelines for contributors. The `README.md` file has been updated with: - A more modern and user-friendly structure. - More details about the features, the parameters, and the configuration options. - Links to the official documentation and the contributing guidelines. - Absolute URLs for the images and the example report to ensure that they work correctly when the file is viewed on PyPI. The `CONTRIBUTING.md` file provides guidelines for contributors on how to: - Report bugs and request features. - Set up their development environment. - Make a pull request. - Get help.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit introduces a number of improvements to the Sweetviz library, including a new feature and several bug fixes.
New Features:
use_boxplots = 1in thesweetviz_defaults.inifile.Bug Fixes:
KeyError: 'cannot use a single bool to index into setitem'error that occurred when usingcompare_intrawith a boolean series.compare_intramethod to ensure that thenamesparameter has a length of 2.compare_intramethod to ensure that the index of the source dataframe and the condition series are the same.Code Quality:
black.