When consulting, I often do my exploratory analysis and prototyping in R, and deliver results on the initial dataset to the client. The client wants to use the trained classifier in a production setting. For example, assume that the client wants to run 1000 records per day through the classifier. How should I deliver the trained classifier?
For example:
Send paper describing the results and R code that will exactly replicate my work and hope that the client will be able to make a production server and implement it properly?
Abandon R after the proof of concept, and write up the classifier in a different programming language (e.g. python) that is more readily deployable by the client?
Try to set up a webserver that will run an instance of R?
Accept data from the client and run it upon request?