Sebastien Binet

Results 436 comments of Sebastien Binet

> This will be the resolution to v1 -> v2 if that ever happens. you mean `gonum.org/x/[email protected]` ? :) (besides the obvious bikeshedding bait, it would also improve our compatibility...

as I noted in https://github.com/gonum/gonum/issues/354#issuecomment-395685405, a stop-gap solution (that has been used for decades in high energy physics) is to apply a parameter change that take into account the bounds:...

wrt @btracey 's comment: should we first introduce/split KS test into 2 versions?

ie: ```go func KolmogorovSmirnov(x, xw, y, yw []float64) float64 { ... } func KolmogorovSmirnov1Sided(x, cdf []float64) float64 { ... } ``` ? (not particularly attached to the naming I chose,...

it would seem `golangci-lint` is failing (in the latest PRs in `spatial/r{2,3}`). I've migrated `go-hep` to `staticcheck` and, while it probably isn't as exhaustive as `golangci-lint` (which is an aggregation...

in the meantime, I've started doing this for `gonum/plot`: - https://github.com/gonum/plot/pull/745 (as the amount of complaints over there was manageable in a morning's work)

indeed... on my laptop, I get: ``` $> time ./demo.exe false real 0m4.718s user 0m5.738s sys 0m0.023s $> time python3 ./demo.py False real 0m2.862s user 0m2.840s sys 0m0.017s ``` here...

as of https://github.com/golang/go/issues/22451 OpenType support + full `x/image/font.Face` support is in `x/image/font`. having `gg` migrate away from `freetype/truetype.Font` and to `font.Face` would be great.