Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubenarslan/codebook
Cook rmarkdown codebooks from metadata on R data frames
https://github.com/rubenarslan/codebook
codebook documentation formr json-ld metadata r spss webapp
Last synced: 3 months ago
JSON representation
Cook rmarkdown codebooks from metadata on R data frames
- Host: GitHub
- URL: https://github.com/rubenarslan/codebook
- Owner: rubenarslan
- License: other
- Created: 2017-11-02T10:50:15.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-13T12:26:28.000Z (almost 2 years ago)
- Last Synced: 2024-08-12T13:31:05.901Z (3 months ago)
- Topics: codebook, documentation, formr, json-ld, metadata, r, spss, webapp
- Language: R
- Homepage: https://rubenarslan.github.io/codebook/
- Size: 91.6 MB
- Stars: 140
- Watchers: 5
- Forks: 17
- Open Issues: 31
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - rubenarslan/codebook - Cook rmarkdown codebooks from metadata on R data frames (HTML)
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```# codebook
[![Travis-CI Build Status](https://travis-ci.org/rubenarslan/codebook.svg?branch=master)](https://travis-ci.org/rubenarslan/codebook)
[![CRAN status](http://www.r-pkg.org/badges/version-ago/codebook)](https://cran.r-project.org/package=codebook)
![Downloads](https://cranlogs.r-pkg.org/badges/grand-total/codebook)
[![codecov](https://codecov.io/gh/rubenarslan/codebook/branch/master/graph/badge.svg)](https://codecov.io/gh/rubenarslan/codebook)
[![DOI](https://zenodo.org/badge/109252375.svg)](https://zenodo.org/badge/latestdoi/109252375)_Automatic Codebooks from Metadata Encoded in Dataset Attributes_
## Description
Easily automate the following tasks to describe data frames:
- summarise the distributions, and labelled missings of variables graphically and using descriptive statistics
- for surveys, compute and summarise reliabilities (internal consistencies, retest, multilevel) for psychological scales,
- combine this information with metadata (such as item labels and labelled values) that is derived from R attributes.To do so, the package relies on 'rmarkdown' partials, so you can generate HTML, PDF, and Word documents. Codebooks are also available as tables (CSV, Excel, etc.) and in JSON-LD, so that search engines can find your data and index the metadata.
## Generate markdown codebooks from the attributes of the variables in your data frame
RStudio and a few of the tidyverse package already usefully display the information contained in the attributes of the variables in your data frame. The [haven](https://github.com/hadley/haven) package also manages to grab variable documentation from SPSS or Stata files.
## RStudio Addin
If the RStudio data viewer scrolls slow for your taste, or you'd like to keep the variable labels in view while working, use our RStudio Addins (ideally assigned to a keyboard shortcut) to see and search variable and value labels in the viewer pane.![](https://rubenarslan.github.io/codebook/reference/figures/codebook_addin.gif)
## Codebook generation
The codebook package takes those attributes and the data and tries to produce a good-looking codebook, i.e. a place to get an overview of the variables in a dataset. The codebook processes single items, but also "scales", i.e. psychological questionnaires that are aggregated to extract a construct. For scales, the appropriate reliability coefficients (internal consistencies for single measurements, retest reliabilities for repeated measurements, multilevel reliability for multilevel data) are computed.
For items and scales, the distributions are summarised graphically and numerically.This package integrates tightly with formr ([formr.org](https://formr.org)), an online survey framework and especially the data frames produced and marked up by the [formr R package](https://github.com/rubenarslan/formr). However, codebook is completely independent of it.
## Documentation
Confer the help or: https://rubenarslan.github.io/codebook.
See the [vignette](https://rubenarslan.github.io/codebook/articles/codebook.html) for a quick example of an HTML document generated using `codebook`, or below for a copy-pastable rmarkdown document to get you started.## Use as a webapp
If you don't want to install the codebook package, you can just upload an annotated dataset in a variety of formats (R, SPSS, Stata, ...) here: https://codebook.formr.org
## Use locally
### InstallRun the following in R.
```r
install.packages("codebook")
```Or to get the latest development version:
```r
install.packages("remotes")
remotes::install_github("rubenarslan/codebook")
```Then run the following to get started:
```r
library(codebook)
new_codebook_rmd()
```## Citation
To cite the package, you can cite the paper (currently only the preprint is available to read), but to make your codebook
traceable to the version of the package you used, you might also want to cite
the archived package DOI.### Paper
> Arslan, R. C. (in press). How to automatically document data with the codebook package to facilitate data re-use. Advances in Methods and Practices in Psychological Science. [doi:10.1177/2515245919838783](https://doi.org/10.1177/2515245919838783) [Open Access Preprint](https://doi.org/10.31234/osf.io/5qc6h)### Zenodo
> Arslan, R. C. (2018). Automatic codebooks from survey metadata (2018). URL https://github.com/rubenarslan/codebook. [![DOI](https://zenodo.org/badge/109252375.svg)](https://zenodo.org/badge/latestdoi/109252375)### How to use
Here's a simple rmarkdown template, that you could use to get started.
The resulting codebook will be an HTML file, but you can also choose to generate PDFs or Word files by fiddling with the `output` settings.````markdown
---
title: "Codebook"
output:
html_document:
toc: true
toc_depth: 4
toc_float: true
code_folding: 'hide'
self_contained: true
pdf_document:
toc: yes
toc_depth: 4
latex_engine: xelatex
---```{r setup}`r ''`
knitr::opts_chunk$set(
warning = TRUE, # show warnings during codebook generation
message = TRUE, # show messages during codebook generation
error = TRUE, # do not interrupt codebook generation in case of errors,
# usually makes debugging easier, and sometimes half a codebook
# is better than none
echo = FALSE # don't show the R code
)
ggplot2::theme_set(ggplot2::theme_bw())```
Here, we import data from formr
```{r}`r ''`
library(formr)
source(".passwords.R")
formr_connect(email = credentials$email, password = credentials$password)
codebook_data <- formr_results("s3_daily")
```But we can also import data from e.g. an SPSS file.
```{r}`r ''`
codebook_data <- rio::import("s3_daily.sav")
```Sometimes, the metadata is not set up in such a way that codebook
can leverage it fully. These functions help fix this.```{r codebook}`r ''`
library(codebook) # load the package
# omit the following lines, if your missing values are already properly labelled
codebook_data <- detect_missing(codebook_data,
only_labelled = TRUE, # only labelled values are autodetected as
# missing
negative_values_are_missing = FALSE, # negative values are NOT missing values
ninety_nine_problems = TRUE, # 99/999 are missing values, if they
# are more than 5 MAD from the median
)# If you are not using formr, the codebook package needs to guess which items
# form a scale. The following line finds item aggregates with names like this:
# scale = scale_1 + scale_2R + scale_3R
# identifying these aggregates allows the codebook function to
# automatically compute reliabilities.
# However, it will not reverse items automatically.
codebook_data <- detect_scales(codebook_data)
```Now, generating a codebook is as simple as calling codebook from a chunk in an
rmarkdown document.```{r}`r ''`
codebook(codebook_data)
```
````## [Code of conduct for contributing](https://github.com/rubenarslan/codebook/blob/master/CONDUCT.md)