Skip to contents

Data request function

Usage

gdl_request(session)

Arguments

session

A valid GDL session object to interface with.

Examples

# Create a session using your API token (provided by environment here)
session <- gdl_session(Sys.getenv('GDL_API_TOKEN'))
# Customize parameters
session <- set_indicator(session, 'iwi')
session <- set_country(session, 'IND')
# Finally, request the data from GDL
iwi_india <- gdl_request(session)
iwi_india[1:5, 3:8]
#>   ISO_Code    Level GDLCODE                      Region X1992 X1993
#> 1      IND National    INDt                       Total  26.3  26.9
#> 2      IND   Subnat INDr136 Andaman and Nicobar Islands    NA    NA
#> 3      IND   Subnat INDr101              Andhra Pradesh  24.0  24.7
#> 4      IND   Subnat INDr125           Arunachal Pradesh  26.2  26.5
#> 5      IND   Subnat INDr102                       Assam  16.6  16.9
# (showing only the five rows and columns for illustrative purposes)