An open API service indexing awesome lists of open source software.

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.

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
```