codeJobHistory | R Documentation |
This codes one job at a time. In order to code multiple jobs, you can create a tibble (data frame) and use pmap_dfr to produce a results tibble similar to the web-based version of SOCcer (https://soccer.nci.nih.gov)
codeJobHistory(title, task = "", industry = "", ..., n = 10)
title |
The job title |
task |
tasks performed on the job |
industry |
industry (SIC 1987 code) |
... |
(not used) |
n |
the number of soc codes to return (default) |
Please use the web-based version for handling large jobs.
a tibble consisting of the title/task/industry and the top n SOCcer results and scores
## Not run:
soccer_results <- codeJobHistory("epidemiologist")
jobs <- tibble::tibble(title=c("chemist","farmer","data scientist"),
task=rep("",3),industry=rep("",3))
soccer_results_3 <- purrr::pmap_dfr(jobs,codeJobHistory,n=20)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.