Package AzureML. August 15, 2015

Size: px
Start display at page:

Download "Package AzureML. August 15, 2015"

Transcription

1 Version Date Type Package Package AzureML August 15, 2015 Title Discover, Publish and Consume Web Services on Microsoft Azure Machine Learning Maintainer Raymond Laghaeian Provides an interface with Microsoft Azure to easily publish functions and trained models as a web service, and discover and consume web service. License MIT + file LICENSE Copyright Microsoft Corporation LazyData TRUE Imports RCurl, uuid, codetools, base64enc, df2json, jsonlite, rjson Suggests testthat, knitr VignetteBuilder knitr NeedsCompilation no Author Raymond Laghaeian [aut, cre], Brianna Gerads [aut], Ritika Ravichandra [aut], Alex Wang [aut] Repository CRAN Date/Publication :01:54 R topics documented: AzureML-package consumedataframe consumefile consumelists discoverschema getendpoints getepdetails

2 2 AzureML-package getwebservices getwsdetails publishwebservice updatewebservice Index 13 AzureML-package Discover, publish and consume Microsoft Azure Web Services This package implements an interface with Microsoft Azure Machine Learning, allowing you to publish a function, e.g. a prediction function using a trained machine learning model, as a web service from which it can be utilized by users on Visual Studio, Excel, etc., or consumed within R itself. You are also able to access pre-existing web service endpoints to consume directly from R. Finding the workspace ID and authorization token All functions require a workspace ID (wsid) and authorization token (authtoken). You can find these on the settings tab of but users can make a temporary free account at For more information, see: or refer to the vignette included in this package. Summary of functions 1. Discovery Get web services: getwebservices Get web service details getwsdetails Get endpoints: getendpoints Get endpoint details: getepdetails 2. Publish Publish a new web service: publishwebservice Update an existing web service: updatewebservice 3. Consume Discover web service schema: discoverschema Score a file: consumefile Score a dataframe: consumedataframe Score data as lists: consumelists

3 consumedataframe 3 consumedataframe Use a web service to score a data frame Score a data frame, where each row is the input to the scoring function, using a Microsoft Azure Machine Learning web service consumedataframe(apikey, requesturl, scoredataframe, globalparam = setnames(list(), character(0)), batchsize = 300, retrydelay = 0.3) apikey requesturl primary access key of the web service as a string API URL scoredataframe the data frame to be scored globalparam global parameters entered as a list, default value is an empty list batchsize batch size of each batch, default value is 300 retrydelay the time in seconds to delay before retrying in case of a server error, default value is 0.3 seconds returndataframe data frame containing results returned from web service call discoverschema publishwebservice Other consumption functions: consumefile; consumelists add <- function(x,y) { return(x+y) } newservice <- publishwebservice("add", "add", list("x"="int","y"="int"), list("z"="int"), wsid, authtoken) webservicedetails <- newservice[[1]] endpoints <- newservice[[2]] df <- data.frame("x"=c(1,2), "y"=c(3,4)) response <- consumedataframe(endpoints[[1]]$primarykey, endpoints[[1]]$apilocation, df)

4 4 consumefile consumefile Use a web service to score a file Read in a csv and score it in batches using a Microsoft Azure Machine Learning Web Service. The results are stored in a new csv, default named "results.csv" consumefile(apikey, requesturl, infilename, globalparam = setnames(list(), character(0)), outputfilename = "results.csv", batchsize = 300, retrydelay = 0.3) apikey requesturl infilename globalparam primary access key as a string API URL the name of the file to be scored as a string global parameters entered as a list, default value is an empty list outputfilename the name of the file to output results to, entered as a string, default value is "results.csv" batchsize batch size of each batch, default value is 300 retrydelay the time in seconds to delay before retrying in case of a server error, default value is 0.3 seconds returndataframe data frame containing results returned from web service call discoverschema publishwebservice Other consumption functions: consumedataframe; consumelists add <- function(x,y) { return(x+y) } newservice <- publishwebservice("add", "add", list("x"="int","y"="int"), list("z"="int"), wsid, authtoken) webservicedetails <- newservice[[1]] endpoints <- newservice[[2]] response <- consumefile(endpoints[[1]]$primarykey, endpoints[[1]]$apilocation, "test.csv")

5 consumelists 5 consumelists Use a web service to score data in list format Score data represented as lists, where each list represents one parameter of the web service consumelists(apikey, requesturl,..., globalparam = setnames(list(), character(0)), retrydelay = 0.3) apikey requesturl primary access key as a string API URL... variable number of requests entered as lists in key-value format globalparam retrydelay global parameters entered as a list, default value is an empty list the time in seconds to delay before retrying in case of a server error, default value is 0.3 seconds returndataframe data frame containing results returned from web service call discoverschema publishwebservice Other consumption functions: consumedataframe; consumefile add <- function(x,y) { return(x+y) } newservice <- publishwebservice("add", "add", list("x"="int","y"="int"), list("z"="int"), wsid, authtoken) webservicedetails <- newservice[[1]] endpoints <- newservice[[2]] response <- consumelists(endpoints[[1]]$primarykey, endpoints[[1]]$apilocation, list("x"=1, "y"=2), list("x"=3, "y"=4))

