Description Usage Arguments Value Examples
Creates a job in VORTX
1 | create_job(key, data, jobname, jobdesc = NULL)
|
key |
String. User API Key for VORTX. |
data |
DataFrame. Data to be created as a job. |
jobname |
String. Title of job to be created. |
jobdesc |
String. Description of job to be created. Optional. Default NULL. |
Job. Parsed content of API request, containing job information, such as job ID, used in other functions.
1 2 3 4 5 6 7 8 9 | ## Not run:
mykey <- '1234567890abcefghijkl'
myjobname <- 'My job'
myjobdesc <- 'This is a job that does job stuff'
df <- r2vortx::wine
create_job(mykey, df, myjobname, myjobdesc)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.