I'm trying to use U-SQL and R to forecast, so i need to pass from U-SQL to R a list of values, and return forecast from R to U-SQL
All examples i found uses a reducer, so will process 1 row only.
https://learn.microsoft.com/en-us/azure/data-lake-analytics/data-lake-analytics-u-sql-r-extensions
Is it possible to instead of send to R a list of columns, send a list of rows to process?
Thanks!