Re: [R] non-conformable arguments

2015-03-30 Thread Thierry Onkelinx
We need enough information to run your code on our computer and get the same error as you. In this case we are missing the data. See e.g. http://adv-r.had.co.nz/Reproducibility.html If you can't provide the original data, then try to make a (small) example which reproduces your problem. ir. Thierr

Re: [R] non-conformable arguments

2015-03-30 Thread Thierry Onkelinx
You should sent us a commented, minimal, self-contained, reproducible code as the posting guide tells you to do. Your code is not self-contained. So we can only speculate what when wrong. ir. Thierry Onkelinx Instituut voor natuur- en bosonderzoek / Research Institute for Nature and Forest team Bi

[R] non-conformable arguments

2015-03-30 Thread Soheila Khodakarim
Dear All, I want to run neural network on my data. i run these codes: #load mydata dim(mydata) # 20 3111 library(neuralnet) fm <- as.formula(paste("resp ~", paste(colnames(mydata)[1:3110], collapse="+"))) out <- neuralnet(fm,data=mydata, hidden = 4, lifesign = "minimal", linear.output = FALSE, t