Can neural networks used in time series data using R software?
What are appropriate packages?
Do you have example codes?
Can neural networks used in time series data using R software?
What are appropriate packages?
Do you have example codes?
Have a look at the Tensorflow package from RStudio.
https://tensorflow.rstudio.com/
Any numerical data can be consumed by a neural network and time series data is no exception.
The nnetar()
function in the forecast
package will fit an extremely simple feed-forward neural network with a single hidden layer. It does not even automatically include seasonal lags for seasonal time series.
Of course, you can use "general" neural network packages and feed in time series with appropriate lags.