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

https://github.com/kentlouisetonino/sw-statistics-calculator

A CLI program that compute mean, median, and percentiles.
https://github.com/kentlouisetonino/sw-statistics-calculator

numpy os python3 statistics

Last synced: about 1 month ago
JSON representation

A CLI program that compute mean, median, and percentiles.

Awesome Lists containing this project

README

        

## Description

> - A CLI program that compute mean, median, and percentiles.




## Setup

> - Setup a virtual environment.

```sh
python3 -m venv venv
```

> - Activate the virtual environment.

```sh
source venv/bin/activate
```

> Install the packages.

```bash
pip3 install -r requirements.txt
```
> Run the programs.

```bash
# Run the re_scale.py program.
make main
```