Reputation: 33
Since connecting to Azure SQL database from “Execute R Script” module in “Azure Machine Learning Studio” is not possible, and using Import Data modules (a.k.a Readers) is the only recommended approach, my question is that what can I do when I need more than 2 datasets as input for "Execute R Script module"?
// I'm already doing the following to get first 2 datasets,
dataset1 <- maml.mapInputPort(1)
dataset2 <- maml.mapInputPort(2)
How can I "import" a dataset3?
Upvotes: 0
Views: 363
Reputation: 876
One thing you can do is combining two data-sets together and selecting the appropriate fields using the R script. That would be an easy workaround.
Upvotes: 0