plot
plot copied to clipboard
A repository for plotting and visualizing data
`plot.Legend` doesn't implement `plot.GlyphBoxer`. It probably should so we don't unadvertantly cut off some of its symbols or glyphs. one should check the display of `testdata/legend_standalone_golden.png` as noted in https://github.com/gonum/plot/pull/708#issuecomment-869558221.
Rotated axes' labels and plot title get a mismatched glyphbox and are cut off the plot. 
Fixes #336 This allows for easy wrappers around the plot.DefaultTicks struct with custom format functions: ```` type myCustomFormatTicks struct{} var _ plot.Ticker = myCustomFormatTicks{} func (myCustomFormatTicks) Ticks(min, max float64, format...
This change modifies the bar charts to show their values as a label on top of each bar if the user sets the new `b.ShowLabel` option to true. This PR...
Added a note about needing to install libgles-dev package if you get an error during install.
See https://github.com/kortschak/databook_gonum/blob/master/CH02/CH02_SEC02_2_Denoise.md It would be nice to be able to specify a legend background colour.
### What are you trying to do? Checkout Gonum, run all the tests ### What did you do? ``` $ go test ./... ``` ### What did you expect to...
See https://ai.googleblog.com/2019/08/turbo-improved-rainbow-colormap-for.html
the original query had landed there: https://github.com/go-hep/hep/issues/701 it would be great to allow some filling an area of a plot with a gradient. _e.g.:_ something along the lines of ...
unless I am mistaken, gonum/plot doesn't expose primitives to draw ellipses nor arcs of ellipses. `vg.Path` exposes a `vg.ArcComp` but that's only to draw a circular arc. one can of...