Mr. Robot
Mr. Robot

Reputation: 159

Executing R script from Azure function

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?

Upvotes: 3

Views: 1757

Answers (1)

Kashyap
Kashyap

Reputation: 17556

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.

Upvotes: 2

Related Questions