3 instantiations of FastLoess
Microsoft.ML.TimeSeries (3)
12 references to FastLoess
Microsoft.ML.TimeSeries (12)
STL\InnerStl.cs (6)
157var lowPass = LowPassFiltering(_c, np);
205FastLoess model = new FastLoess(virtualXValues, _cycleSubSeries[i], _isTemporal, Ns);
236private FastLoess LowPassFiltering(double[] c, int np)
242FastLoess lowPass = new FastLoess(virtualC3XValues, c3, _isTemporal, Nl(np));
248private void SmoothedCycleSubseriesDetrending(double[] c, FastLoess lowPass, double[] s)
267FastLoess trender = new FastLoess(virtualDeseasonSeries, deseasonSeries, _isTemporal, Nt(np));