Description Usage Arguments Examples
Run resume_job_offer on all the job_offers and return a data.table with the summary
1 | summarise_all_job_offers(job_offer, tagger, key_words)
|
job_offer |
: data.table of job offer. |
tagger |
: an updpipe model for the annotation |
key_words |
: key words on which construct the summary |
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
key_words<-c("systematic", "review", "text", "mining", "text")
tagger <- udpipe_load_model("english-gum-ud-2.4-190531.udpipe")
urls<-scrape_urls_euraxess(search_url, 3)
job_offer<-pblapply(urls, read_job_offer)
job_offer<-rbindlist(job_offer, use.names = TRUE)
saveRDS(job_offer, file="job_offer.RDS")
job_offer<-summarise_all_job_offers(job_offer, tagger, key_words)
saveRDS(job_offer, file="job_offer_curated.RDS")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.