National Statistical Office of Mongolia’s Open Data API Handler for R
National Statistical Office of Mongolia (NSO) is the national statistical service and an organization of Mongolian government. NSO provides open access and official data via its web site www.1212.mn and API opendata.1212.mn. The package NSO1212 has functions for accessing the API service. The functions are compatible with the API v2.0 and get data sets and its detailed informations from the API.
all.tables <- all_tables()
print(all.tables$tbl_nm)
print(all.tables$tbl_id)
nso.data <- get_table(
tbl_id = "DT_NSO_2400_015V2",
PERIOD = c("201711", "201712", "201801"),
CODE = c("10", "11"),
CODE1 = "11"
)
print(nso.data)
table_info <- get_table_info("DT_NSO_2400_015V2")
table_info$unit_nm
table_info$obj[[1]]$itm[[1]]$scr_mn
From CRAN
From the repository on GitHub
Makhgal Ganbold, National University of Mongolia
© 2019 Makhgal Ganbold