From c20d9f23f91dc9820ee55785670e73ef7677c111 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Tue, 9 Feb 2021 14:37:46 +0100 Subject: [PATCH] add link --- block.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/block.md b/block.md index cfa3210..e88aa80 100644 --- a/block.md +++ b/block.md @@ -192,7 +192,9 @@ duration = duration * (rate/duration) # note: the expression above can be simplified to just `duration = rate` ``` -Doing so could be done with a trivial patch to the go runtime and the picture below shows the results from simulating it. So from my point of view it should be possible to eliminate this bias from future versions of Go and I'm planning to send a patch for it soon. That being said, I'm not trained in statistics, so my analysis here might be hilariously misguided. +Doing so could be done with a [trivial patch](https://github.com/felixge/go/compare/master...debias-blockprofile-rate) to the go runtime and the picture below shows the results from simulating it. So from my point of view it should be possible to eliminate this bias from future versions of Go and I'm planning to work with the Go project on that. + +That being said, I'm not trained in statistics, so my analysis here might be hilariously misguided 🙃.