From 9d100b2aeddf53f1222b60a9192260c3921c9442 Mon Sep 17 00:00:00 2001 From: r3inbowari Date: Thu, 2 May 2024 04:08:08 +0800 Subject: [PATCH] change: update readme.md --- example/sd/README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/example/sd/README.md b/example/sd/README.md index 03663b9..7bd48d4 100644 --- a/example/sd/README.md +++ b/example/sd/README.md @@ -1,6 +1,11 @@ -# +# Issue 192 + +SpeedTest-Go 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. \ No newline at end of file +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? \ No newline at end of file