#Knowledge
  • Info
  • Supplement
  • Priors
  • Items
  • Session Info
  • Codebook
  • OSF

Other Formats

  • PDF

Session Info

  • Show All Code
  • Hide All Code

  • View Source
Published

October 9, 2024

Load packages used in analysis
# Packages
library(tidyverse)   # ggplot, dplyr, and friends
library(brms)        # Bayesian modeling through Stan
library(psych)       # For describe()
library(correlation) # For correlations with nicer output and z_fisher()
library(patchwork)   # For combining plots
library(parameters)  # Nicer output of model results
library(tidybayes)   # Manipulate brms objects in a tidy way
library(scales)      # For formatting labels in ggplot
library(extrafont)   # to change ggplot font
library(kableExtra)  # for Latextables
library(papaja)      # better printing 
library(bayestestR)  # for describe posterior
library(bridgesampling)
Code
sessionInfo() 
R version 4.4.1 (2024-06-14 ucrt)
Platform: x86_64-w64-mingw32/x64
Running under: Windows 10 x64 (build 19045)

Matrix products: default


locale:
[1] LC_COLLATE=German_Germany.utf8  LC_CTYPE=German_Germany.utf8   
[3] LC_MONETARY=German_Germany.utf8 LC_NUMERIC=C                   
[5] LC_TIME=German_Germany.utf8    

time zone: Europe/Berlin
tzcode source: internal

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
 [1] bridgesampling_1.1-2 bayestestR_0.13.2    papaja_0.1.2        
 [4] tinylabels_0.2.4     kableExtra_1.4.0     extrafont_0.19      
 [7] scales_1.3.0         tidybayes_3.0.6      parameters_0.21.7   
[10] patchwork_1.2.0      correlation_0.8.4    psych_2.4.3         
[13] brms_2.21.0          Rcpp_1.0.12          lubridate_1.9.3     
[16] forcats_1.0.0        stringr_1.5.1        dplyr_1.1.4         
[19] purrr_1.0.2          readr_2.1.5          tidyr_1.3.1         
[22] tibble_3.2.1         ggplot2_3.5.1        tidyverse_2.0.0     

loaded via a namespace (and not attached):
 [1] svUnit_1.0.6         tidyselect_1.2.1     viridisLite_0.4.2   
 [4] loo_2.7.0            fastmap_1.2.0        TH.data_1.1-2       
 [7] tensorA_0.36.2.1     digest_0.6.35        timechange_0.3.0    
[10] estimability_1.5.1   lifecycle_1.0.4      StanHeaders_2.32.7  
[13] survival_3.6-4       magrittr_2.0.3       posterior_1.5.0     
[16] compiler_4.4.1       rlang_1.1.3          tools_4.4.1         
[19] utf8_1.2.4           yaml_2.3.8           knitr_1.46          
[22] htmlwidgets_1.6.4    pkgbuild_1.4.4       mnormt_2.1.1        
[25] xml2_1.3.6           abind_1.4-5          multcomp_1.4-25     
[28] withr_3.0.0          grid_4.4.1           stats4_4.4.1        
[31] datawizard_0.10.0    fansi_1.0.6          xtable_1.8-4        
[34] colorspace_2.1-0     inline_0.3.19        extrafontdb_1.0     
[37] emmeans_1.10.1       MASS_7.3-60.2        insight_0.19.11     
[40] cli_3.6.2            mvtnorm_1.2-4        rmarkdown_2.26      
[43] generics_0.1.3       RcppParallel_5.1.7   rstudioapi_0.16.0   
[46] tzdb_0.4.0           rstan_2.32.6         splines_4.4.1       
[49] bayesplot_1.11.1     parallel_4.4.1       effectsize_0.8.8    
[52] matrixStats_1.3.0    vctrs_0.6.5          Matrix_1.7-0        
[55] sandwich_3.1-0       jsonlite_1.8.8       arrayhelpers_1.1-0  
[58] hms_1.1.3            systemfonts_1.1.0    ggdist_3.3.2        
[61] glue_1.7.0           codetools_0.2-20     distributional_0.4.0
[64] stringi_1.8.4        gtable_0.3.5         QuickJSR_1.1.3      
[67] munsell_0.5.1        pillar_1.9.0         htmltools_0.5.8.1   
[70] Brobdingnag_1.2-9    R6_2.5.1             evaluate_0.23       
[73] lattice_0.22-6       backports_1.4.1      rstantools_2.4.0    
[76] svglite_2.1.3        Rttf2pt1_1.3.12      coda_0.19-4.1       
[79] gridExtra_2.3        nlme_3.1-164         checkmate_2.3.1     
[82] xfun_0.44            zoo_1.8-12           pkgconfig_2.0.3     
Back to top
Source Code
---
title:  "Session Info"
date: "`r Sys.Date()`"
format: 
  html:
    code-fold: true
    code-copy: true
    code-tools: true
    embed-resources: true
    df-print: kable
    toc: true
    toc-location: right
    fig-format: svg
    page-layout: full
    fig-align: center
  pdf: default
execute:
  warning: false
  messages: false
editor_options: 
  chunk_output_type: console
---


```{r setup}
#| code-summary: "Load packages used in analysis"

# Packages
library(tidyverse)   # ggplot, dplyr, and friends
library(brms)        # Bayesian modeling through Stan
library(psych)       # For describe()
library(correlation) # For correlations with nicer output and z_fisher()
library(patchwork)   # For combining plots
library(parameters)  # Nicer output of model results
library(tidybayes)   # Manipulate brms objects in a tidy way
library(scales)      # For formatting labels in ggplot
library(extrafont)   # to change ggplot font
library(kableExtra)  # for Latextables
library(papaja)      # better printing 
library(bayestestR)  # for describe posterior
library(bridgesampling)
```

```{r}
sessionInfo() 
```

Content 2024 by David Izydorczyk
All content licensed under a Creative Commons Attribution-NonCommercial 4.0 International license (CC BY-NC 4.0)

 

Made with and Quarto
View the source at GitHub