Displaying 1 result from an estimated 1 matches for "3summary".
Did you mean:
summary
2009 May 11
1
Problems to run SVM regression with e1071
...(249 points) . I don't have idea what it is wrong.
Somebody can help me?
h_aspire
dados=read.table("svmdata.txt",header=TRUE)
index=1:nrow(d)
test=d[210:249,]
train=d[1:209,]
require(e1071)
tuneobj = tune.svm(st ~ ., data = train, gamma = 10^(-6:-3), cost = 10^(1:3summary(tuneobj)
svm.m1 <- svm(st ~ ., data = train, cost = 1000, gamma = 1e-03)
svm.pred <- predict(svm.m1, test)
[[alternative HTML version deleted]]