1/3/2020
Did you notice the pattern in the graph?
This is only a half of data I use. Let me show you how to build the machine learning prediction!
Then, you can make the prediction for another half of dataset!
modrf <- train(Species~ .,data=training,method="rf",prox=TRUE) predrf <- predict(modrf,testing)
Do you want to see its accuracy?
## Accuracy ## 0.9733333
The information obtains from Practical Machine Learning Course Notes written by Xing Su