Skip to content

Commit

Permalink
change: update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
r3inbowari committed May 1, 2024
1 parent efb35cd commit 9d100b2
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions example/sd/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#
# Issue 192

<img width="1074" alt="SpeedTest-Go" src="https://github.com/showwin/speedtest-go/assets/30739857/203da134-77f7-46a1-bed2-2df3c43ffc7c">

1. Use welford alg to quickly calculate standard deviation and mean.
2. The welford method integrated moving window feature, This allows us to ignore early data with excessive volatility.
3. Use the coefficient of variation(c.v) to reflect the confidence of the test result datasets.
4. When the c.v is less than 0.05, we terminate this test.
2. (a)The welford method integrated moving window feature, This allows us to ignore early data with excessive volatility.
3. (b)The welford method integrated moving Average feature, compare with 2a, this causes early data to be diluted gradually rather than immediately.
4. Use the coefficient of variation(c.v) to reflect the confidence of the test result datasets.
5. When the c.v is less than 0.05, we terminate this test.

Is there a better way?

0 comments on commit 9d100b2

Please sign in to comment.