This is a beginner-friendly Python project where I explored basic NumPy array creation and data visualization with Matplotlib.
The project demonstrates how vehicle count affects air pollution levels using a simple scatter plot.
This mini project includes:
- Array Creation with NumPy
- One-dimensional and two-dimensional arrays
- Random number generation
- Array operations like
arange(),random(), andones()
- Data Visualization
- A scatter plot showing the relationship between the number of vehicles and air pollution levels (AQI).
- NumPy - For numerical operations and array manipulation
- Matplotlib - For creating visualizations
Install them (if not already installed):
pip install numpy matplotlib