https://github.com/kentlouisetonino/sw-project-data-analysis
My project for AMA MATH 6200 course.
https://github.com/kentlouisetonino/sw-project-data-analysis
data-analysis python school-project
Last synced: 2 months ago
JSON representation
My project for AMA MATH 6200 course.
- Host: GitHub
- URL: https://github.com/kentlouisetonino/sw-project-data-analysis
- Owner: kentlouisetonino
- License: mit
- Created: 2024-11-06T09:17:14.000Z (6 months ago)
- Default Branch: develop
- Last Pushed: 2025-02-09T11:19:30.000Z (3 months ago)
- Last Synced: 2025-02-09T12:24:05.477Z (3 months ago)
- Topics: data-analysis, python, school-project
- Language: Python
- Homepage:
- Size: 84.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Description
> - A course project for course `MATH 6200 - Data Analysis`.
## Setup
> - Make sure you have a `Python v3`.
> - Create a `virtual environment`.
```sh
python3 -m venv venv
```> - Activate the `virtual environment`.
```sh
source venv/bin/activate
```> - Install the packages define in `requirements.txt`.
```sh
pip3 install -r requirements.txt
```> - Run the programs.
```sh
# Run the program for problemc a.
make answer-a# Run the program for problem b.
make answer-b# Run the program for problem c.
make answer-c
```