Nothing
#'@title SVM for classification
#'@description Creates a classification object that
#' uses the Support Vector Machine (SVM) method for classification
#' It wraps the e1071 library.
#'@param attribute attribute target to model building
#'@param slevels possible values for the target classification
#'@param epsilon parameter that controls the width of the margin around the separating hyperplane
#'@param cost parameter that controls the trade-off between having a wide margin and correctly classifying training data points
#'@param kernel the type of kernel function to be used in the SVM algorithm (linear, radial, polynomial, sigmoid)
#'@return A SVM classification object
#'@examples
#'data(iris)
#'slevels <- levels(iris$Species)
#'model <- cla_svm("Species", slevels, epsilon=0.0,cost=20.000)
#'
#'# preparing dataset for random sampling
#'sr <- sample_random()
#'sr <- train_test(sr, iris)
#'train <- sr$train
#'test <- sr$test
#'
#'model <- fit(model, train)
#'
#'prediction <- predict(model, test)
#'predictand <- adjust_class_label(test[,"Species"])
#'test_eval <- evaluate(model, predictand, prediction)
#'test_eval$metrics
#'@export
cla_svm <- function(attribute, slevels, epsilon=0.1, cost=10, kernel="radial") {
#kernel: linear, radial, polynomial, sigmoid
#studio: https://rpubs.com/Kushan/296706
obj <- classification(attribute, slevels)
obj$kernel <- kernel
obj$epsilon <- epsilon
obj$cost <- cost
class(obj) <- append("cla_svm", class(obj))
return(obj)
}
#'@importFrom e1071 svm
#'@export
fit.cla_svm <- function(obj, data, ...) {
data <- adjust_data.frame(data)
data[,obj$attribute] <- adjust_factor(data[,obj$attribute], obj$ilevels, obj$slevels)
obj <- fit.predictor(obj, data)
x <- data[,obj$x, drop=FALSE]
y <- data[,obj$attribute]
obj$model <- e1071::svm(x, y, probability=TRUE, epsilon=obj$epsilon, cost=obj$cost, kernel=obj$kernel)
return(obj)
}
#'@export
predict.cla_svm <- function(object, x, ...) {
x <- adjust_data.frame(x)
x <- x[,object$x, drop = FALSE]
prediction <- predict(object$model, x, probability = TRUE)
prediction <- attr(prediction, "probabilities")
prediction <- prediction[,object$slevels]
return(prediction)
}
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.