lifecycle

knitr::opts_chunk$set(collapse = TRUE, comment = "#>", fig.path = "README-")
data(list = c("countries", "currencies", "exchanges"), package = "fewISOs")

fewISOs provides a collection of financial economics related ISO code datasets conveniently packaged for consumption in R.
Install the development version from github using: devtools::install_github("bautheac/fewISOs").

Countries

The countries dataset corresponds to the ISO 3166-1 sub-standard, part of the ISO 3166 standard published by the International Organization for Standardization (ISO) that defines codes for the names of countries, dependent territories, special areas of geographical interest, and their principal subdivisions (e.g., provinces or states). The sub-standard comes in three sets of country codes, all provided in the dataset:

library(fewISOs)

head(countries)

Currencies

The currencies dataset corresponds to the ISO 4217 standard that defines codes for worldwide currencies and comes as a three-letter alphabetic as well as an alternative three-digit numeric code, both provided in the dataset. The ISO 4217 three-letter alphabetic code standard is based on the ISO 3166-1 code standard for countries with the first two letters corresponding the ISO 3166-1 alpha-2 code for the country issuing the corresponding currency and the third corresponding to the first letter of the currency name when possible. The three-digit numeric code is the same as the ISO 3166-1 numeric code for the issuing country when possible.

head(currencies)

Exchanges

The exchanges dataset corresponds to the ISO 10383 standard that defines four alphanumeric character Market Identifier Codes (MIC). These are unique identification codes used to identify securities trading exchanges, trading platforms and regulated or non-regulated markets as sources of prices and related information in order to facilitate automated processing.

head(exchanges)

finRes

Although fewISOs is self-contained it belongs to the finRes suite of packages where it helps with data wrangling and analysis.



bautheac/fewISOs documentation built on June 5, 2021, 3:23 a.m.