AzureML (version 0.2.10)

download.intermediate.dataset: Download a dataset from an AzureML experiment module.

Description

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...".

Usage

download.intermediate.dataset(ws, experiment, node_id, port_name = "Results dataset", data_type_id = "GenericCSV", ...)

Arguments

ws
An AzureML workspace reference returned by workspace.
experiment
AzureML experiment ID.
node_id
Experiment node ID.
port_name
Experiment port name. The default is "Results dataset".
data_type_id
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.

Value

In most cases a data frame. Exceptions are: a raw vector for DataTypeId="Zip" and character vector for DataTypeId="PlainText"

See Also

workspace, datasets, read.table and download.datasets

Other dataset functions: datasets; delete.datasets; upload.dataset; workspace

Other experiment functions: experiments; workspace