0

Can neural networks used in time series data using R software?

What are appropriate packages?

Do you have example codes?

Ferdi
  • 4,882
  • 7
  • 42
  • 62

2 Answers2

1

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.

Chechy Levas
  • 891
  • 6
  • 17
1

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.

Stephan Kolassa
  • 95,027
  • 13
  • 197
  • 357