Publications by Sebastien Parker

Tutorial 8 (252)

22.11.2023

Setting up environment # List of packages packages <- c("tidyverse", "infer", "fst", "modelsummary", "effects", "survey", "MASS") # add any you need here # Install packages if they aren't installed already new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] if(length(new_packages)) install.packages(new_packages) # Load the...

13709 sym Python (12675 sym/47 pcs) 4 img 4 tbl

Tutorial 7 (252)

22.11.2023

Setting up environment # List of packages packages <- c("tidyverse", "infer", "fst", "modelsummary", "effects") # add any you need here # Install packages if they aren't installed already new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] if(length(new_packages)) install.packages(new_packages) # Load the packages lapply(p...

3880 sym Python (15329 sym/63 pcs) 2 img 2 tbl

Tutorial 6 (SOC252)

22.11.2023

In this tutorial, we will learn how to use the infer package for hypothesis testing as well as generate output for simple regression models. Before doing so, let’s set up our working environment and learn a new useful skill. # List of packages packages <- c("tidyverse", "modelsummary", "forcats", "RColorBrewer", "fst", "viridis", "...

6285 sym Python (15113 sym/57 pcs) 4 img 2 tbl

Tutorial 8 (202)

22.11.2023

Setting up environment # List of packages packages <- c("tidyverse", "infer", "fst", "modelsummary", "effects", "survey", "interactions") # add any you need here # Install packages if they aren't installed already new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] if(length(new_packages)) install.packages(new_packages) # ...

8555 sym Python (11926 sym/41 pcs) 5 img 5 tbl

Tutorial 8 (252)

16.11.2023

Setting up environment # List of packages packages <- c("tidyverse", "infer", "fst", "modelsummary", "effects", "survey", "MASS") # add any you need here # Install packages if they aren't installed already new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] if(length(new_packages)) install.packages(new_packages) # Load the...

13717 sym Python (12675 sym/47 pcs) 4 img 4 tbl

Tutorial 7 and Homework 8 (202)

15.11.2023

Setting up environment # List of packages packages <- c("tidyverse", "infer", "fst", "modelsummary", "broom") # add any you need here # Install packages if they aren't installed already new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] if(length(new_packages)) install.packages(new_packages) # Load the packages lapply(pac...

3541 sym Python (14181 sym/67 pcs) 1 tbl

Tutorial 7 and Homework 8 (202)

14.11.2023

Setting up environment # List of packages packages <- c("tidyverse", "infer", "fst", "modelsummary") # add any you need here # Install packages if they aren't installed already new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] if(length(new_packages)) install.packages(new_packages) # Load the packages lapply(packages, li...

3565 sym Python (13827 sym/67 pcs) 1 tbl

Homework 4 Breakdown (202)

13.11.2023

# List of packages packages <- c("tidyverse", "fst", "janitor", "questionr", "modelsummary", "kableExtra") # add any you need here # Install packages if they aren't installed already new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] if(length(new_packages)) install.packages(new_packages) # Load the packages lapply(packag...

7957 sym Python (16226 sym/41 pcs) 4 img 1 tbl

Tutorial 7 (SOC252)

02.11.2023

Setting up environment # List of packages packages <- c("tidyverse", "infer", "fst", "modelsummary", "effects") # add any you need here # Install packages if they aren't installed already new_packages <- packages[!(packages %in% installed.packages()[,"Package"])] if(length(new_packages)) install.packages(new_packages) # Load the packages lapply(p...

3880 sym Python (15329 sym/63 pcs) 2 img 2 tbl

Tutorial 6 and Homework 7 (202)

01.11.2023

In this tutorial, we will learn how to use the infer package for hypothesis testing as well as do tables and calculations the “long way” for the Chi-Square test statistic. Let’s get started. Setting up environment # List of packages packages <- c("tidyverse", "infer", "fst") # add any you need here # Install packages if they aren't installe...

6893 sym 4 img