ECTTDNN: Cointegration Based Time Delay Neural Network Model

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/ECTTDNN.R

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.

Usage

1
ECTTDNN(data,type,t,lag_ann,hidden_nodes_ann,r)

Arguments

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

hidden_nodes_ann

Number of hidden nodes used in the Time Delay Neural Network Model

r

Number of repeats for the Time Delay Neural Network Model

Details

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.

Value

It returns the accuracy measures of the fitted cointegration based TDNN model.

Author(s)

Pankaj Das,Achal Lama, Girish Kumar Jha

References

Das (2019)<http://krishikosh.egranth.ac.in/handle/1/5810147805>

See Also

vars,urca, nnfor

Examples

1
2
3
data(finland)
data_example<-finland[,1:2]
ECTTDNN(data_example,"trace",0.8,1,5,5)

ECTTDNN documentation built on Jan. 22, 2021, 5:12 p.m.

Related to ECTTDNN in ECTTDNN...