Skip to content
Prev 75421 / 398502 Next

How to insert a certain model in SVM regarding to fixed kernels

David, Please correct me if I am wrong but I think svm partially works
with dyn although I don't remember what the specific limitations were.
Its possible that what works already is enough for Amir. For example,

library(e1071)
library(dyn)
set.seed(1)
y <- ts(rnorm(100))
y.svm <- dyn$svm(y ~ lag(y))
yp <- predict(y.svm)
ts.plot(y, yp, col = 1:2)
On 8/12/05, David Meyer <david.meyer at wu-wien.ac.at> wrote: