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.
- Host: GitHub
- URL: https://github.com/kentlouisetonino/sw-statistics-calculator
- Owner: kentlouisetonino
- License: mit
- Created: 2022-11-26T13:00:23.000Z (over 2 years ago)
- Default Branch: develop
- Last Pushed: 2025-01-12T03:56:44.000Z (4 months ago)
- Last Synced: 2025-02-04T10:12:00.729Z (3 months ago)
- Topics: numpy, os, python3, statistics
- Language: Python
- Homepage:
- Size: 22.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```