1
0
Форкнуть 0
Перейти к файлу
Ritika Ravichandra 118e2beb5b Merge pull request #1 from Azure/Consumption
Consumption
2015-07-22 11:34:46 -07:00
demo changed consumption test functions, changed imml demo ppt, corrected demo 2015-07-22 11:21:23 -07:00
maml Merge pull request #1 from Azure/Consumption 2015-07-22 11:34:46 -07:00
test changed consumption test functions, changed imml demo ppt, corrected demo 2015-07-22 11:21:23 -07:00
.gitignore Merge remote-tracking branch 'origin/master' 2015-07-09 12:54:18 -07:00
LICENSE.md Added license 2015-07-02 11:47:51 -07:00
README.md Update README.md 2015-07-06 13:07:23 -07:00

README.md

Azure-MachineLearning-ClientLibrary-R

The preview of Azure Machine Learning R client package lets you access your Azure ML webservices from your local RStudio environment.

This is a technology preview. The APIs exposed by the library and the REST endpoints it connects to are subject to change.

Publishing a web service

FUNCTIONS: publishWebService <- function(functionName, serviceName, inputSchema, outputSchema, wkID, authToken)

Discovering web services

FUNCTIONS: getEndpoints <- function(wkID, authToken, wsID, url=epURL) getEPDetails <- function(wkID, authToken, wsID, epID, url=epURLdet) getWebServices <- function(wkID, authToken, url=wsURL) getWSDetails <- function(wkID, authToken, wsID, url=wsURLdet)

Consuming a web service

FUNCTIONS: consumeFile <- function(api_key, requestURL, infileName, globalParam = "", outfileName = "results.txt", batchSize = 250, retryDelay = 0.3) consumeLists <- function(api_key, requestURL, columnNames, ..., globalParam="", retryDelay = 0.3) consumeDataframe <- function(api_key, requestURL, valuesDF, globalParam="", batchSize = 250, retryDelay = 0.3)