View source: R/glassdoor_employer.R
gd_company | R Documentation |
Glassdoor Company Search
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(...)
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. |
if (have_gd_tokens()) {
res = gd_company_df("walmart")
head(res[, c("id", "name")])
res = gd_company_df("Target")
res = gd_company("Dropbox")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.