Brendan Tracey

Results 38 comments of Brendan Tracey

Sorry, one moment, that's a different error.

I'm not sure what's happening in that code snippet, but this is what I see with almost equivalent code in a different place ``` brendan:~/Documents/mygo/src$ go build blah.com/mathext/amos/airytest/fuzz/ brendan:~/Documents/mygo/src$ go-fuzz-build...

Ah, I see, the original code snippet had a trailing `/` that is evidently allowed with `go build` but not `go fuzz build` Here is the correct report. Sorry for...

``` GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/brendan/Documents/mygo" GORACE="" GOROOT="/Users/brendan/gover/go" GOTOOLDIR="/Users/brendan/gover/go/pkg/tool/darwin_amd64" CC="gcc-5" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/var/folders/s0/2lsmv0jd7x37kkxmc_q6wyj80000gn/T/go-build627340727=/tmp/go-build -gno-record-gcc-switches -fno-common" CXX="g++-5" CGO_ENABLED="1" ```

https://godoc.org/github.com/btracey/myplot#VecXY :) Still, I think the slice representation is more natural for gonum/plot. I think it's more common for users of the code, and it's easier to add in more...

I think your suggestion is reasonable, but just a bit of devil's advocate: Is it actually true that geographic data usually come as struct{X, Y float64})? Doesn't it usually come...

Yes, I agree it supports your point.

I meant the modifying the Radial function within palette, or providing a second function similar to it.

I see. I didn't sufficiently understand how it worked. I'll ponder. When I did this with my own implementation in the past, I set the critical value, and inferred the...

I agree with the general issue -- the algorithm for selecting tick labels could be better. For real numbers it could do a much better job of trying to find...