Brendan Tracey

Results 42 comments of Brendan Tracey

In this case, just the default. I had a `-inf` value in my grid and didn't realize it. This problem, though, isn't manifested until attempting to save the plot. I...

My thought was maybe something with `plotutil` that returns the heat map and the legend, but it sounds like @ctessum has a much clearer idea.

Could you open an issue on the website with what the behavior should be? The page doesn't exist, so I would expect a 404

Yes, it's that panic. ``` panic: 0.9999999999999998, xmin=0.37009128387828555, xmax=0.9999999999999999, w=0.006299087161217143, bin=100, n=100 goroutine 1 [running]: panic(0x20ebc0, 0xc4200728f0) /Users/brendan/gover/go/src/runtime/panic.go:500 +0x1a1 github.com/gonum/plot/plotter.binPoints(0x364d00, 0xc4200728a0, 0x64, 0xc4200728a0, 0x10, 0x10, 0x626401) /Users/brendan/Documents/mygo/src/github.com/gonum/plot/plotter/histogram.go:184 +0x5cd github.com/gonum/plot/plotter.NewHistogram(0x364d00, 0xc4200728a0,...

``` brendan:~$ go version go version go1.10.3 darwin/amd64 ``` ``` brendan:~$ go env GOARCH="amd64" GOBIN="" GOCACHE="/Users/brendan/Library/Caches/go-build" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOOS="darwin" GOPATH="/Users/brendan/Documents/mygo" GORACE="" GOROOT="/Users/brendan/gover/go" GOTMPDIR="" GOTOOLDIR="/Users/brendan/gover/go/pkg/tool/darwin_amd64" GCCGO="gccgo" CC="clang" CXX="clang++" CGO_ENABLED="1" CGO_CFLAGS="-g...

It appears to be a problem with multiple cells running at the same time. If I execute each cell individually, the code reliably completes. If I have multiple cells queued...

Sorry, I don't know if this is a gopherdata issue or something else. I tried to see if this bug was fixed in go1.11beta1 . I'm getting errors the import...

I also tried deleting all of the data in `$GOPATH/pkg` and am now getting ``` repl.go:5:5: error loading package "golang.org/x/exp/rand" metadata, maybe you need to download (go get), compile (go...

I believe the issue was that I also had to recompile gopherdata. (i.e. clean out `$GOPATH/bin` as well). I've tried it a couple of times and it seems to be...

A minor comment at this point, but it might be nice to have a `DenseMarshaler` type which wraps `*Dense` and implements all of these io routines. That way we can...