Description Usage Arguments Value Note See Also Examples
List experiments in an AzureML workspace, optionally filtering on sample or my experiments.
1 | experiments(ws, filter = c("all", "my experiments", "samples"))
|
ws |
An AzureML workspace reference returned by |
filter |
Optionally filter result, returing all, mine, or sample datasets. |
A data.frame with class Experiments
listing available experiments in the workspace.
experiments(w)
is equivalent to w$experiments
. Since w$experiments
is simply an R data.frame, you can alternatively filter on any variable as desired.
workspace
, datasets
, download.intermediate.dataset
Other experiment functions: download.intermediate.dataset
,
workspace
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
library(AzureML)
experiment <- "dd01c7e4a424432c9a9f83142d5cfec4.f-id.d2f351dd4cec4c06a4592ac83f7af55a"
node_id <- '2a472ae1-ecb1-4f40-ae4e-cd3cecb1003f-268'
ws <- workspace()
ws$experiments
experiments(ws)
frame <- download.intermediate.dataset(ws, experiment, node_id,
port_name = "Results dataset",
data_type_id = "GenericCSV")
head(frame)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.