I want to execute a R script every time an azure function is triggered. The R script executes perfectly on Azure machine learning Studio. But I am failing to execute through azure function. Is there any way to execute it?
AFAIK you'll have to create your own Runtime as R
isn't supported natively.
Have you already tried "Create a function on Linux using a custom container"? Interestingly they have given R
as the example of custom runtime, so hopefully that answers your question.