Publications by Katie Adams

First R Code Lab (1_15_25)

15.01.2025

Reflection Questions How was the install process? TYPE YOUR ANSWER HERE Have you used any stat sofeware before? TYPE YOUR ANSWER HERE Install new packages #install.packages("psych") #install.packages("psychTools") Calling in library library(psych) ## Warning: package 'psych' was built under R version 4.3.3 library(psychTools) ## Warning: package...

248 sym R (1910 sym/10 pcs) 1 img

Multiple Regression Lab

03.12.2024

1 Loading Libraries #install.packages("sjPlot") library(psych) # for the describe() command ## Warning: package 'psych' was built under R version 4.3.3 library(car) # for the vif() command ## Loading required package: carData ## ## Attaching package: 'car' ## The following object is masked from 'package:psych': ## ## logit library(sjPlot...

7493 sym R (6991 sym/46 pcs) 16 img 1 tbl

ANOVAs Lab Output

19.11.2024

1 Loading Libraries #install.packages("afex") #install.packages("emmeans") #install.packages("ggbeeswarm") library(psych) # for the describe() command ## Warning: package 'psych' was built under R version 4.3.3 library(ggplot2) # to visualize our results ## ## Attaching package: 'ggplot2' ## The following objects are masked from 'package:psyc...

5643 sym R (16211 sym/102 pcs) 10 img 3 tbl

Simple Linear Regression Lab

12.11.2024

1 Loading Libraries #install.packages("broom") #install.packages("ggplot2") library(psych) # for the describe() command ## Warning: package 'psych' was built under R version 4.3.3 library(broom) # for the augment() command library(ggplot2) # to visualize our results ## ## Attaching package: 'ggplot2' ## The following objects are masked from '...

6021 sym R (4508 sym/22 pcs) 7 img

Correlation Coefficient Lab

04.11.2024

1 Loading Libraries #install.packages("apaTables") #install.packages("kableExtra") library(psych) # for the describe() command and the corr.test() command ## Warning: package 'psych' was built under R version 4.3.3 library(apaTables) # to create our correlation table ## Warning: package 'apaTables' was built under R version 4.3.3 library(kableEx...

3166 sym R (5094 sym/40 pcs) 14 img 1 tbl

T-test Lab (Oct 2024)

24.10.2024

1 Loading Libraries # install any packages you have not previously used, then comment them back out. #install.packages("car") #install.packages("effsize") library(psych) # for the describe() command ## Warning: package 'psych' was built under R version 4.3.3 library(car) # for the leveneTest() command ## Loading required package: carData ## ...

3561 sym R (5459 sym/32 pcs) 3 img

Data Prep HW

17.09.2024

Data Prep Load Libraries # if you haven't used a given package before, you'll need to download it first # delete the "#" before the install function and run it to download # then run the library function calling that package # install.packages("naniar") library(naniar) # for the gg_miss-upset() command ## Warning: package 'naniar' was built ...

1262 sym R (10188 sym/21 pcs) 1 img

First R Code Lab (Testing Version)

01.08.2024

Note: You will ALWAYS leave this first RMarkdown code chunk as is. Because it contains “include=FALSE” in the curly brackets {} the chunk text will NOT appear when you knit it. Note: Please delete all the sample text after previous code chuck that auto-populates in new RMarkdown files. Then proceed with the Lab. Reflection Questions How wa...

1021 sym R (2409 sym/8 pcs) 1 img