Nothing
# svm{e1071}
# two types for regression: "nu-regression" and "eps-regression".
# two types for classification: "nu-classification" and "C-classification"
# many other tuning parameters to consider
SL.svm <- function(Y, X, newX, family, type.reg = "nu-regression", type.class = "nu-classification", kernel =
"radial", nu = 0.5, degree = 3, cost = 1, coef0 = 0, ...) {
.SL.require('e1071')
if(family$family == "gaussian") {
fit.svm <- e1071::svm(y = Y, x = X, nu = nu, type = type.reg, fitted = FALSE, kernel = kernel, degree = degree, cost = cost, coef0 = coef0)
pred <- predict(fit.svm, newdata = newX)
fit <- list(object = fit.svm)
}
if(family$family == "binomial") {
fit.svm <- e1071::svm(y = as.factor(Y), x = X, nu = nu, type = type.class, fitted = FALSE, probability = TRUE, kernel = kernel, degree = degree, cost = cost, coef0 = coef0)
pred <- attr(predict(fit.svm, newdata = newX, probability = TRUE), "prob")[, "1"] # assumes Y is 0/1 numeric
fit <- list(object = fit.svm)
}
out <- list(pred = pred, fit = fit)
class(out$fit) <- c("SL.svm")
return(out)
}
predict.SL.svm <- function(object, newdata, family,...){
.SL.require('e1071')
if(family$family == "gaussian") {
pred <- predict(object$object, newdata = newdata)
}
if(family$family == "binomial") {
pred <- attr(predict(object$object, newdata = newdata, probability = TRUE), "prob")[, "1"]
}
return(pred)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.