gd_company {glassdoor} | R Documentation |
Glassdoor Company Search
Description
Glassdoor Company Search
Usage
gd_company(query = NULL, ..., location = NULL, city = NULL,
state = NULL, country = NULL, page_number = NULL,
page_size = NULL)
gd_employer(query = NULL, ..., location = NULL, city = NULL,
state = NULL, country = NULL, page_number = NULL,
page_size = NULL)
gd_company_df(...)
gd_employer_df(...)
Arguments
query |
Additional options to pass to the query other than those specified here |
... |
arguments to pass to |
location |
Scope the search to a specific location by specifying it here - city, state, or country. |
city |
Scope the search to a specific city by specifying it here. |
state |
Scope the search to a specific state by specifying it here. |
country |
Scope the search to a specific country by specifying it here. |
page_number |
Page number to retrieve. Default is 1. |
page_size |
Page size, i.e. the number of jobs returned on each page of results. Default is 20. |
Examples
if (have_gd_tokens()) {
res = gd_company_df("walmart")
head(res[, c("id", "name")])
res = gd_company_df("Target")
res = gd_company("Dropbox")
}
[Package glassdoor version 0.8.1 Index]