Welcome to my Matplotlib Learning Repository!
This repository contains everything I’ve learned while exploring Python’s powerful matplotlib library for data visualization. All the code and visualizations were created and tested in Google Colab.
- How to install and import the
matplotlib.pyplotmodule - Using
numpyto generate numerical data for plotting
- Plotting basic line graphs
- Visualizing sine and cosine waves using NumPy
- Plotting a parabola to understand quadratic curves
- Adding titles, x-axis, and y-axis labels for clarity
- Creating bar plots to represent categorical data
- Plotting multiple graphs together on the same axes
- Designing pie charts with labels and percentages
- Generating scatter plots to show relationships between two datasets
- Creating 3D scatter plots using
mpl_toolkits.mplot3dfor visualizing data in three dimensions
All the visualizations were developed and tested using Google Colab, which provides an interactive and cloud-based Python environment with all essential libraries pre-installed.
Since these were personal learning notebooks, no direct Colab links are included in this repository.
However, if you want to try similar code yourself:
- Go to Google Colab
- Start a new notebook
- Paste the code snippets from this repository
- Run the cells and experiment freely!
I learned these concepts from the YouTube channel [Siddhardhan].
His explanations and step-by-step tutorials made learning matplotlib simple and enjoyable.
- Matplotlib
- NumPy