Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kalpit-sharma-dev/math-stats
https://github.com/kalpit-sharma-dev/math-stats
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kalpit-sharma-dev/math-stats
- Owner: kalpit-sharma-dev
- Created: 2024-11-15T18:25:57.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-15T19:09:43.000Z (2 months ago)
- Last Synced: 2024-11-15T19:28:23.410Z (2 months ago)
- Language: Go
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#### math-stats
trying to create a similar library in golang just like python to calculate descriptive stats for data### v2
Performance Complexity
Mean, Min, Max: O(1)
Median: O(1) for maintenance, O(1) for retrieval.
Percentiles: O(log n) for insertion, O(1) for retrieval with pre-sorted slice.