Description Usage Arguments Details Author(s) See Also Examples
Query data from ILOSTAT SDMX API
| 1 2 3 | 
| scheme | an API scheme. Available schemes are "datastructure", "codelist" and "data". | 
| dimension | for scheme "datastructure": the format of dimensions returned. The dimension format "codelist" is compatible with scheme "codelist". | 
| DSD | a datastructure definition identified by the triplet  | 
| codelist | a codelist as returned by  | 
| filter | for scheme "data": a named list of filters passed to the API. The position of list items corresponds to the API filter dimensions. Each list item is either empty (no filter on dimension) or a character vector containing dimension members to be included in the results. Dimension members can be obtained from  | 
| query | logical to return SDMX http url only. | 
Helper function to efficiently query data from ILOSTAT SDMX API.
OECD STAN
| 1 2 3 4 5 6 7 8 9 10 11 12 | filter.list <- list(COLLECTION = "YI",
                    COUNTRY = c("FRA", "ESP", "AUT"),
                    FREQ = NULL,
                    SURVEY = NULL,
                    REPRESENTED_VARIABLE = NULL,
                    CLASSIF_ECO = c("ECO_ISIC4_TOTAL", "ECO_ISIC4_A"),
                    CLASSIF_OCU = c("OCU_ISCO08_TOTAL", "OCU_ISCO08_1"))
result <- ILOSTAT(scheme="codelist", codelist = "CL_ECO_ISIC4")
result <- ILOSTAT(scheme="datastructure", dimension = "codelist", DSD = "YI_ALL_EMP_TEMP_ECO_OCU_NB")
result <- ILOSTAT(scheme="datastructure", dimension = "conceptRef", DSD = "YI_ALL_EMP_TEMP_ECO_OCU_NB")
result <- ILOSTAT(scheme="data", filter = filter.list, DSD = "YI_ALL_EMP_TEMP_ECO_OCU_NB")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.