go-chart/polynomial_regression_test.go

36 lines
615 B
Go
Raw Normal View History

2017-04-26 03:27:11 -04:00
package chart
import (
"testing"
"github.com/wcharczuk/go-chart/v2/matrix"
"github.com/wcharczuk/go-chart/v2/testutil"
2017-04-26 03:27:11 -04:00
)
func TestPolynomialRegression(t *testing.T) {
// replaced new assertions helper
2017-04-26 03:27:11 -04:00
var xv []float64
var yv []float64
for i := 0; i < 100; i++ {
xv = append(xv, float64(i))
yv = append(yv, float64(i*i))
}
values := ContinuousSeries{
XValues: xv,
YValues: yv,
}
poly := &PolynomialRegressionSeries{
InnerSeries: values,
Degree: 2,
}
for i := 0; i < 100; i++ {
_, y := poly.GetValues(i)
testutil.AssertInDelta(t, float64(i*i), y, matrix.DefaultEpsilon)
2017-04-26 03:27:11 -04:00
}
}