Re: [R] RSNNS neural network

2016-03-03 Thread jake88
;-predict (myfit , mydata.test[,2:19]) From: Charles Determan [mailto:cdeterma...@gmail.com] Sent: Thursday, March 03, 2016 6:31 AM To: jake88 Cc: r-help Subject: Re: [R] RSNNS neural network Unfortunately we can only provide so much help without a reproducible example. Can y

[R] RSNNS neural network

2016-03-01 Thread jake88
I am new to R and neural networks . So I trained and predicted an elman network like so :  require ( RSNNS )  mydata = read.csv("mydata.csv",header = TRUE)  mydata.train = mydata[1000:2000,]  mydata.test = mydata[800:999,]  fit <- elman ( mydata.train[,2:10],mydata.train[,1], size =100