get_ilo: R tools to access internal data on oracle / ilostat

Description Usage Arguments Value Specification Examples

View source: R/get_ilo.r

Description

R tools to access internal data on oracle / ilostat

Usage

1

Arguments

...

Specification of selection and/or queries.

Value

a tbl data frame

Specification

These functions allow you to select database variables based on their names.

others functions allow advanced manipulation.

To learn more about ilo, start with the online vignettes: help_ilo()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
init_ilo()


### quarterly time serie of female unemployed as from 2000 in united states

get_ilo(collection = 'STI', 
	freq = 'Q', ref_area = 'USA', 
	indicator = 'UNE_TUNE_SEX_AGE_NB', 
	timefrom = '2000', sex = 'F', classif1 = 'AGGREGATE_TOTAL', 
	query = 'select(ref_area:obs_value) %>% spread(time, obs_value)', package = 'tidyr')

### Annual data of Afganistan from Yearly Collection

get_ilo(ref_area = 'AFG')

### Annual collected data  from Yearly Collection

get_ilo(info = 'COL')

### Working with label

get_ilo(label, ref_area = 'AFG', source = 'Census', indicator = 'population')

dbescond/ilo documentation built on Dec. 10, 2019, 10:01 a.m.