Displaying 3 results from an estimated 3 matches for "svmfit".
2023 Feb 16
1
SVM plot duda
Hola,
El mensaje es claro: el modelo svmfit no existe, tú has llamado al ajuste ?modelo?. De todas formas, aparte de eso tendrías que especificar qué dimensiones (variables predictivas) quieres representar. Si miras en la ayuda de ?plot.svm lo tienes explicado.
Esto sí funcionaría:
plot(modelo,df11, LDH ~ INL )
Gracias por proporcionar el...
2023 Feb 16
1
SVM plot duda
Estimados
En este modelo no puedo hacer el plot(svmfit,df11 ) #AQUI NO TRABAJA
Le adjunto Excel
library(readxl)
df11
attach(df11)
df11$fallecido=factor(df11$fallecido)
# Selección de una submuestra del 70% de los datos
set.seed(101)
tamano.total <- nrow(df11)
tamano.entreno <- round(tamano.total*0.7)
datos.indices <- sample(1:tamano.total...
2013 Apr 14
1
Aggregate function Bagging
...with package caret. I need bagging for a classification
problem. I am working with " bag".
bag(x, y, B = 10, vars = NULL, bagControl = bagControl(), ...)
bagControl(fit = NULL,
predict = NULL,
aggregate = NULL,
downSample = FALSE)
My fit function is:
svmFit <- function(x, y, ...)
{
library(e1071)
svm(Score~., data = mydataset)
}
My predict function is :
svmPred <- function(object, x)
{
predict(object, x)[,1]
}
However, I don't know how to build the aggregate function.
Does anyone know how to develop it?
[[alterna...