[R] Need help for SVM code for microarray classification

Aadhithya sistaadhi at gmail.com
Tue Jun 29 03:55:22 CEST 2010


Hi I am Aadhithya I am trying to write a code to classify microarray data
(AML and ALL) using SVM in R 
my code goes like this :
library(e1071)
train<-read.table("Z:/Documents/train.txt",header=T);
test<-read.table("Z:/Documents/test.txt",header=T);
cl <- c(c(rep("ALL",10), rep("AML",10)));
model<- svm(train,cl);
pred <- predict(model,t(test));
table(pred,t(cl));

But I am not able to run it its giving me error . I will be really grateful
if someone can help me.Thanks in advance
-- 
View this message in context: http://r.789695.n4.nabble.com/Need-help-for-SVM-code-for-microarray-classification-tp2271652p2271652.html
Sent from the R help mailing list archive at Nabble.com.



More information about the R-help mailing list