Hi everyone, Can someone please help me in these questions?: 1)if I use crossvalidation with svm, do I have to use this equation to calculate RMSE?: mymodel <- svm(myformula,data=mydata,cross=10) sqrt(mean(mymodel$MSE)) But if I dont use crossvalidation, I have to use the following to calculate RMSE: mymodel <- svm(myformula,data=mydata) mytest <- predict(mymodel, mytestdata) error <- mytest - mytestdata[,1] sqrt(mean(error**2)) 2)if I dont set the parameters of SVM, like in the above, how the program knows them? Or it is a must to determine them when I invoke svm? 3)can you please tell me why we use this equation: mymodel <- svm(myformula,data=mydata)instead of mymodel <- svm(myformula, mydata) and why use this: error <- mytest - mytestdata[,1] instead of error <- mytest mytestdata any help will be really appricaited. Many thanks, Nancy _________________________________________________________________ Keep your friends updatedeven when youre not signed in.
[[alternative HTML version deleted]]
______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.