summarise_all_job_offers: summarise_all_job_offers

Description Usage Arguments Examples

View source: R/Euraxess.R

Description

Run resume_job_offer on all the job_offers and return a data.table with the summary

Usage

1
summarise_all_job_offers(job_offer, tagger, key_words)

Arguments

job_offer

: data.table of job offer.

tagger

: an updpipe model for the annotation

key_words

: key words on which construct the summary

Examples

 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)

Cdk29/EuRaxess documentation built on July 8, 2021, 4:43 a.m.