# Packageslibrary(tidyverse) # ggplot, dplyr, and friendslibrary(brms) # Bayesian modeling through Stanlibrary(psych) # For describe()library(correlation) # For correlations with nicer output and z_fisher()library(patchwork) # For combining plotslibrary(parameters) # Nicer output of model resultslibrary(tidybayes) # Manipulate brms objects in a tidy waylibrary(scales) # For formatting labels in ggplotlibrary(extrafont) # to change ggplot fontlibrary(kableExtra) # for Latextableslibrary(papaja) # better printing library(bayestestR) # for describe posteriorlibrary(bridgesampling)
---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: defaultexecute: warning: false messages: falseeditor_options: chunk_output_type: console---```{r setup}#| code-summary: "Load packages used in analysis"# Packageslibrary(tidyverse) # ggplot, dplyr, and friendslibrary(brms) # Bayesian modeling through Stanlibrary(psych) # For describe()library(correlation) # For correlations with nicer output and z_fisher()library(patchwork) # For combining plotslibrary(parameters) # Nicer output of model resultslibrary(tidybayes) # Manipulate brms objects in a tidy waylibrary(scales) # For formatting labels in ggplotlibrary(extrafont) # to change ggplot fontlibrary(kableExtra) # for Latextableslibrary(papaja) # better printing library(bayestestR) # for describe posteriorlibrary(bridgesampling)``````{r}sessionInfo() ```