Plotter is an interface that wraps the Plot method. Some standard implementations of Plotter can be found in the gonum.org/v1/plot/plotter package, documented here: https://godoc.org/gonum.org/v1/plot/plotter
| 74 | // package, documented here: |
| 75 | // https://godoc.org/gonum.org/v1/plot/plotter |
| 76 | type Plotter interface { |
| 77 | // Plot draws the data to a draw.Canvas. |
| 78 | Plot(draw.Canvas, *Plot) |
| 79 | } |
| 80 | |
| 81 | // DataRanger wraps the DataRange method. |
| 82 | type DataRanger interface { |
no outgoing calls
no test coverage detected