get_n_series {blsR} | R Documentation |
Create and execute a query to retrieve one or more time series and their catalog data
get_n_series(series_ids, api_key, ...)
series_ids |
a list or character vector of BLS time-series IDs. If the list items are named then the names will be used in the returned list |
api_key |
a required API key, available from https://data.bls.gov/registrationEngine/ |
... |
additional parameters to pass to |
a list of series results (a list of lists). For more information on
the shape of the series results see get_series()
Other blsR-requests:
bls_request()
,
get_all_surveys()
,
get_latest_observation()
,
get_n_series_table()
,
get_popular_series()
,
get_series_tables()
,
get_series_table()
,
get_series()
,
get_survey_info()
## Not run:
series_ids <- list(uer.men ='LNS14000001', uer.women = 'LNS14000002')
uer_series <- get_n_series(series_ids, 'your-api-key-here' )
## End(Not run)