Description Usage Arguments Value Examples
Runs Discoverer from a created Job in VORTX
1 | start_discoverer(key, job, target, ignoredcols = NULL)
|
key |
String. User API Key for VORTX. |
job |
String or List. Can be either a job ID number in string format or parsed JSON in list format, result of organizer or discoverer functions. |
target |
String. Name of column to be used as Target. |
ignoredcols |
String or Vector of strings. Optional name of columns to be ignored. Default is 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 10 11 12 | ## Not run:
mykey <- '1234567890abcefghijkl'
myjobid <- '0987654321'
myjobname <- 'My job'
myjobdesc <- 'This is a job that does job stuff'
df <- data.frame(c(1,2,3), c(4,5,6), c(7,8,9))
myjob <- create_job(mykey, df, myjobname, myjobdesc)
start_discoverer(mykey, myjob, myjobname, myjobdesc)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.