Functions: Hypothesis Testing Flashcards
1
Q
t-test function
A
**Age by headband t-test
**
t.test(formula = age ~ headband,
data = pirates,
alternative = ‘two.sided’)
2
Q
Pearson product moment correlation test
A
cor.test(formula = ~ height + weight,
data = pirates)
3
Q
linear regression model
A
first create the model:
tchests.model <- lm(formula = tchests ~ age + weight + tattoos,
data = pirates)
then run descriptives on the model:
summary(tchests.model)