Science Score: 26.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
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (19.2%) to scientific vocabulary
Keywords
r
r-package
rstats
Last synced: 10 months ago
·
JSON representation
Repository
R interface to GESIS Search
Basic Info
- Host: GitHub
- Owner: JsLth
- License: other
- Language: R
- Default Branch: main
- Homepage: https://jslth.github.io/rgesis/
- Size: 2.35 MB
Statistics
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Topics
r
r-package
rstats
Created over 1 year ago
· Last pushed over 1 year ago
Metadata Files
Readme
License
Codemeta
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# rgesis
[](https://github.com/jslth/rgesis/actions/workflows/R-CMD-check.yaml)
[](https://github.com/jslth/rgesis/actions/workflows/rhub.yaml)
[](https://CRAN.R-project.org/package=rgesis)
[](https://www.repostatus.org/#active)
[](https://app.codecov.io/gh/JsLth/rgesis?branch=main)
[](https://www.codefactor.io/repository/github/jslth/rgesis/overview/main)
`{rgesis}` provides a simple, programmatic and reproducible interface to the GESIS search engine. It allows the retrieval of metadata on records like research datasets, variables, publications, and tools. Based on this, the package can also download survey data from the data archive.
Note that while the GESIS search API can be accessed directly, you need to be logged in to download any survey data. You can create a user account [here](https://login.gesis.org/realms/gesis/login-actions/registration?client_id=js-login). `{rgesis}` takes over continuous credentials management and OAuth authentication using the [`{keyring}`](https://keyring.r-lib.org/) and [`{httr2}`](https://httr2.r-lib.org/) packages. By downloading data from the GESIS data archive, you agree to its [terms of use](https://www.gesis.org/fileadmin/upload/dienstleistung/daten/umfragedaten/_bgordnung_bestellen/2023-06-30_Usage_regulations.pdf).
## Installation
You can install the development version of rgesis from [GitHub](https://github.com/) with:
``` r
# install.packages("pak")
pak::pkg_install("jslth/rgesis")
```
## Example
`{rgesis}` can be used to search for research data
```{r search-data}
library(rgesis)
gesis_search("allbus", type = "research_data")
```
... or other things from the social sciences, like publications.
```{r}
gesis_search("climate change", type = "publication")
```
The results include metadata in complex data structures -- or simplified to a tidy rectangular shape.
```{r}
gesis_search(tidy = TRUE)
```
Metadata records can also be used to download survey data directly from the data archive. You need to be logged in, though.
```{r, eval=FALSE}
# gesis_auth()
sav_file <- gesis_data("ZA5272", select = "\\.sav")
haven::read_sav(sav_file)
```
# Related packages
- [`{gesisdata}`](https://fsolt.org/gesisdata/) provides access to the GESIS data archive using web browser automation
- [`{mannheim}`](https://github.com/sumtxt/mannheim) and [`{gesis}`](https://github.com/expersso/gesis) provide direct API access but are outdated and do not account for the full capabilities of the search engine
Owner
- Name: Jonas Lieth
- Login: JsLth
- Kind: user
- Location: Cologne, Germany
- Company: GESIS - Leibniz Institute for the Social Sciences
- Repositories: 1
- Profile: https://github.com/JsLth
CodeMeta (codemeta.json)
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"identifier": "rgesis",
"description": "Provides programmatic access to the GESIS Search engine <https://search.gesis.org/> to retrieve metadata on research data, variables, literature, and tools. Authenticate and download datasets from the GESIS data archive with minimal dependencies.",
"name": "rgesis: Interface to GESIS Search",
"relatedLink": "https://jslth.github.io/rgesis/",
"codeRepository": "https://github.com/jslth/rgesis/",
"issueTracker": "https://github.com/jslth/rgesis/issues",
"license": "https://spdx.org/licenses/MIT",
"version": "0.1.0",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.4.0 (2024-04-24 ucrt)",
"author": [
{
"@type": "Person",
"givenName": "Jonas",
"familyName": "Lieth",
"email": "jonas.lieth@gesis.org",
"@id": "https://orcid.org/0000-0002-3451-3176"
}
],
"copyrightHolder": [
{
"@type": "Person",
"givenName": "Jonas",
"familyName": "Lieth",
"email": "jonas.lieth@gesis.org",
"@id": "https://orcid.org/0000-0002-3451-3176"
}
],
"maintainer": [
{
"@type": "Person",
"givenName": "Jonas",
"familyName": "Lieth",
"email": "jonas.lieth@gesis.org",
"@id": "https://orcid.org/0000-0002-3451-3176"
}
],
"softwareSuggestions": [
{
"@type": "SoftwareApplication",
"identifier": "knitr",
"name": "knitr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=knitr"
},
{
"@type": "SoftwareApplication",
"identifier": "rmarkdown",
"name": "rmarkdown",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rmarkdown"
},
{
"@type": "SoftwareApplication",
"identifier": "testthat",
"name": "testthat",
"version": ">= 3.0.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=testthat"
},
{
"@type": "SoftwareApplication",
"identifier": "tibble",
"name": "tibble",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tibble"
},
{
"@type": "SoftwareApplication",
"identifier": "haven",
"name": "haven",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=haven"
},
{
"@type": "SoftwareApplication",
"identifier": "pdftools",
"name": "pdftools",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=pdftools"
}
],
"softwareRequirements": {
"1": {
"@type": "SoftwareApplication",
"identifier": "cli",
"name": "cli",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=cli"
},
"2": {
"@type": "SoftwareApplication",
"identifier": "httr2",
"name": "httr2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=httr2"
},
"3": {
"@type": "SoftwareApplication",
"identifier": "jsonlite",
"name": "jsonlite",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=jsonlite"
},
"4": {
"@type": "SoftwareApplication",
"identifier": "keyring",
"name": "keyring",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=keyring"
},
"5": {
"@type": "SoftwareApplication",
"identifier": "askpass",
"name": "askpass",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=askpass"
},
"SystemRequirements": null
},
"fileSize": "230.97KB",
"readme": "https://github.com/JsLth/rgesis/blob/main/README.md",
"contIntegration": [
"https://github.com/jslth/rgesis/actions/workflows/R-CMD-check.yaml",
"https://github.com/jslth/rgesis/actions/workflows/rhub.yaml",
"https://app.codecov.io/gh/JsLth/rgesis?branch=main"
],
"developmentStatus": "https://www.repostatus.org/#active",
"keywords": [
"r",
"r-package",
"rstats"
]
}
GitHub Events
Total
- Watch event: 2
- Push event: 67
- Create event: 6
Last Year
- Watch event: 2
- Push event: 67
- Create event: 6
Issues and Pull Requests
Last synced: about 1 year ago
All Time
- Total issues: 0
- Total pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Total issue authors: 0
- Total pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Dependencies
.github/workflows/R-CMD-check.yaml
actions
- actions/checkout v4 composite
- actions/setup-java v3 composite
- r-lib/actions/check-r-package v2 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/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/rhub.yaml
actions
- r-hub/actions/checkout v1 composite
- r-hub/actions/platform-info v1 composite
- r-hub/actions/run-check v1 composite
- r-hub/actions/setup v1 composite
- r-hub/actions/setup-deps v1 composite
- r-hub/actions/setup-r v1 composite
.github/workflows/test-coverage.yaml
actions
- actions/checkout v4 composite
- actions/setup-java v3 composite
- actions/upload-artifact v4 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION
cran
- cli * imports
- httr2 * imports
- jsonlite * imports
- keyring * imports
- haven * suggests
- knitr * suggests
- pdftools * suggests
- rmarkdown * suggests
- testthat >= 3.0.0 suggests
- tibble * suggests