get_table_list: Retrieve a data.frame with requested cbs tables

Description Usage Arguments Value Examples

View source: R/get-table-list.R

Description

This method is deprecated in favor of cbs_get_toc().

Usage

1
2
3
4
5
get_table_list(
  ...,
  select = NULL,
  base_url = getOption("cbsodataR.base_url", BASE_URL)
)

Arguments

...

filter statement to select rows, e.g. Language="nl"

select

character columns to be returned, by default all columns will be returned.

base_url

optionally specify a different server. Useful for third party data services implementing the same protocal.

Value

data.frame with identifiers, titles and descriptions of tables

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 

# get list of english tables
tables_en <- get_table_list(Language="en")

# get list of dutch tables
tables_nl <- get_table_list(Language="nl")
View(tables_nl)

## End(Not run)

cbsodataR documentation built on Jan. 13, 2021, 7:30 p.m.