search for: amy_4_5_84

Displaying 7 results from an estimated 7 matches for "amy_4_5_84".

2010 Jun 14
2
Multiple regressions
Hi, Could you please tell me whether SVM can do multiple regression or not? Cheers, Amy _________________________________________________________________ Browse profiles for FREE! Meet local singles online. [[alternative HTML version deleted]]
2010 Jul 11
1
The formula interface of SVM
Hi Could you please explain the line that I got from the documentation of R? does it mean that there is a difference between using and not using the formula interface with SVM ?: If the predictor variables include factors, the formula interface must be used to get a correct model matrix. Cheers, Amy _________________________________________________________________ View photos of
2010 Jan 06
1
svm
Hi, I understand from help pages that in order to use a data set with svm, I have to divide it into two files: one for the dataset without the class label and the other file contains the class label as the following code:- library(e1071) x<- read.delim("mydataset_except-class-label.txt") y<- read.delim("mydataset_class-labell.txt") model <- svm(x, y, cross=5)
2010 Feb 03
4
contour function: changing colour according to different levels
Hi everybody, I am using the contour function to draw isobares. And i would like to to bold contours for an interval of 500m and weak contour for an interval of 100m. Can someone help me with this? Thanks a lot Karine _________________________________________________________________ [[elided Hotmail spam]] [[alternative HTML version deleted]]
2010 Jun 15
1
cross validation of SVM
hi, could you please tell me what kind of cross validation that SVM of e1071 uses? Cheers, Amy _________________________________________________________________ View photos of singles in your area! Looking for a hot date? [[alternative HTML version deleted]]
2010 Mar 14
1
formula and class label
Hi, Could you please tell me whether there is a difference in the result of svm when using formula instead of class label? Cheers, Amy _________________________________________________________________ Browse profiles for FREE! Meet local singles online. [[alternative HTML version deleted]]
2010 Mar 14
1
Error in object$tables[[v]] : subscript out of bounds
Hi, Could you please tell me how I correct the following error message? “Error in object$tables[[v]] : subscript out of bounds” This is the code: library(e1071) data(iris) attach(iris) class_label <- names(iris)[1] myformula <- formula(paste(class_label,"~ .")) mymodel<-naiveBayes(myformula, iris,cross=3) predict(mymodel,iris) ##Error in object$tables[[v]] :