Title: | Cointegration Based Timedelay Neural Network Model |
---|---|
Description: | This cointegration based Time Delay Neural Network Model hybrid model allows the researcher to make use of the information extracted by the cointegrating vector as an input in the neural network model. |
Authors: | Pankaj Das [aut, cre], Achal Lama [aut], Girish Kumar Jha [aut] |
Maintainer: | Pankaj Das <[email protected]> |
License: | GPL-3 |
Version: | 0.1.0 |
Built: | 2024-10-25 06:32:54 UTC |
Source: | CRAN |
This cointegration based Time Delay Neural Network Model hybrid model allows the researcher to make use of the information extracted by the cointegrating vector as an input in the neural network model.
ECTTDNN(data,type,t,lag_ann,hidden_nodes_ann,r)
ECTTDNN(data,type,t,lag_ann,hidden_nodes_ann,r)
data |
A Multivariate data |
type |
Type of cointegration test to be used. Either "trace" or "eigen" value based |
t |
Partition value for spliting the data set into training and testing |
lag_ann |
Number of lags used for the Time Delay Neural Network Model fitting |
Number of hidden nodes used in the Time Delay Neural Network Model |
|
r |
Number of repeats for the Time Delay Neural Network Model |
ECTTDNN uses cointegration based Timedelay Neural network model proposed by Das (2019).First the cointegration of the data series is identified by Johansen cointegration test. Then Error correction model is fitted for the estimation of parameters i.e. Beta and Error coreection term (ECT).The estimated ECT is used as a auxiliary information in neural network fitting. Then the neural network model is used foresting of data series.
It returns the accuracy measures of the fitted cointegration based TDNN model.
Pankaj Das,Achal Lama, Girish Kumar Jha
Das (2019)<http://krishikosh.egranth.ac.in/handle/1/5810147805>
vars,urca, nnfor
data(finland) data_example<-finland[,1:2] ECTTDNN(data_example,"trace",0.8,1,5,5)
data(finland) data_example<-finland[,1:2] ECTTDNN(data_example,"trace",0.8,1,5,5)