This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm(list = ls()) | |
library(brms) | |
library(dplyr) | |
library(ggplot2) | |
library(pammtools) | |
library(grid) | |
library(gridExtra) | |
library(tidybayes) | |
library(bayesplot) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm(list = ls()) | |
library(LaplacesDemon) | |
library(tidyverse) | |
library(brms) | |
library(cmdstanr) | |
library(posterior) | |
library(bayesplot) | |
library(coda) | |
library(mvtnorm) | |
library(loo) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm(list = ls()) | |
library(ggpubr) | |
library(rstatix) | |
library(grid) | |
library(gridExtra) | |
require(bayesrules) | |
require(rstanarm) | |
require(bayesplot) | |
require(tidybayes) | |
library(brms) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm(list = ls()) | |
library(magrittr) | |
library(dplyr) | |
library(forcats) | |
library(modelr) | |
library(ggdist) | |
library(tidybayes) | |
library(ggplot2) | |
library(cowplot) | |
library(emmeans) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### MTCARS #### | |
rm(list = ls()) | |
library(magrittr) | |
library(dplyr) | |
library(forcats) | |
library(modelr) | |
library(ggdist) | |
library(tidybayes) | |
library(ggplot2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm(list = ls()) | |
library(rethinking) | |
library(dplyr) | |
library(ggplot2) | |
library(grid) | |
library(gridExtra) | |
library(GGally) | |
library(MVN) | |
library(data.table) | |
library(mltools) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm(list = ls()) | |
library(dplyr) | |
library(ggplot2) | |
library(brms) | |
library(tidybayes) | |
library(bayestestR) | |
library(grid) | |
library(gridExtra) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm(list = ls()) | |
## Visualizing Tidy Draws from brms models | |
library(magrittr) | |
library(dplyr) | |
library(purrr) | |
library(forcats) | |
library(tidyr) | |
library(modelr) | |
library(ggdist) | |
library(tidybayes) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm(list = ls()) | |
# load libraries | |
library(haven) | |
library(lme4) | |
library(sjPlot) | |
library(sjmisc) | |
library(sjlabelled) | |
library(sjmisc) | |
theme_set(theme_sjplot()) | |
library(arm) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(readxl) | |
library(dplyr) | |
library(ggplot2) | |
options(max.print=25000) | |
# https://www.rivm.nl/documenten/effectiviteit-van-covid-19-vaccinatie-tegen-ziekenhuis-en-intensive-care-opname-in-12# | |
df <- read_excel("VAX/Book1.xlsx") | |
View(df) | |
df%>%print(n=60) |