6 6 discoverschema discoverschema Discover web service schema Discover the expected input to a web service specified by a web service ID ng the workspace ID and web service ID, information specific to the consumption functions discoverschema(helpurl, scheme = "https", host = "ussouthcentral.services.azureml.net", api_version = "2.0") helpurl URL of the help page of the web service scheme the URI scheme host optional parameter that defaults to ussouthcentral.services.azureml.net api_version defaults to 2.0 List containing the request URL of the webservice, column names of the data, sample input as well as the input schema publishwebservice consumelists Other discovery functions: getepdetails; getendpoints; getframework; getwsdetails; getwebservices endpoints <- getendpoints("wsid", "wsauth", "webserviceid") wsschema <- discoverschema(endpoints[[1]]$helplocation)

7 getendpoints 7 getendpoints Get Web Service Endpoints. Get the API endpoints that belong to a Microsoft Azure Machine Learning web service. getendpoints(wkid, authtoken, wsid, url = produrl) wkid authtoken wsid url workspace ID primary authorization token the web service ID the API url to make the call to, by default hits the Azure management API Returns a list of lists, where each endpoint is represented as a nested named list with the following fields: Name CreationTime WorkspaceId WebServiceId HelpLocation PrimaryKey SecondaryKey ApiLocation Version MaxConcurrentCalls DiagnosticsTraceLevel ThrottleLevel publishwebservice consumelists Other discovery functions: discoverschema; getepdetails; getframework; getwsdetails; getwebservices

8 8 getepdetails endpoints <- getendpoints("wkid", "authtoken", "wsid") helpurl <- endpoints[[1]]$helplocation pkey <- endpoints[[1]]$primarykey apiurl <- endpoints[[1]]$apilocation getepdetails Get Endpoint Details. Get detailed information about a specific endpoint for a web service specified by the Azure ML web service ID and endpoint name. getepdetails(wkid, authtoken, wsid, epname, url = produrl) wkid authtoken wsid epname url workspace ID primary authorization token the web service ID endpoint name, e.g. "default" the API url to make the call to, by default hits the Azure management API Returns a list with the following fields: Name CreationTime WorkspaceId WebServiceId HelpLocation PrimaryKey SecondaryKey ApiLocation Version MaxConcurrentCalls DiagnosticsTraceLevel ThrottleLevel

9 getwebservices 9 publishwebservice consumelists Other discovery functions: discoverschema; getendpoints; getframework; getwsdetails; getwebservices getwebservices Get Available Web Services. Get a list of webservices available to the Microsoft Azure Machine Learning workspace specified by the Azure ML workspace ID. getwebservices(wkid, authtoken, url = produrl) wkid authtoken url workspace ID primary authorization token the API url to make the call to, by default hits the Azure management API Returns a list of lists, where each web service is represented as a nested named list with the following fields: Id Name CreationTime WorkspaceId DefaultEndpointName publishwebservice consumelists Other discovery functions: discoverschema; getepdetails; getendpoints; getframework; getwsdetails services = getwebservices("wsid", "authtoken") serviceid = services[[1]]["id"]

10 10 getwsdetails getwsdetails Get Web Service Details. Get detailed information about a specific Microsoft Azure Machine Learning web service specified by the Azure ML web service ID. getwsdetails(wkid, authtoken, wsid, url = produrl) wkid authtoken wsid url workspace ID primary authorization token the web service ID the API url to make the call to, by default hits the Azure management API Returns a list with the following fields: Id Name CreationTime WorkspaceId DefaultEndpointName publishwebservice consumelists Other discovery functions: discoverschema; getepdetails; getendpoints; getframework; getwebservices

11 publishwebservice 11 publishwebservice Publish a function to Microsoft Azure Publish a function to Microsoft Azure Machine Learning as a web service. The web service created is a standard Azure ML web service, and can be utilized from any web or mobile platform. as long as the user has the API key and URL. The function to be published can use arbitrary objects and packages. Currently, the function to be published can only take in primitive data types as input, i.e. no data frames or lists, but support for those functions will be added in the future. publishwebservice(functionname, servicename, inputschema, outputschema, wkid, authtoken) functionname function name as a string to be published servicename name of the new web service inputschema list of input parameters of format list("arg1"="type", "arg2"="type",...) outputschema list of outputs of format list("output1"="type", "output2"="type",...) wkid the workspace ID authtoken primary authorization token nested list, the first element is a list containing information about the new web service, the second element is a list of its endpoints getwsdetails getendpoints discoverschema consumelists Other publishing functions: updatewebservice add <- function(x,y) { return(x+y) } newservice <- publishwebservice("add", "add", list("x"="int","y"="int"), list("z"="int"), wsid, authtoken) webservicedetails <- newservice[[1]] endpoints <- newservice[[2]] helpurl <- endpoints[[1]]$helplocation pkey <- endpoints[[1]]$primarykey apiurl <- endpoints[[1]]$apilocation

