jobs_in_country.Rd
Extract job listings for a certain country
jobs_in_country(jobs_data, job_location)
jobs_data | A data.frame of jobs from which to filter |
---|---|
job_level | A character string containing the country of interest |
A data.frame of job postings in a certain country
df <- get_job_listings() us_jobs <- jobs_in_country(df, "united states") ## Multiple countries selected_jobs <- jobs_in_country(df, "united states|canada")