1 // Copyright ©2017 The Gonum Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Package plot provides an API for setting up plots, and primitives for 6 // drawing on plots. 7 // 8 // Plot is the basic type for creating a plot, setting the title, axis 9 // labels, legend, tick marks, etc. Types implementing the Plotter 10 // interface can draw to the data area of a plot using the primitives 11 // made available by this package. Some standard implementations 12 // of the Plotter interface can be found in the 13 // gonum.org/v1/plot/plotter package 14 // which is documented here: 15 // https://godoc.org/gonum.org/v1/plot/plotter 16 package plot // import "gonum.org/v1/plot" 17