Publications by Lorraine Gaudio

ANTH 504 Week 8 T-test: Comparing Two Means

16.03.2023

T-tests: Comparing Two Means This document was composed from Dr. Snopkowski’s ANTH 504 Week 8 lecture and Danielle Navarro’s 2021 Learning statistics with R Chapter 13. Statistical Tests For each statistical test we discuss, I want you to note: What type of variables do we need for this test? What is the null and alternative hypotheses? Wh...

14449 sym R (10333 sym/91 pcs) 21 img

Review Key

16.03.2023

Load Packages library(tidyverse) library(ggplot2) library(dslabs) library(readxl) library(car) Review Q1 Import dataframe Modality <- read_excel("Modality.xlsx") A. Boxplots boxplot(Modality$Final ~ Modality$Modality, xlab = "Teaching Modality", ylab = "Final Exam Score") It looks like f2f is higher than the other 2 B. Assumptions of ANOV...

4290 sym R (5083 sym/73 pcs) 10 img

HW_8

16.03.2023

Load Data library(readr) library(readxl) library(haven) library(tidyverse) load("chico.Rdata") load("clinicaltrial.Rdata") pay_and_security <- read_csv("pay and security.csv") ATV_riders_1 <- read_excel("ATV_riders-1.xlsx") Drug_df <- read_sav("Drug.sav") Lab DEPENDENT T-TEST We will use the data chico.Rdata. This data represents 20 students...

23647 sym R (13799 sym/117 pcs) 17 img

HW_8

13.03.2023

Load Data library(readr) library(readxl) library(haven) library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ## ✔ ggplot2 3.4.0 ✔ dplyr 1.0.10 ## ✔ tibble 3.1.8 ✔ stringr 1.5.0 ## ✔ ti...

23284 sym R (13926 sym/115 pcs) 17 img

One-way ANOVA

13.03.2023

One-way ANOVA – comparing more than 2 means This document was composed from Dr. Snopkowski’s ANTH 504 Week 8 lecture and Danielle Navarro’s 2021 Learning statistics with R Chapter 14. • When we want to compare means we can use a t-test. This test has limitations: • You can compare only 2 means: often we would like to compare means fr...

12621 sym R (5178 sym/45 pcs) 24 img

Dependent T-Test

09.03.2023

Introduction This document was composed from Dr. Snopkowski’s ANTH 504 Week 8 lecture and Danielle Navarro’s 2021 Learning statistics with R Chapter 13. Dependent t-test • Compares two means based on related data. • E.g., Data from the same people measured at different times. • Data from ‘matched’ samples. Sometimes called: “Mat...

5583 sym R (2739 sym/28 pcs) 4 img

Dependent T-Test

09.03.2023

Introduction This document was composed from Dr. Snopkowski’s ANTH 504 Week 8 lecture and Danielle Navarro’s 2021 Learning statistics with R Chapter 13. Dependent t-test • Compares two means based on related data. • E.g., Data from the same people measured at different times. • Data from ‘matched’ samples. Sometimes called: “Mat...

5583 sym R (2739 sym/28 pcs) 4 img

ANTH 504 Week 8 T-test: Comparing Two Means

03.03.2023

T-tests: Comparing Two Means This document was composed from Dr. Snopkowski’s ANTH 504 Week 8 lecture and Danielle Navarro’s 2021 Learning statistics with R Chapter 13. Statistical Tests For each statistical test we discuss, I want you to note: What type of variables do we need for this test? What is the null and alternative hypotheses? Wh...

14449 sym R (10333 sym/91 pcs) 21 img

HW_ 7

03.03.2023

T-TEST T-TEST We will begin by using the file “Invisibility.csv” Note: Use the Import From Text (readr) option to import. You’ll get funky column headings if you use From Text (base) library(readr) library(tidyverse) ## ── Attaching packages ───────────────────────────────�...

12036 sym R (6623 sym/44 pcs) 5 img

HW_ 6

24.02.2023

ANTH 504 – Chi-square Lab There are 4 things we want to know for each statistical test: What types of variables are needed for this type of test? What is the null and alternative hypothesis? How do we conduct the test? What are the assumptions? How do we test them? What to do if the assumptions are not met? In this lab, we’ll go through the...

7886 sym 5 img