9 Flashcards

1
Q

Tailed tailed Test function for proportion?

A

prop.test(num of successes, n, p0 (hypothesized value), alternative = “less”)

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

Assumptions for prop.test function?

A

•n*p0 >= 10
•n(1 - p0) >= 10
•SRS (simple random sample)

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

Right tailed test for proportions?

A

prop.test(num of successes, n, p, alternative = “greater”)

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

Two sided test for proportions?

A

prop.test(num of successes, n, p, alternative = “two.sided”)

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

Two sided Test for two proportions (testing whether the proportion of successes between two populations are the same)?

A

prop.test(x = c(success1, success2), n = c(n1, n2), alternative = “two.sided”)

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

Right tailed prop test for two proportions?

A

prop.test(x = c(success1, success2), n = c(n1, n2), alternative = “greater”)

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

Left tailed test for two proportions?

A

prop.test(x = c(success1, success2), n = c(n1, n2), alternative = “less”)

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

Two sided test for single mean?

A

t.test(x = sample, alternative = “two.sided”, mu)

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

Right tailed test for the means of two populations?

A

t.test(x = sample1, y = sample2, alternative = “greater”, var.equal = TRUE), var.equal determines whether the variances are the same. Two-sample t test

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

Left tailed test to compare the means of two separate populations?

A

t.test(x = sample1, y = sample2, alternative = “less”, var.equal = TRUE), var.equal determines whether the variances are the same. Two-sample t test

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

Welch two-sample t test?

A

When comparing two samples without the same variances.

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