https://github.com/eruffaldi/cpplivestat
C++ code for incremental computation of descriptive statistics. This example supports merge operation for parallel computation
https://github.com/eruffaldi/cpplivestat
Last synced: 5 months ago
JSON representation
C++ code for incremental computation of descriptive statistics. This example supports merge operation for parallel computation
- Host: GitHub
- URL: https://github.com/eruffaldi/cpplivestat
- Owner: eruffaldi
- License: apache-2.0
- Created: 2015-09-17T19:39:09.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-17T21:13:12.000Z (almost 11 years ago)
- Last Synced: 2023-03-24T11:10:58.990Z (over 3 years ago)
- Language: C++
- Homepage:
- Size: 141 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cpplivestat
C++ code for incremental computation of descriptive statistics. This example supports merge operation for parallel computation
int data2[] = {27,52,92,3,9,2,20};
LiveStatistics q1;
for(auto & x: data1)
q1.add(x);