Skip to content
This repository has been archived by the owner on Oct 28, 2019. It is now read-only.

Bug bash instructions

Andrie de Vries edited this page Nov 13, 2015 · 18 revisions

Welcome to the AzureML wiki!

Getting started

To install the package directly from github, use:

# Install devtools
if(!require("devtools")) install.packages("devtools")
devtools::install_github("RevolutionAnalytics/AzureML")

Find your AzureML credentials

To use any of the functions, you need your AzureML credentials. To find these, read the vignette Getting Started with the AzureML Package.

You will need these credentials to use the function workspace(). This function sets up your credentials in R and allows you to use all of the other functions in the package.

Create a json file with your credentials

The easiest way to use the workspace() function is to create a json file in the location ~/.azureml/settings.json

Copy the following and modify with your own credentials:

{"workspace":{
"id"                  : "Add your id here",
"authorization_token" : "Add your authorisation token here",
"api_endpoint"        : "",
"management_endpoint" : ""
}}

Then save the file at `~/.azureml/settings.json`.  On windows, save the file at `C:\Users\<yourname>\Documents\.azureml`
Clone this wiki locally