Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m-muecke/gleif
R client for the GLEIF API
https://github.com/m-muecke/gleif
gleif isin lei r r-package
Last synced: 21 days ago
JSON representation
R client for the GLEIF API
- Host: GitHub
- URL: https://github.com/m-muecke/gleif
- Owner: m-muecke
- License: other
- Created: 2024-01-06T15:53:46.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T08:39:44.000Z (2 months ago)
- Last Synced: 2024-09-17T11:12:10.539Z (2 months ago)
- Topics: gleif, isin, lei, r, r-package
- Language: R
- Homepage: https://m-muecke.github.io/gleif/
- Size: 3.54 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
options(tibble.print_min = 5L, tibble.print_max = 5L)
```# gleif
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![R-CMD-check](https://github.com/m-muecke/gleif/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/m-muecke/gleif/actions/workflows/R-CMD-check.yaml)
[![CRAN status](https://www.r-pkg.org/badges/version/gleif)](https://CRAN.R-project.org/package=gleif)gleif is a minimal R client for the [gleif](https://www.gleif.org) API.
A major challenge when dealing with financial data is the mapping of entities across different data sources.
Especially when dealing with legal entities, the Legal Entity Identifier (LEI) can be used to uniquely identify entities.## Installation
You can install the development version of gleif from [GitHub](https://github.com/) with:```{r, eval = FALSE}
# install.packages("pak")
pak::pak("m-muecke/gleif")
```## Usage
Currently only the download of the lei mapping data is supported.
```{r}
library(gleif)mapping <- lei_mapping("isin")
mapping
```## Related work
- [gleifr](https://github.com/Financial-Times/gleifr) - R package to support analysis of GLEIF data