This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Holt-Winters Forecasting Method. | |
* Written by Artem Tartakynov. | |
* This particular implementation uses immutable collections and possibly | |
* creates a lot of work for garbage collector. Please feel free to use or modify it in | |
* whatever way best works for you. | |
* | |
* References: | |
* Jia Li and Andrew W. Moore. Forecasting Web Page Views: Methods and Observations. 2008. | |
*/ |