We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d629f2e commit 04c1791Copy full SHA for 04c1791
regression.go
@@ -14,7 +14,7 @@ var (
14
// ErrNotEnoughData signals that there weren't enough datapoint to train the model.
15
ErrNotEnoughData = errors.New("not enough data points")
16
// ErrTooManyVars signals that there are too many variables for the number of observations being made.
17
- ErrTooManyVars = errors.New("not enough observations to to support this many variables")
+ ErrTooManyVars = errors.New("not enough observations to support this many variables")
18
// ErrRegressionRun signals that the Run method has already been called on the trained dataset.
19
ErrRegressionRun = errors.New("regression has already been run")
20
)
0 commit comments