The goal of the marketingphdjobs package is to automate the collection of job listings from the marketingphdjobs.org. This package currently collects all available jobs, or a subset of job listings based on a user specified date.

Installation

The marketingphdjobs package can be installed using the package devtools. After installing devtools, marketingphdjobs is installed by entering:

# install devtools if not already installed
# install.packages(devtools)
devtools::install_github("lachlandeer/marketingphdjobs")

into the R console.

Example

This is a basic example which shows you how to solve a common problem:

library(marketingphdjobs)
## download all job listings
job_list <-  get_job_listings()

## get jobs posted on and after a given date
date_threshold <- lubridate::ymd("2019/06/18")
new_jobs       <- get_new_jobs(date_lower = date_threshold)

## get jobs in a country of a certain level
my_jobs <- job_list %>% 
            jobs_in_country("united_states")  %>% 
            job_type("assistant")