My master thesis is in health forecasting and I'm using R (fable, fabletools, fasster) to implement the methods. For the theoretical part of the thesis, I need to know the heuristics and the theoretical basis of each function I use. I have been using Forecasting: Principles and Practice by Rob J Hyndman and George Athanasopoulos and I have already read R documentation on these functions but I still have some doubts.
I need information like what theoretical method they follow (ARIMA, Moving Averages, ANN, etc), the mathematical expression they use and how it is decided which is the best fit (for automatic methods): I use the following methods and gathered some information about each one. I'm new in this field and I need some help. Is this correct? Can anyone add anything else about any of the functions?
ARIMA() - MSARIMA model (meaning an ARIMA model that is sensible to seasonality and can take into account several external regressors:
SNAIVE()- Linear regression with seasonality;
NNETAR() - ANN model;
fasster()
ETS()
Thank you in advance!