STL in this context is a standard method for decomposing a time-series into Seasonal and Trend components using a Loess smoothing algorithm.
STL in this context is a standard method for decomposing a time-series into Seasonal and Trend components using a Loess smoothing algorithm. It has been popularized by its presence in R as the standard stl()
function.
The approach was described by Cleveland, et al, in "STL: A Seasonal-Trend Decomposition Procedure Based on Loess". The original public domain implementation is available in Fortran from netlib and is used by the R implementation and the pyloess
python package. A somewhat more general native Java implementation, stl-decomp-4j, is also available.