2017-04-18 23:20:29 -04:00
|
|
|
package chart
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
|
|
|
|
"github.com/wcharczuk/go-chart/matrix"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PolynomialRegressionSeries implements a polynomial regression over a given
|
|
|
|
// inner series.
|
|
|
|
type PolynomialRegressionSeries struct {
|
|
|
|
Name string
|
|
|
|
Style Style
|
|
|
|
YAxis YAxisType
|
|
|
|
|
|
|
|
Limit int
|
|
|
|
Offset int
|
|
|
|
Degree int
|
|
|
|
InnerSeries ValueProvider
|
|
|
|
|
|
|
|
coeffs []float64
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetName returns the name of the time series.
|
|
|
|
func (prs PolynomialRegressionSeries) GetName() string {
|
|
|
|
return prs.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStyle returns the line style.
|
|
|
|
func (prs PolynomialRegressionSeries) GetStyle() Style {
|
|
|
|
return prs.Style
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetYAxis returns which YAxis the series draws on.
|
|
|
|
func (prs PolynomialRegressionSeries) GetYAxis() YAxisType {
|
|
|
|
return prs.YAxis
|
|
|
|
}
|
|
|
|
|
|
|
|
// Len returns the number of elements in the series.
|
|
|
|
func (prs PolynomialRegressionSeries) Len() int {
|
|
|
|
return Math.MinInt(prs.GetLimit(), prs.InnerSeries.Len()-prs.GetOffset())
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetLimit returns the window size.
|
|
|
|
func (prs PolynomialRegressionSeries) GetLimit() int {
|
|
|
|
if prs.Limit == 0 {
|
|
|
|
return prs.InnerSeries.Len()
|
|
|
|
}
|
|
|
|
return prs.Limit
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetEndIndex returns the effective limit end.
|
|
|
|
func (prs PolynomialRegressionSeries) GetEndIndex() int {
|
|
|
|
offset := prs.GetOffset() + prs.Len()
|
|
|
|
innerSeriesLastIndex := prs.InnerSeries.Len() - 1
|
|
|
|
return Math.MinInt(offset, innerSeriesLastIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetOffset returns the data offset.
|
|
|
|
func (prs PolynomialRegressionSeries) GetOffset() int {
|
|
|
|
if prs.Offset == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return prs.Offset
|
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the series.
|
|
|
|
func (prs *PolynomialRegressionSeries) Validate() error {
|
|
|
|
if prs.InnerSeries == nil {
|
|
|
|
return fmt.Errorf("linear regression series requires InnerSeries to be set")
|
|
|
|
}
|
|
|
|
|
|
|
|
endIndex := prs.GetEndIndex()
|
|
|
|
if endIndex >= prs.InnerSeries.Len() {
|
|
|
|
return fmt.Errorf("invalid window; inner series has length %d but end index is %d", prs.InnerSeries.Len(), endIndex)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetValue returns the series value for a given index.
|
|
|
|
func (prs *PolynomialRegressionSeries) GetValue(index int) (x, y float64) {
|
|
|
|
if prs.InnerSeries == nil || prs.InnerSeries.Len() == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if prs.coeffs == nil {
|
|
|
|
coeffs, err := prs.computeCoefficients()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
prs.coeffs = coeffs
|
|
|
|
}
|
|
|
|
|
|
|
|
offset := prs.GetOffset()
|
|
|
|
effectiveIndex := Math.MinInt(index+offset, prs.InnerSeries.Len())
|
|
|
|
x, y = prs.InnerSeries.GetValue(effectiveIndex)
|
|
|
|
y = prs.apply(x)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-21 16:34:54 -04:00
|
|
|
// GetLastValue computes the last poly regression value.
|
2017-04-21 16:31:19 -04:00
|
|
|
func (prs *PolynomialRegressionSeries) GetLastValue() (x, y float64) {
|
|
|
|
if prs.InnerSeries == nil || prs.InnerSeries.Len() == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if prs.coeffs == nil {
|
|
|
|
coeffs, err := prs.computeCoefficients()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
prs.coeffs = coeffs
|
|
|
|
}
|
|
|
|
endIndex := prs.GetEndIndex()
|
|
|
|
x, y = prs.InnerSeries.GetValue(endIndex)
|
|
|
|
y = prs.apply(x)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-18 23:20:29 -04:00
|
|
|
func (prs *PolynomialRegressionSeries) apply(v float64) (out float64) {
|
|
|
|
for index, coeff := range prs.coeffs {
|
|
|
|
out = out + (coeff * math.Pow(v, float64(index)))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (prs *PolynomialRegressionSeries) computeCoefficients() ([]float64, error) {
|
|
|
|
xvalues, yvalues := prs.values()
|
|
|
|
return matrix.Poly(xvalues, yvalues, prs.Degree)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (prs *PolynomialRegressionSeries) values() (xvalues, yvalues []float64) {
|
|
|
|
startIndex := prs.GetOffset()
|
|
|
|
endIndex := prs.GetEndIndex()
|
|
|
|
|
|
|
|
xvalues = make([]float64, endIndex-startIndex)
|
|
|
|
yvalues = make([]float64, endIndex-startIndex)
|
|
|
|
|
|
|
|
for index := startIndex; index < endIndex; index++ {
|
|
|
|
x, y := prs.InnerSeries.GetValue(index)
|
|
|
|
xvalues[index] = x
|
|
|
|
yvalues[index] = y
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Render renders the series.
|
|
|
|
func (prs *PolynomialRegressionSeries) Render(r Renderer, canvasBox Box, xrange, yrange Range, defaults Style) {
|
|
|
|
style := prs.Style.InheritFrom(defaults)
|
|
|
|
Draw.LineSeries(r, canvasBox, xrange, yrange, style, prs)
|
|
|
|
}
|