Prediction plays a major role in the field of analytics. This is a mearly a very simple example how prediction algorithms are used in real time. We use iris dataset for this project.
August 5, 2017
Prediction plays a major role in the field of analytics. This is a mearly a very simple example how prediction algorithms are used in real time. We use iris dataset for this project.
Random forest algorithm is being used in this appliaction for prediction.
fitControl <- trainControl(method = "cv", number = 5)
fitRF <- train(Species ~ ., data = iris,
method = "rf",
trControl = fitControl)
The link to the application is: https://ajaymanikandans.shinyapps.io/irisapp/
The link to the source code in gitHub: https://github.com/ajaymanikandans/irisapp