Displaying 1 result from an estimated 1 matches for "7cloud".
Did you mean:
  cloud
  
2017 Sep 02
0
problem in testing data with e1071 package (SVM Multiclass)
...6rainy rainy no7rainy sunny rainy no8rainy cloud 
rainy no9cloud maybe 10cloud cloud maybe 11cloud rainy cloud maybe 
12cloud sunny cloud maybe|
  * test.csv: in this file there are the new data to be classified and
    it is in one column/variable.
Example:
|V1 1sunny 2rainy 3hello 4cloud 5a 6b 7cloud 8d 9e 10f 11g 12hello|
Following the examples from the iris dataset 
(https://cran.r-project.org/web/packages/e1071/e1071.pdfandhttp://rischanlab.github.io/SVM.html) 
I created my model and then test the training data in this way:
|>library(e1071)
>train <-read.csv(file="./train.csv...