When I develop an experiment on Azure ML I have the chance to insert the "Execute R Script" module. When I have runned it, I can explore the outputs produced by the module itself.
My problem is that I have two modules: I do a filtering on a dataset in the first and use the resulting dataset in the second. Then I create a web service with it. Problem: when the filtering gives a null dataset this possibly create problems in the functions on the second module.
I want to find a way to "write" in the "Standard Error" space. I have tried to use:
if (length(dataset$column1)==0) {warning("Empty filtering!!!!")}
but it does not work.