yhat.batchDeploy: Deploy a batch model to Yhat servers

Description Usage Arguments Examples

Description

This function will deploy your batch model to the yhat servers

Usage

1
yhat.batchDeploy(job_name, confirm = TRUE)

Arguments

job_name

name of batch job

confirm

boolean indicating whether to prompt before deploying

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
yhat.config <- c(
 username = "your username",
 apikey = "your apikey",
 env = "http://sandbox.yhathq.com/"
)
yhat.batch <- function() {
  name <- "ross"
  greeting <- paste("Hello", name)
  print(greeting)
}
## Not run: 
yhat.batchDeploy("helloworld")

## End(Not run)

yhatr documentation built on May 2, 2019, 4 p.m.