Description Usage Arguments See Also Examples
Usually this has not to be done by the user since liquidSVM harnesses garbage collection offered by R.
1 2 |
model |
the SVM model as returned by |
warn |
if |
... |
not used at the moment |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
## Multiclass classification
modelIris <- svm(Species ~ ., iris)
y <- predict(modelIris, iris)
## Least Squares
modelTrees <- svm(Height ~ Girth + Volume, trees)
y <- predict(modelTrees, trees)
plot(trees$Height, y)
test(modelTrees, trees)
clean(modelTrees)
clean(modelIris)
# now predict(modelTrees, ...) would not be possible any more
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.