从R:"对象' R_svmtrain'中的e1071包运行调谐功能时出错。找不到"

时间:2017-02-08 16:32:58

标签: r svm

我尝试使用tune软件包中的e1071函数,并且我被告知名为R_svmtrain的对象不存在,但是我无法在文档中找到建议我应该如何创建对象的任何内容。这里有一些代码可以重现此错误。我做错了什么?

library(e1071)
train_y <- as.factor(mtcars$cyl)
train_x <- as.matrix(mtcars[,-2])

tune(svm, train_x, train_y, kernel = "radial", 
ranges = list(cost = c(0.1, 1, 10, 100, 1000), gamma = c(0.5, 1, 2, 3, 4)))

Error in svm.default(c(15.5, 19.2, 15.2, 10.4, 17.3, 27.3, 15.8, 22.8,  : 
object 'R_svmtrain' not found

0 个答案:

没有答案