Enhanced Exploratory Data Analysis (EDA) Function with Improved Plot Titles, Labels, and Color Palettes #92
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.
Hello mentors, PAs.
I've made several improvements to the plots:
Updated the main title for histogram plots to provide a more descriptive overview: plt.suptitle('Distributions of Numeric Columns').
Adjusted the titles for count plots to include the names of the respective categorical columns: plt.title(f'Count of {col}').
Added labels for the y-axis of pie charts to enhance readability: plt.ylabel('').
In addition to these enhancements, I've refined the color palettes for better visualization:
Implemented the viridis palette for count plots to improve visualization: palette='viridis'.
Utilized the Set2 palette for box plots to enhance the distinction between outliers: palette='Set2'.
Applied the Set3 palette for pie charts to make them visually appealing: colors=sns.color_palette('Set3').
These changes should improve the clarity and aesthetics of the plots, enhancing their effectiveness in conveying information. Let me know if there's anything else you'd like to adjust!
Here are few secreenshots-