Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.1%) to scientific vocabulary
Keywords
duckdb
r-package
rstats
Last synced: 9 months ago
·
JSON representation
Repository
All of INKAR Data in a Local DuckDB Database
Basic Info
- Host: GitHub
- Owner: RegioHub
- License: other
- Language: R
- Default Branch: main
- Homepage: https://regiohub.github.io/inkr/
- Size: 197 MB
Statistics
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
- Releases: 5
Topics
duckdb
r-package
rstats
Created over 3 years ago
· Last pushed over 1 year ago
Metadata Files
Readme
License
Citation
README.Rmd
---
output: github_document
---
[](https://zenodo.org/badge/latestdoi/575766849)
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# inkr
{inkr} provides efficient and automated access to regional data from [inkar.de](https://www.inkar.de) via a local relational database.
Data from [INKAR](https://www.inkar.de)^[downloaded via ["Datenbankdownload"](https://www.bbr-server.de/imagemap/inkar/download/inkar_2024.zip)] are normalised^[i.e. not a single table with 21 million rows] and imported into a local [DuckDB](https://duckdb.org) database. On attach (e.g. with `library(inkr)`), a [DBI](https://dbi.r-dbi.org/) connection is made from R to this database.
## Installation
You can install {inkr} like so:
```{r eval=FALSE}
remotes::install_github("RegioHub/inkr")
```
## Usage
A local database containing the INKAR data must be built before first use:
```{r eval=FALSE}
library(inkr)
inkar_db_build()
```
```{r include=FALSE}
library(inkr)
```
Afterwards, all the tables in the local INKAR database are accessible in R via an object named `inkar`.^[More precisely, `inkar` contains connections to the tables in the DuckDB database via [DBI](https://dbi.r-dbi.org/) and [dbplyr](https://dbplyr.tidyverse.org/).]
Currently, `inkar` contains the following tables:
```{r}
# See `?inkar` for more details
names(inkar)
```
You can use {dplyr} to work with the tables in `inkar` as if they were in-memory data frames, e.g.:
```{r message=FALSE}
library(dplyr)
inkar$`_regionen` |>
distinct(raumbezug) |>
arrange(raumbezug)
inkar$`_indikatoren` |>
count(bereich)
```
### Example: median income
Find the indicator ID for the median income:
```{r}
inkar$`_indikatoren` |>
filter(kurzname == "Medianeinkommen")
```
5 counties with the highest median income in 2021:
```{r}
inkar$privateinkommen_und_private_schulden |>
filter(raumbezug == "Kreise", zeitbezug == 2021) |>
select(name, m_ek) |>
arrange(desc(m_ek)) |>
head(5)
```
## Citation
```{r echo=FALSE, results='asis'}
print(citation("inkr"), bibtex = FALSE)
```
A BibTeX entry for LaTeX users is
```{r echo=FALSE, comment=""}
toBibtex(citation("inkr"))
```
## Copyright notice
The data are made available by the [*Bundesinstitut fr Bau-, Stadt- und Raumforschung* (BBSR)](https://www.bbsr.bund.de) in accordance with the [data licence Germany attribution version 2.0](https://www.govdata.de/dl-de/by-2-0).
This package is in no way officially related to or endorsed by BBSR.
Owner
- Name: RegioHub
- Login: RegioHub
- Kind: organization
- Location: Germany
- Repositories: 5
- Profile: https://github.com/RegioHub
Leibniz ScienceCampus SOEP RegioHub at Bielefeld University
GitHub Events
Total
- Create event: 1
- Release event: 1
- Issues event: 1
- Watch event: 1
- Push event: 6
- Fork event: 1
Last Year
- Create event: 1
- Release event: 1
- Issues event: 1
- Watch event: 1
- Push event: 6
- Fork event: 1
Dependencies
.github/workflows/pkgdown.yaml
actions
- JamesIves/github-pages-deploy-action v4.5.0 composite
- actions/checkout v4 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/update-citation-cff.yaml
actions
- actions/checkout v3 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION
cran
- R >= 4.1 depends
- DBI * imports
- dplyr * imports
- duckdb * imports
- snakecase * imports
- stringi * imports
- testthat >= 3.0.0 suggests