Solved – Implementing R Machine Learning Model in Real World

machine learningr

I've been able to create some successful R ML models using some of the popular machine learning algorithms. However, I'm not sure how to implement the model where the end users (technically challenged) can utilize the model with a few button clicks. They prefer a web or a traditional application interface.

Can someone point me in the right direction? Thank you very much in advance.

Best Answer

I think this question is more suited for StackOverflow.

Having said that, Java would be an obvious choice, especially if what you have in mind is a web interface.

You can have a look at JRI, which allows you to run R inside Java applications as a single thread. Basically, you can write Javascript UI code on the client side, and on the server side you can have some Java code wrapping around your R solutions.

Related Question