Add full Matplotlib visualization exercises: line plots, subplots, charts, customization#20
Merged
Conversation
Add Matplotlib introduction with line plot and figure saving
Add Matplotlib line styles, colors, and marker examples
Add Matplotlib subplot examples for multiple plots in one figure
Add Matplotlib bar chart and pie chart examples
Add Matplotlib histogram and scatter plot examples
Add Matplotlib customization: axis ticks, limits, legends, and layout
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 PR introduces a complete set of Matplotlib exercises for visualizing data in Python, providing strong foundations in plotting techniques essential for data science.
📂 New Folder:
matplotlib/: Contains beginner-friendly visualizations with clean examples and comments.📝 Added Files:
matplotlib_intro.py: Basic line plot, labels, grid, and savefig()matplotlib_styles.py: Line styles, colors, markers, and legendsmatplotlib_subplot.py: Multiple plots using subplots and layoutmatplotlib_bar_pie.py: Bar charts and pie charts with labels and percentagesmatplotlib_hist_scatter.py: Histogram for distributions and scatter plot for correlationmatplotlib_custom.py: Custom ticks, axis limits, figure sizing, and legends⚙️ Updated Requirements:
matplotlibadded torequirements.txtOnce merged, this will complete the Matplotlib section of the project and prepare for the next module: Seaborn or Pandas Visualization.