Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# SQL_CW
SQL DB to CSV Data Visualisation
# Installing and Setup:
##### ``• Latest version of Python required (built using Python 3.10.1)``
##### ``• Install matplotlib, pandas and numpy:``
```py
pip install matplotlib
pip install pandas
pip install numpy
```
```py
import matplotlib.pyplot as PLT
import pandas as PD
import numpy
```
# Modules used and Sources:
## [matplotlib](https://matplotlib.org/stable/api/index)
## [pandas](https://pandas.pydata.org/docs/)
## [Object Orientation in Python](https://docs.python.org/3/tutorial/classes.html)