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’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Pearson product moment correlation test

A

cor.test(formula = ~ height + weight,
data = pirates)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly