https://github.com/lucianoayres/tdd-python-statistics-standard-deviation
This repository contains Python code for calculating standard deviation, developed using Test-Driven Development (TDD) principles. Standard deviation, a key statistical measure, assesses data dispersion around the mean.
https://github.com/lucianoayres/tdd-python-statistics-standard-deviation
Last synced: 3 months ago
JSON representation
This repository contains Python code for calculating standard deviation, developed using Test-Driven Development (TDD) principles. Standard deviation, a key statistical measure, assesses data dispersion around the mean.
- Host: GitHub
- URL: https://github.com/lucianoayres/tdd-python-statistics-standard-deviation
- Owner: lucianoayres
- License: mit
- Created: 2024-05-12T20:57:24.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-12T20:59:56.000Z (about 1 year ago)
- Last Synced: 2025-01-18T08:36:35.717Z (5 months ago)
- Language: Jupyter Notebook
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tdd-python-statistics-standard-deviation
This repository contains Python code for calculating the standard deviation of a dataset. The standard deviation is a statistical measure that indicates how much the values in a dataset are spread out around the mean.### Features:
- Calculation of the mean of a list of numbers
- Subtraction of a number from each element in a list
- Squaring each element in a list
- Calculation of the standard deviation using the provided functions### Test-Driven Development (TDD):
Test-Driven Development (TDD) methodology has been used in the development of this code. Unit tests are included to ensure the correctness of the implemented functions.