estat_getStatsList {estatapi} | R Documentation |
getStatsList API
Description
Search for statistical datasets via e-Stat API.
Usage
estat_getStatsList(
appId,
searchWord,
lang = c("J", "E"),
.use_label = TRUE,
surveyYears = NULL,
openYears = NULL,
statsField = NULL,
statsCode = NULL,
searchKind = NULL,
collectArea = NULL,
startPosition = NULL,
limit = NULL,
updatedDate = NULL,
...
)
Arguments
appId |
Application ID. |
searchWord |
Keyword for searching. You can use |
lang |
Language of the data. |
.use_label |
Whether to take the human-redable label value or the code value when
flattening a field containing both (default: |
surveyYears |
Year and month when the survey was conducted. The format is either
|
openYears |
Year and month when the survey result was opened. The format is the
same as |
statsField |
Field of statistics. The format is either two digits(large classification) or four digits (small classification). For the detail of the classification, see http://www.soumu.go.jp/toukei_toukatsu/index/seido/sangyo/26index.htm. |
statsCode |
Code assigned for each statistical agency and statistics. The format can be five digits (agency), and eight digits (statistics). For the detail, see http://www.stat.go.jp/info/guide/public/code/code.htm. |
searchKind |
Type of statistics.
|
collectArea |
Area of statistics.
|
startPosition |
Index of the first record to get. |
limit |
Max number of records to get. |
updatedDate |
Last updated date. The format is either |
... |
Other parameters. |
See Also
http://www.e-stat.go.jp/api/e-stat-manual3-0/#api_2_1 http://www.e-stat.go.jp/api/e-stat-manual3-0/#api_3_2
Examples
## Not run:
estat_getStatsList(
appId = "XXXX",
searchWord = "CD",
limit = 3
)
## End(Not run)