Skip to content

An R package to extract information from popular job site indeed.com

Notifications You must be signed in to change notification settings

gpoudel/JobsInR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JobsInR

An R package to extract information from popular job site indeed.com

Dependencies

  • rvest
  • stringr

Installation

the package can be installed with devtools as:

# install.packages("devtools")
devtools::install_github("gpoudel/JobsInR")

#Also do not forget to install/load dependencies
#install.packages('rvest')
#install.packages('stringr')

library('JobsInR')
library('rvest')
library('stringr')

Functions

As of now the package has the following functions:

1. jobs_count(search.keyword, search.location)

This function returns the total number of jobs available.

Eg:

jobs_count('python', 'texas')
[1] 2693

2. jobs_df(search.keyword, search.location)

This function returns a dataframe. The datafrmae consists of following columns

  • Date
  • Title
  • Company
  • Location
  • Summary
  • URL

Note: This function also eliminates any duplicate entries listed on website (based on original URL), thus the number of rows in dataframe can be less than that got from using the function 'jobs_count()'.

Eg:

delphi_texas <- jobs_df('delphi', 'texas')

About

An R package to extract information from popular job site indeed.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages