Learning How to Create a Data Codebook

Load Packages

if(!require(haven)){
  install.packages("haven", dependencies = TRUE)
  library(haven)
}
Loading required package: haven
if(!require(tidyverse)){
  install.packages("tidyverse", dependencies = TRUE)
  library(tidyverse)
}
Loading required package: tidyverse
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.4     ✔ readr     2.1.5
✔ forcats   1.0.0     ✔ stringr   1.5.1
✔ ggplot2   3.5.1     ✔ tibble    3.2.1
✔ lubridate 1.9.3     ✔ tidyr     1.3.1
✔ purrr     1.0.2     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
if(!require(summarytools)){
  install.packages("summarytools", dependencies = TRUE)
  library(summarytools)
}
Loading required package: summarytools
Warning in fun(libname, pkgname): couldn't connect to display ":0"
system might not have X11 capabilities; in case of errors when using dfSummary(), set st_options(use.x11 = FALSE)

Attaching package: 'summarytools'
The following object is masked from 'package:tibble':

    view

Import Data

dataset.spss <- read_sav ("Harry Potter Data.sav")  

Codebook

dataset.spss %>%
  select(CoinFlip, FFM_4, Potter6) -> newVariable  
print(dfSummary(newVariable, graph.magnif = .75), method = 'render')
Warning in png(png_loc <- tempfile(fileext = ".png"), width = 150 *
graph.magnif, : unable to open connection to X11 display ''
Warning in png(png_loc <- tempfile(fileext = ".png"), width = 150 *
graph.magnif, : unable to open connection to X11 display ''
Warning in png(png_loc <- tempfile(fileext = ".png"), width = 150 *
graph.magnif, : unable to open connection to X11 display ''

Data Frame Summary

newVariable

Dimensions: 122 x 3
Duplicates: 97
No Variable Label Stats / Values Freqs (% of Valid) Graph Valid Missing
1 CoinFlip [haven_labelled, vctrs_vctr, double] Flip a coin. Is it heads or tails?
Min : 1
Mean : 1.3
Max : 2
1 : 83 ( 70.3% )
2 : 35 ( 29.7% )
118 (96.7%) 4 (3.3%)
2 FFM_4 [haven_labelled, vctrs_vctr, double] I see Myself as Someone Who..... - Is depressed, blue
Mean (sd) : 2.5 (1.3)
min ≤ med ≤ max:
1 ≤ 2 ≤ 5
IQR (CV) : 3 (0.5)
1 : 28 ( 28.6% )
2 : 25 ( 25.5% )
3 : 18 ( 18.4% )
4 : 21 ( 21.4% )
5 : 6 ( 6.1% )
98 (80.3%) 24 (19.7%)
3 Potter6 [haven_labelled, vctrs_vctr, double] Left or Right?
Min : 1
Mean : 1.7
Max : 2
1 : 33 ( 32.7% )
2 : 68 ( 67.3% )
101 (82.8%) 21 (17.2%)

Generated by summarytools 1.0.1 (R version 4.4.1)
2024-07-10