Extract job listings for a certain country

jobs_in_country(jobs_data, job_location)

Arguments

jobs_data

A data.frame of jobs from which to filter

job_level

A character string containing the country of interest

Value

A data.frame of job postings in a certain country

Examples

df <- get_job_listings() us_jobs <- jobs_in_country(df, "united states") ## Multiple countries selected_jobs <- jobs_in_country(df, "united states|canada")