Closed mllg closed 3 years ago
MRE:
x = matrix(sample(c(TRUE, FALSE), 10, TRUE), ncol = 1) y = runif(nrow(x)) # incorrect number of dimensions error e1071::svm(x, y) # fixed by converting to double storage.mode(x) = "double" e1071::svm(x, y)
MRE: