Documentation
¶
Overview ¶
Packag data contains various data interfaces and prototypical implementations.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Boxplotter ¶
type Boxplotter interface {
// Len returns the number of boxes.
Len() int
// Boxplot returns an data for the i'th boxplot.
Boxplot(i int) (x, min, q1, median, q3, max float64, outlier []float64)
}
Boxplotter wraps the Len and Boxplot methods.
type XYTexter ¶
type XYTexter interface {
// Len returns the number of data points.
Len() int
// XYText returns a coordinate (x, y) and a string.
XYText(int) (x, y float64, t string)
}
XYText wraps the Len and XYText methods.
Click to show internal directories.
Click to hide internal directories.