Allows you to download the data from certain types of modules in AzureML experiments. You can generate the information required from AzureML Studio by (right) clicking on a module output port and selecting the option "Generate Data Access Code...".
download.intermediate.dataset(ws, experiment, node_id,
port_name = "Results dataset", data_type_id = "GenericCSV", ...)
An AzureML workspace reference returned by workspace
.
AzureML experiment ID.
Experiment node ID.
Experiment port name. The default is "Results dataset".
Experiment data type id. The default is "GenericCSV". See the note below for other types.
Optional arguments to pass to read.table
for CSV or TSV DataTypeIds. For example, specify stringsAsFactors=TRUE
if you wish, or any other valid argument to read.table
.
In most cases a data frame. Exceptions are: a raw vector for DataTypeId="Zip"
and character vector for DataTypeId="PlainText"
workspace
, datasets
, read.table
and download.datasets
Other dataset functions: datasets
,
delete.datasets
,
upload.dataset
, workspace
Other experiment functions: experiments
,
workspace