12 12 updatewebservice updatewebservice Update a Published Web Service Update a web service, i.e. change the underlying R code that the service will run when called. The same restrictions that apply to publishwebservice() also apply to updatewebservice() updatewebservice(functionname, servicename, wsid, inputschema, outputschema, wkid, authtoken) functionname servicename wsid function name as a string to be published name of the new web service ID of the web service to be updated inputschema list of input parameters of format list("arg1"="type", "arg2"="type",...) outputschema list of outputs of format list("output1"="type", "output2"="type",...) wkid authtoken the workspace ID primary authorization token List of webservice details, default endpoint details, and the consumption function getwsdetails getendpoints discoverschema consumelists Other publishing functions: publishwebservice add1 <- function(x) { return(x+1) } addservice <- publishwebservice("add1", "add1", list("x"="int"), list("z"="int"), wsid, wsauth) add2 <- function(x) { return(x+2) } addservice <- updatewebservice("add2", "add2", addservice[[1]]$id, list("x"="int"), list("z"="int"), wsid, wsauth)

13 Index Topic package AzureML-package, 2 AzureML (AzureML-package), 2 AzureML-package, 2 consumedataframe, 2, 3, 4, 5 consumefile, 2, 3, 4, 5 consumelists, 2 4, 5, 6, 7, 9 12 discoverschema, 2 5, 6, 7, 9 12 getendpoints, 2, 6, 7, 9 12 getepdetails, 2, 6, 7, 8, 9, 10 getframework, 6, 7, 9, 10 getwebservices, 2, 6, 7, 9, 9, 10 getwsdetails, 2, 6, 7, 9, 10, 11, 12 publishwebservice, 2 7, 9, 10, 11, 12 updatewebservice, 2, 11, 12 13

Package uptimerobot. October 22, 2015

Package uptimerobot. October 22, 2015 Type Package Version 1.0.0 Title Access the UptimeRobot Ping API Package uptimerobot October 22, 2015 Provide a set of wrappers to call all the endpoints of UptimeRobot API which includes various kind

More information

Package urltools. October 11, 2015

Package urltools. October 11, 2015 Type Package Package urltools October 11, 2015 Title Vectorised Tools for URL Handling and Parsing Version 1.3.2 Date 2015-10-09 Author Oliver Keyes [aut, cre], Jay Jacobs [aut, cre], Mark Greenaway [ctb],

More information

Package searchconsoler

Package searchconsoler Title Google Search Console R Client Version 0.2.0 Package searchconsoler April 3, 2016 Provides an interface with the Google Search Console, formally called Google Webmaster Tools. URL https://github.com/markedmondson1234/searchconsoler

More information

Package retrosheet. April 13, 2015

Package retrosheet. April 13, 2015 Type Package Package retrosheet April 13, 2015 Title Import Professional Baseball Data from 'Retrosheet' Version 1.0.2 Date 2015-03-17 Maintainer Richard Scriven A collection of tools

More information

Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2.

Package OECD. R topics documented: January 17, 2016. Type Package Title Search and Extract Data from the OECD Version 0.2. Type Package Title Search and Extract Data from the OECD Version 0.2.2 Date 2016-01-17 Package OECD January 17, 2016 Search and extract data from the OECD. License CC0 URL https://www.github.com/expersso/oecd

More information

Package syuzhet. February 22, 2015

Package syuzhet. February 22, 2015 Type Package Package syuzhet February 22, 2015 Title Extracts Sentiment and Sentiment-Derived Plot Arcs from Text Version 0.2.0 Date 2015-01-20 Maintainer Matthew Jockers Extracts

More information

Package whoapi. R topics documented: June 26, 2015. Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes

