4 writes to _r
Microsoft.ML.TimeSeries (4)
STL\Loess.cs (4)
65
_r
= (int)(_length * LoessConfiguration.F);
69
_r
= (int)r;
73
_r
= _length - 1;
75
_r
= LoessConfiguration.MinimumNeighborCount;
3 references to _r
Microsoft.ML.TimeSeries (3)
STL\Loess.cs (3)
72
if (
_r
>= _length)
74
else if (
_r
< LoessConfiguration.MinimumNeighborCount) // the neighbors should be at least 2, or the matrix operations would encounter issues.
91
LocalRegression neighbor = new LocalRegression(_x, _y, i,
_r
, _isTemporal);