plot
plot copied to clipboard
A repository for plotting and visualizing data
This is a continuation of #393. I'd like to look into [this implementation](http://vis.stanford.edu/files/2010-TickLabels-InfoVis.pdf), but in the mean time, change the location of the tick marks.
I am unable to import this project with `go get` or `dep`, which never failed me before. Call to `Parsing meta tags from https://gonum.org/v1/plot?go-get=1 (status code 404)` fails. The page...
right now, we are using `"github.com/golang/freetype"` and `"github.com/golang/freetype/truetype"`. They work fine, but the license is a dual one (BSD-like or GPL2+) : https://github.com/golang/freetype/blob/master/LICENSE We should perhaps consider use instead the...
Now it is not scientific notation. But when the values are quite large numbers, the plot might look ugly being overloaded with zeros. And, as a thought, should we make...
I've got some data which I want to present using a double Y-axis. I can't find any examples or mentions of it anywhere though. Is it possible to use a...
We should consider submitting a paper about `gonum/plot` to the journal of open source software: http://joss.theoj.org/about
Could probably be the default eventually. It allows configurability of density of ticks with the `Width`, and aims to be legible on a per-inch basis. Normally, if you set Width...
Commit https://github.com/gonum/plot/commit/2651c0e3640a62df0ece92952610e4a5579cfd95 added a displayPrecision variable in line 18 (https://github.com/gonum/plot/commit/2651c0e3640a62df0ece92952610e4a5579cfd95#diff-d7f174bedb1bfb5e7a82248d40e9b46fR18). This variable is used to format `float64` ticks. The default value of 4 causes a small-ish number like 20000 to...
For example, on my example plot, the X axis is log scale, but the major tick marks are at "200, 400, 600" and "1e5, 2e5, 3e5, 4e5, 5e5". On a...
I am troubled by the size of the `ColorMap` interface. It can be reduced in size to ``` // A ColorMap maps scalar values to colors. type ColorMap interface {...