Permalink
Cannot retrieve contributors at this time
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?
SQL_CW/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (19 sloc)
558 Bytes
This file contains 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
# 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) |