-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathqplot.go
66 lines (58 loc) · 1.31 KB
/
qplot.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package qplot
import (
"bytes"
"io"
"gonum.org/v1/plot"
"github.com/tobgu/qframe/qerrors"
)
// QPlot is a abstraction over Gonum's plotting interface
// for a less verbose experience in interactive environments
// such as Jypter notebooks.
type QPlot struct {
Config
}
// NewQPlot returns a new QPlot.
func NewQPlot(cfg Config) QPlot {
return QPlot{Config: cfg}
}
// WriteTo writes a plot to an io.Writer
func (qp QPlot) WriteTo(writer io.Writer) error {
plt, err := plot.New()
if err != nil {
return err
}
for _, fn := range qp.Plotters {
pltr, err := fn(plt)
if err != nil {
return qerrors.Propagate("WriteTo", err)
}
plt.Add(pltr)
}
if qp.PlotConfig != nil {
qp.PlotConfig(plt)
}
w, err := plt.WriterTo(qp.Width, qp.Height, string(qp.Format))
if err != nil {
return err
}
_, err = w.WriteTo(writer)
return err
}
// Bytes returns a plot in the configured FormatType.
func (qp QPlot) Bytes() ([]byte, error) {
buf := bytes.NewBuffer(nil)
err := qp.WriteTo(buf)
if err != nil {
return nil, qerrors.Propagate("Bytes", err)
}
return buf.Bytes(), nil
}
// MustBytes returns a plot in the configured FormatType
// and panics if it encounters an error.
func (qp QPlot) MustBytes() []byte {
raw, err := qp.Bytes()
if err != nil {
panic(qerrors.Propagate("MustBytes", err))
}
return raw
}