search for: r_10_5runs_matrix9

Displaying 1 result from an estimated 1 matches for "r_10_5runs_matrix9".

2010 Jan 29
0
Help interpreting libarary(nnet) script output..URGENT
Hello, I am pretty new to R. I am working on neural network classifiers and I am feeding the nnet input from different regions of interest (fMRI data). The script that I am using is this: library (MASS) heap_lda <- data.frame(as.matrix(t(read.table(file="R_10_5runs_matrix9.txt")))*100000,syll = c(rep("heap",3),rep("hoop",3),rep("hop",3))) library(nnet) heap_nnet <- nnet(syll ~ ., data=heap_lda, size=12,iter=100,MaxNWts=10000) predict(heap_nnet,heap_lda,type = "class") table(predict(heap_nnet,heap_lda,type = "class...