Add plot_decision_regions_3d for stacked 3D decision regions #488#1154
Open
mariam851 wants to merge 3 commits intorasbt:masterfrom
Open
Add plot_decision_regions_3d for stacked 3D decision regions #488#1154mariam851 wants to merge 3 commits intorasbt:masterfrom
mariam851 wants to merge 3 commits intorasbt:masterfrom
Conversation
38dfcb5 to
06ffcea
Compare
06ffcea to
7fe774d
Compare
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
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.
Hi @rasbt,
I have implemented the
plot_decision_regions_3dfunction to address the request in issue #488. Following your suggestion in the discussion, I have created this as a standalone function to maintain the modularity of the library and avoid over-complicating the existing 2D plotting logic.Key Features:
scatter_points=True) to provide context for the decision surfaces.predictmethod.Example Output:
I have tested the implementation with a linear SVM on a 3-feature dataset. As seen in the image below, the function clearly illustrates the decision surfaces at various levels of the third feature:
I believe this addition will be very helpful for users trying to interpret higher-dimensional models. Looking forward to your feedback!
Fixes #488