https://github.com/mardavsj/matplotlib-in-python
The fundamentals of Python Matplotlib Library.
https://github.com/mardavsj/matplotlib-in-python
data-visualization matplotlib python
Last synced: about 1 month ago
JSON representation
The fundamentals of Python Matplotlib Library.
- Host: GitHub
- URL: https://github.com/mardavsj/matplotlib-in-python
- Owner: mardavsj
- License: mit
- Created: 2024-03-06T11:48:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-06T13:18:47.000Z (over 2 years ago)
- Last Synced: 2025-02-14T01:48:23.422Z (over 1 year ago)
- Topics: data-visualization, matplotlib, python
- Language: Jupyter Notebook
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://matplotlib.org/stable/index.html)
[](https://github.com/mardavsj/Matplotlib-in-Python/blob/main/LICENSE)

Matplotlib is a Python library for creating various types of visualizations, such as plots, histograms, and scatterplots. It's highly customizable and commonly used for data visualization tasks, offering flexibility and control over the appearance of the plots.
Matplotlib was initially released in 2003 by John D. Hunter. It is a powerful and open-source library Python library for data visualization.
[](https://github.com/python/)
[](https://github.com/matplotlib/matplotlib)
## Pre-requisites :
* Python
* Pip or Conda (depending on user)
## Installation :
Install Matplotlib with pip :
```bash
pip install matplotlib
```
Install Matplotlib with conda :
```bash
# anaconda main channel
conda install matplotlib
# conda-forge community channel
conda install -c conda-forge matplotlib
```
## Why use Matplotlib ?
* Matplotlib offers a wide range of plot types, making it suitable for diverse data visualization needs.
* It allows users to customize every aspect of their plots, providing control over colors, labels, annotations, and more.
* Matplotlib integrates seamlessly with other Python libraries and has a large and active community, providing extensive documentation and support.
## Video (Matplotlib Playlist) & Blog Tutorial :
[](https://www.youtube.com/playlist?list=PLjVLYmrlmjGcC0B_FP3bkJ-JIPkV5GuZR)
[](https://medium.com/analytics-vidhya/a-beginners-guide-to-matplotlib-for-data-visualization-and-exploration-in-python-3fb32d03c3cd)