Package whoapi. R topics documented: June 26, 2015. Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes Type Package Title A 'Whoapi' API Client Version 0.1.0 Date 2015-06-16 Author Oliver Keyes Package whoapi June 26, 2015 Maintainer Oliver Keyes Retrieve data from the 'Whoapi' (https://whoapi.com)

More information

Package sjdbc. R topics documented: February 20, 2015

Package sjdbc. R topics documented: February 20, 2015 Package sjdbc February 20, 2015 Version 1.5.0-71 Title JDBC Driver Interface Author TIBCO Software Inc. Maintainer Stephen Kaluzny Provides a database-independent JDBC interface. License

More information

Package pinnacle.api

Package pinnacle.api Package pinnacle.api September 18, 2015 Type Package Version 1.89 Title A Wrapper for the Pinnacle Sports API URL https://github.com/marcoblume/pinnacle.api Author Marco Blume, Nicholas Jhirad, Amine Gassem

More information

Package R4CDISC. September 5, 2015

Package R4CDISC. September 5, 2015 Type Package Title Read CDISC Data Files Version 0.4 Date 2015-9-5 Depends R (>= 3.0.3, XML Author Package R4CDISC September 5, 2015 Maintainer URL https://github.com/i-akiya/r4cdisc

More information

Package hazus. February 20, 2015

Package hazus. February 20, 2015 Package hazus February 20, 2015 Title Damage functions from FEMA's HAZUS software for use in modeling financial losses from natural disasters Damage Functions (DFs), also known as Vulnerability Functions,

More information

Package TSfame. February 15, 2013

Package TSfame. February 15, 2013 Package TSfame February 15, 2013 Version 2012.8-1 Title TSdbi extensions for fame Description TSfame provides a fame interface for TSdbi. Comprehensive examples of all the TS* packages is provided in the

More information

vcloud Air Platform Programmer's Guide

vcloud Air Platform Programmer's Guide vcloud Air Platform Programmer's Guide vcloud Air OnDemand 5.7 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition.

More information

Office365Mon Developer API

Office365Mon Developer API Office365Mon Developer API Office365Mon provides a set of services for retrieving report data, and soon for managing subscriptions. This document describes how you can create an application to programmatically

More information

New Features... 1 Installation... 3 Upgrade Changes... 3 Fixed Limitations... 4 Known Limitations... 5 Informatica Global Customer Support...

New Features... 1 Installation... 3 Upgrade Changes... 3 Fixed Limitations... 4 Known Limitations... 5 Informatica Global Customer Support... Informatica Corporation B2B Data Exchange Version 9.5.0 Release Notes June 2012 Copyright (c) 2006-2012 Informatica Corporation. All rights reserved. Contents New Features... 1 Installation... 3 Upgrade

More information

Package translater. R topics documented: February 20, 2015. Type Package

Package translater. R topics documented: February 20, 2015. Type Package Type Package Package translater February 20, 2015 Title Bindings for the Google and Microsoft Translation APIs Version 1.0 Author Christopher Lucas and Dustin Tingley Maintainer Christopher Lucas

More information

Package sendmailr. February 20, 2015

Package sendmailr. February 20, 2015 Version 1.2-1 Title send email using R Package sendmailr February 20, 2015 Package contains a simple SMTP client which provides a portable solution for sending email, including attachment, from within

More information

Package cgdsr. August 27, 2015

Package cgdsr. August 27, 2015 Type Package Package cgdsr August 27, 2015 Title R-Based API for Accessing the MSKCC Cancer Genomics Data Server (CGDS) Version 1.2.5 Date 2015-08-25 Author Anders Jacobsen Maintainer Augustin Luna

More information

Data Domain Profiling and Data Masking for Hadoop

Data Domain Profiling and Data Masking for Hadoop Data Domain Profiling and Data Masking for Hadoop 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Package DCG. R topics documented: June 8, 2016. Type Package

Package DCG. R topics documented: June 8, 2016. Type Package Type Package Package DCG June 8, 2016 Title Data Cloud Geometry (DCG): Using Random Walks to Find Community Structure in Social Network Analysis Version 0.9.2 Date 2016-05-09 Depends R (>= 2.14.0) Data

More information

Package decompr. August 17, 2016

Package decompr. August 17, 2016 Version 4.5.0 Title Global-Value-Chain Decomposition Package decompr August 17, 2016 Two global-value-chain decompositions are implemented. Firstly, the Wang-Wei-Zhu (Wang, Wei, and Zhu, 2013) algorithm

More information

Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT

Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT Phone Manager Application Support JANUARY 2015 DOCUMENT RELEASE 4.2 APPLICATION SUPPORT ZohoCRM NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted

More information

Package pdfetch. R topics documented: July 19, 2015

Package pdfetch. R topics documented: July 19, 2015 Package pdfetch July 19, 2015 Imports httr, zoo, xts, XML, lubridate, jsonlite, reshape2 Type Package Title Fetch Economic and Financial Time Series Data from Public Sources Version 0.1.7 Date 2015-07-15

More information

Package LexisPlotR. R topics documented: April 4, 2016. Type Package

Package LexisPlotR. R topics documented: April 4, 2016. Type Package Type Package Package LexisPlotR April 4, 2016 Title Plot Lexis Diagrams for Demographic Purposes Version 0.3 Date 2016-04-04 Author [aut, cre], Marieke Smilde-Becker [ctb] Maintainer

More information

Package hoarder. June 30, 2015

Package hoarder. June 30, 2015 Type Package Title Information Retrieval for Genetic Datasets Version 0.1 Date 2015-06-29 Author [aut, cre], Anu Sironen [aut] Package hoarder June 30, 2015 Maintainer Depends

More information

Package VideoComparison

Package VideoComparison Version 0.15 Date 2015-07-24 Title Video Comparison Tool Package VideoComparison July 25, 2015 Author Silvia Espinosa, Joaquin Ordieres, Antonio Bello, Jose Maria Perez Maintainer Joaquin Ordieres

More information

Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface

Package RCassandra. R topics documented: February 19, 2015. Version 0.1-3 Title R/Cassandra interface Version 0.1-3 Title R/Cassandra interface Package RCassandra February 19, 2015 Author Simon Urbanek Maintainer Simon Urbanek This packages provides

More information

Package optirum. December 31, 2015

Package optirum. December 31, 2015 Title Financial Functions & More Package optirum December 31, 2015 This fills the gaps credit analysts and loan modellers at Optimum Credit identify in the existing R code body. It allows for the production

More information

Package rivr. October 16, 2015

Package rivr. October 16, 2015 Type Package Package rivr October 16, 2015 Title Steady and Unsteady Open-Channel Flow Computation Version 1.1 Date 2015-10-15 Author Michael C Koohafkan [aut, cre] Maintainer Michael C Koohafkan

More information

ColdFusion Adwords API Library

ColdFusion Adwords API Library ColdFusion Adwords API Library Documentation- 2011-05-20 The coldfusion adwords api library consists of a set of coldfusion components. Using the components you can access the data behind the google adwords

More information

Package bizdays. March 13, 2015

Package bizdays. March 13, 2015 Title Business Days Calculations and Utilities Package bizdays March 13, 2015 Business days culations based on a list of holidays and nonworking weekdays. Quite useful for fixed income and derivatives

More information

Data Domain Discovery in Test Data Management

Data Domain Discovery in Test Data Management Data Domain Discovery in Test Data Management 1993-2016 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2.

Specify the location of an HTML control stored in the application repository. See Using the XPath search method, page 2. Testing Dynamic Web Applications How To You can use XML Path Language (XPath) queries and URL format rules to test web sites or applications that contain dynamic content that changes on a regular basis.

More information

SnapLogic Salesforce Snap Reference

SnapLogic Salesforce Snap Reference SnapLogic Salesforce Snap Reference Document Release: October 2012 SnapLogic, Inc. 71 East Third Avenue San Mateo, California 94401 U.S.A. www.snaplogic.com Copyright Information 2012 SnapLogic, Inc. All

More information

Introduction to HP ArcSight ESM Web Services APIs

Introduction to HP ArcSight ESM Web Services APIs Introduction to HP ArcSight ESM Web Services APIs Shivdev Kalambi Software Development Manager (Correlation Team) #HPProtect Agenda Overview Some applications of APIs ESM Web Services APIs Login Service

More information

Package StockChina. January 30, 2016

Package StockChina. January 30, 2016 Type Package Package StockChina January 30, 2016 Title Real-Time Stock Price & Volume in China Market Version 0.3.1 Date 2016-01-30 Author Xiaodong Deng Maintainer Xiaodong Deng Description

More information

Herve Roggero 3/3/2015

Herve Roggero 3/3/2015 BLUE SYNTAX CONSULTING Enzo Cloud Backup Overview Herve Roggero 3/3/2015 Contents General Technical Overview... 3 Operation Modes... 3 Enzo Agent... 4 Running Multiple Enzo Agents... 4 How to deploy...

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

Elixir Schedule Designer User Manual

Elixir Schedule Designer User Manual Elixir Schedule Designer User Manual Release 7.3 Elixir Technology Pte Ltd Elixir Schedule Designer User Manual: Release 7.3 Elixir Technology Pte Ltd Published 2008 Copyright 2008 Elixir Technology Pte

More information

ICE Trade Vault. Public User & Technology Guide June 6, 2014

ICE Trade Vault. Public User & Technology Guide June 6, 2014 ICE Trade Vault Public User & Technology Guide June 6, 2014 This material may not be reproduced or redistributed in whole or in part without the express, prior written consent of IntercontinentalExchange,

More information

Package xtal. December 29, 2015

Package xtal. December 29, 2015 Type Package Title Crystallization Toolset Version 1.15 Date 2015-12-28 Author Maintainer Qingan Sun Package xtal December 29, 2015 This is the tool set for crystallographer to design

More information

[MS-DVRD]: Device Registration Discovery Protocol. Intellectual Property Rights Notice for Open Specifications Documentation

[MS-DVRD]: Device Registration Discovery Protocol. Intellectual Property Rights Notice for Open Specifications Documentation [MS-DVRD]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

MONAHRQ Installation Permissions Guide. Version 2.0.4

MONAHRQ Installation Permissions Guide. Version 2.0.4 MONAHRQ Installation Permissions Guide Version 2.0.4 March 19, 2012 Check That You Have all Necessary Permissions It is important to make sure you have full permissions to run MONAHRQ. The following instructions

More information

Package wordnet. January 6, 2016

Package wordnet. January 6, 2016 Title WordNet Interface Version 0.1-11 Package wordnet January 6, 2016 An interface to WordNet using the Jawbone Java API to WordNet. WordNet () is a large lexical database

More information

Package franc. R topics documented: November 12, 2015. Title Detect the Language of Text Version 1.1.1

Package franc. R topics documented: November 12, 2015. Title Detect the Language of Text Version 1.1.1 Title Detect the Language of Text Version 1.1.1 Package franc November 12, 2015 Author Gabor Csardi, Titus Wormer, Maciej Ceglowski, Jacob R. Rideout, and Kent S. Johnson Maintainer Gabor Csardi

More information

Package fimport. February 19, 2015

Package fimport. February 19, 2015 Version 3000.82 Revision 5455 Date 2013-03-15 Package fimport February 19, 2015 Title Rmetrics - Economic and Financial Data Import Author Diethelm Wuertz and many others Depends R (>= 2.13.0), methods,

More information

SQUEEZE SERVER. Operation Guide Version 3.0

SQUEEZE SERVER. Operation Guide Version 3.0 SQUEEZE SERVER Operation Guide Version 3.0 CONTENTS Introduction to Squeeze Server... 1 Features... 2 Squeeze Server Components... 3 How Squeeze Server Works... 4 Running Squeeze Server... 5 Priority Job

More information

Package RIGHT. March 30, 2015

Package RIGHT. March 30, 2015 Type Package Title R Interactive Graphics via HTML Version 0.2.0 Date 2015-03-30 Package RIGHT March 30, 2015 Author ChungHa Sung, TaeJoon Song, JongHyun Bae, SangGi Hong, Jae W. Lee, and Junghoon Lee

More information

Active Directory Management. Agent Deployment Guide

Active Directory Management. Agent Deployment Guide Active Directory Management Agent Deployment Guide Document Revision Date: June 12, 2014 Active Directory Management Deployment Guide i Contents System Requirements...1 Hardware Requirements...1 Installation...3

More information

Pervasive Data Integrator. Oracle CRM On Demand Connector Guide

Pervasive Data Integrator. Oracle CRM On Demand Connector Guide Pervasive Data Integrator Oracle CRM On Demand Connector Guide Pervasive Software Inc. 12365 Riata Trace Parkway Building B Austin, Texas 78727 USA Telephone: (512) 231-6000 or (800) 287-4383 Fax: (512)

More information

Distributed R for Big Data

Distributed R for Big Data Distributed R for Big Data Indrajit Roy HP Vertica Development Team Abstract Distributed R simplifies large-scale analysis. It extends R. R is a single-threaded environment which limits its utility for

More information

Sage CRM Connector Tool White Paper

Sage CRM Connector Tool White Paper White Paper Document Number: PD521-01-1_0-WP Orbis Software Limited 2010 Table of Contents ABOUT THE SAGE CRM CONNECTOR TOOL... 1 INTRODUCTION... 2 System Requirements... 2 Hardware... 2 Software... 2

More information

Workflow approval via email

Workflow approval via email Microsoft Dynamics AX Workflow approval via email White Paper This document highlights the functionality in Microsoft Dynamics AX 2012 R2 that allows workflow to be configured so that a user can take approval

More information

RTI Database Integration Service. Getting Started Guide

RTI Database Integration Service. Getting Started Guide RTI Database Integration Service Getting Started Guide Version 5.2.0 2015 Real-Time Innovations, Inc. All rights reserved. Printed in U.S.A. First printing. June 2015. Trademarks Real-Time Innovations,

More information

Package RSQLite. February 19, 2015

Package RSQLite. February 19, 2015 Version 1.0.0 Title SQLite Interface for R Package RSQLite February 19, 2015 This package embeds the SQLite database engine in R and provides an interface compliant with the DBI package. The source for

More information

Administration Guide for the System Center Cloud Services Process Pack

Administration Guide for the System Center Cloud Services Process Pack Administration Guide for the System Center Cloud Services Process Pack Microsoft Corporation Published: May 7, 2012 Author Kathy Vinatieri Applies To System Center Cloud Services Process Pack This document

More information

Package hive. July 3, 2015

Package hive. July 3, 2015 Version 0.2-0 Date 2015-07-02 Title Hadoop InteractiVE Package hive July 3, 2015 Description Hadoop InteractiVE facilitates distributed computing via the MapReduce paradigm through R and Hadoop. An easy

More information

Lab 02 Working with Data Quality Services in SQL Server 2014

Lab 02 Working with Data Quality Services in SQL Server 2014 SQL Server 2014 BI Lab 02 Working with Data Quality Services in SQL Server 2014 Jump to the Lab Overview Terms of Use 2014 Microsoft Corporation. All rights reserved. Information in this document, including

More information

DreamFactory on Microsoft SQL Azure

DreamFactory on Microsoft SQL Azure DreamFactory on Microsoft SQL Azure Account Setup and Installation Guide For general information about the Azure platform, go to http://www.microsoft.com/windowsazure/. For general information about the

More information

Using IBM dashdb With IBM Embeddable Reporting Service

Using IBM dashdb With IBM Embeddable Reporting Service What this tutorial is about In today's mobile age, companies have access to a wealth of data, stored in JSON format. Leading edge companies are making key decision based on that data but the challenge

More information

Package HadoopStreaming

Package HadoopStreaming Package HadoopStreaming February 19, 2015 Type Package Title Utilities for using R scripts in Hadoop streaming Version 0.2 Date 2009-09-28 Author David S. Rosenberg Maintainer

More information

How To Install An Aneka Cloud On A Windows 7 Computer (For Free)

How To Install An Aneka Cloud On A Windows 7 Computer (For Free) MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the

More information

Package jrvfinance. R topics documented: October 6, 2015

Package jrvfinance. R topics documented: October 6, 2015 Package jrvfinance October 6, 2015 Title Basic Finance; NPV/IRR/Annuities/Bond-Pricing; Black Scholes Version 1.03 Implements the basic financial analysis functions similar to (but not identical to) what

More information

Package erp.easy. September 26, 2015

Package erp.easy. September 26, 2015 Type Package Package erp.easy September 26, 2015 Title Event-Related Potential (ERP) Data Exploration Made Easy Version 0.6.3 A set of user-friendly functions to aid in organizing, plotting and analyzing

More information

Orchestrating Document and Media Management using CMIS

Orchestrating Document and Media Management using CMIS Orchestrating Document and Media Management using CMIS Technical Note - Integrating ActiveVOS with Alfresco CMIS Services AN ACTIVE ENDPOINTS TECHNICAL NOTE 2009 Active Endpoints Inc. ActiveVOS is a trademark

More information

Sentinel EMS v7.1 Web Services Guide

Sentinel EMS v7.1 Web Services Guide Sentinel EMS v7.1 Web Services Guide ii Sentinel EMS Web Services Guide Document Revision History Part Number 007-011157-001, Revision E. Software versions 7.1 and later. Revision Action/Change Date A

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

Credit Card Processing

Credit Card Processing Microsoft Dynamics AX 2009 Credit Card Processing Technical White Paper This white paper is intended for professionals who are involved in the implementation and support of the Credit Card Processing functionality

More information

Cloud Services ADM. Agent Deployment Guide

Cloud Services ADM. Agent Deployment Guide Cloud Services ADM Agent Deployment Guide 10/15/2014 CONTENTS System Requirements... 1 Hardware Requirements... 1 Installation... 2 SQL Connection... 4 AD Mgmt Agent... 5 MMC... 7 Service... 8 License

More information

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

Installing R and the psych package

Installing R and the psych package Installing R and the psych package William Revelle Department of Psychology Northwestern University August 17, 2014 Contents 1 Overview of this and related documents 2 2 Install R and relevant packages

More information

Introduction to Directory Services

Introduction to Directory Services Introduction to Directory Services Overview This document explains how AirWatch integrates with your organization's existing directory service such as Active Directory, Lotus Domino and Novell e-directory

More information

Cloud Powered Mobile Apps with Azure

Cloud Powered Mobile Apps with Azure Cloud Powered Mobile Apps with Azure Malte Lantin Technical Evanglist Microsoft Azure Agenda Mobile Services Features and Demos Advanced Features Scaling and Pricing 2 What is Mobile Services? Storage

More information

webcrm API Getting Started

webcrm API Getting Started webcrm API Getting Started 17.09.2012 / 08.12.2015 TS Contents.NET Application with autogenerated proxy class... 2.NET Application sending SOAP messages directly... 10 .NET Application with auto generated

More information

IaaS Configuration for Cloud Platforms

IaaS Configuration for Cloud Platforms vrealize Automation 6.2.3 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

UT Video Conferencing Update Notes

UT Video Conferencing Update Notes For non-windows clients, Scheduling Meetings is now available via the http://iview.utoledo.edu:8080/userportal/ Clicking on Schedule gives: Add participants in the To: field, Change Subject:, Set start

More information

Treemap by Category Visualizations. Product: IBM Cognos Active Report Area of Interest: Reporting

Treemap by Category Visualizations. Product: IBM Cognos Active Report Area of Interest: Reporting Treemap by Category Visualizations Product: IBM Cognos Active Report Area of Interest: Reporting Treemap by Category Visualizations 2 Copyright and Trademarks Licensed Materials - Property of IBM. Copyright

More information

KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon

KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon KMx Enterprise: Integration Overview for Member Account Synchronization and Single Signon KMx Enterprise includes two api s for integrating user accounts with an external directory of employee or other

More information

Technical Support Set-up Procedure

Technical Support Set-up Procedure Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it

More information

Extensibility. vcloud Automation Center 6.0 EN-001328-00

Extensibility. vcloud Automation Center 6.0 EN-001328-00 vcloud Automation Center 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

Package tagcloud. R topics documented: July 3, 2015

Package tagcloud. R topics documented: July 3, 2015 Package tagcloud July 3, 2015 Type Package Title Tag Clouds Version 0.6 Date 2015-07-02 Author January Weiner Maintainer January Weiner Description Generating Tag and Word Clouds.

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Business Availability Center Integration Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only

More information

NAIP Consortium Strengthening Statistical Computing for NARS www.iasri.res.in/sscnars SAS Enterprise Business Intelligence

NAIP Consortium Strengthening Statistical Computing for NARS www.iasri.res.in/sscnars SAS Enterprise Business Intelligence NAIP Consortium Strengthening Statistical Computing for NARS www.iasri.res.in/sscnars SAS Enterprise Business Intelligence BY Rajender Parsad, Neeraj Monga, Satyajit Dwivedi, RS Tomar, RK Saini Contents

More information

Tenrox and Microsoft Dynamics CRM Integration Guide

Tenrox and Microsoft Dynamics CRM Integration Guide Tenrox Tenrox and Microsoft Dynamics CRM Integration Guide January, 2012 2012 Tenrox. All rights reserved. About this Guide This guide describes the procedures for setting up integration between Microsoft

More information

MOC 20461C: Querying Microsoft SQL Server. Course Overview

MOC 20461C: Querying Microsoft SQL Server. Course Overview MOC 20461C: Querying Microsoft SQL Server Course Overview This course provides students with the knowledge and skills to query Microsoft SQL Server. Students will learn about T-SQL querying, SQL Server

More information

Package WikipediR. January 13, 2016

Package WikipediR. January 13, 2016 Type Package Title A MediaWiki API Wrapper Version 1.3.0 Date 2016-01-12 Author Oliver Keyes Package WikipediR January 13, 2016 Maintainer Oliver Keyes A wrapper for the MediaWiki

More information

Table of Contents VISMA ANALYSIS 3.6.0... 3 VISMA ANALYSIS 3.5.1... 5 VISMA ANALYSIS 3.5.0... 6

Table of Contents VISMA ANALYSIS 3.6.0... 3 VISMA ANALYSIS 3.5.1... 5 VISMA ANALYSIS 3.5.0... 6 News and Improvements Visma Analysis 3.6.0 Table of Contents VISMA ANALYSIS 3.6.0... 3 REPORT VIEWER... 3 REPORT TEMPLATES... 3 REPORT GENERATION... 4 EXCEL ADD-IN... 4 CONTENT / CUBES... 4 AUTHORIZATION

More information

Visualization with Excel Tools and Microsoft Azure

Visualization with Excel Tools and Microsoft Azure Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization

More information

Overview of Microsoft Office 365 Development

Overview of Microsoft Office 365 Development Overview of Microsoft Office 365 Development Office 365 Hands-on lab In this lab, you will work with existing Office 365 apps. This document is provided for informational purposes only and Microsoft makes

More information

Data Mailbox. support.ewon.biz. Reference Guide

Data Mailbox. support.ewon.biz. Reference Guide Reference Guide RG 005-0-EN / Rev. 1.0 Data Mailbox The Data Mailbox is a Talk2M service that gathers ewon historical data and makes it available for third party applications in an easy way. support.ewon.biz

More information

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016 Integration Guide IBM Note Before using this information and the product it supports, read the information

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 9.20 RESTful Web Services Guide Document Release Date: February 2013 Software Release Date: February 2013 Legal Notices Warranty The only warranties

More information

End User Setup and Handling

End User Setup and Handling on IM and Presence Service, page 1 Authorization Policy Setup On IM and Presence Service, page 1 Bulk Rename User Contact IDs, page 4 Bulk Export User Contact Lists, page 5 Bulk Export Non-Presence Contact

More information

PTC Integrity Eclipse and IBM Rational Development Platform Guide

PTC Integrity Eclipse and IBM Rational Development Platform Guide PTC Integrity Eclipse and IBM Rational Development Platform Guide The PTC Integrity integration with Eclipse Platform and the IBM Rational Software Development Platform series allows you to access Integrity

More information

Introduction to Building Windows Store Apps with Windows Azure Mobile Services

Introduction to Building Windows Store Apps with Windows Azure Mobile Services Introduction to Building Windows Store Apps with Windows Azure Mobile Services Overview In this HOL you will learn how you can leverage Visual Studio 2012 and Windows Azure Mobile Services to add structured

More information

Package HHG. July 14, 2015

Package HHG. July 14, 2015 Type Package Package HHG July 14, 2015 Title Heller-Heller-Gorfine Tests of Independence and Equality of Distributions Version 1.5.1 Date 2015-07-13 Author Barak Brill & Shachar Kaufman, based in part

More information