W1 EXPLAINING AND PREDICTING THE WORLD Flashcards

1
Q

What are the 3 central tendencies?

A

Mean, Median, Mode

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

What is VARIANCE?

A

Average squared deviation from the mean

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

What is the variance of this set? {1,2,3,4,5} (Population)

A

Variance 1. Get mean (3) 2. For i in nums: total += (mean - nums[i])^2 total / len(nums) Variance = 10/5 variance = 2

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

What is the formula for Variance?

A

SUM[i-n] (y[i] - μ)^2 / n

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

What is the formula for Variance in a sample?

A

SUM[i-n] (y[i] - μ)^2 / (n - 1)

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

What is the formula for standard deviation?

A

√(SUM[i-n] (y[i] - μ)^2 / n)

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

What is σ and μ?

A

Standard Deviation and Mean

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

How to calculate Coefficient of variation?

A

CV = σ/μ x 100

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

What skew does this graph have?

A

Positive

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

What skew does this graph have?

A

Negative

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

What is kurtosis?

A

Kurtosis is a measure of whether the data are heavy-tailed or light-tailed relative to a normal distribution.

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

What is Mesokurtic?

A

A normal amplitude for a normal distribution curve

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

What is Leptokurtic?

A

A higher amplitude for a normal distribution curve

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

What is Platykurtic?

A

A shallower amplitude for a normal distribution curve

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

What are the approximate % within each standard deviation?

A

μ to 1σ: 34.1% 1σ to 2σ: 13.6% 2σ to 3σ: 2.1% 3σ to 4σ: 0.1%

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

What is the the null hypothesis?

A

A statement about a population parameter (e.g., population mean) that is assumed to be true. Where we start, and what we aim to falsify.

17
Q

What is the alternative hypothesis?

A

Statement that directly contradicts the null hypothesis by stating that the actual value of a population parameter is less than, greater than, or not equal to the value stated in the null hypothesis. Hypothesis we are trying to prove.

18
Q

How much significance is required to reject the null?

A

Usually 5%, but 1% and .5% depending on what it is. So long as you can justify your significance level.

19
Q

What are one-tailed/two-tailed tests?

A

One tailed only counts one direction of the normal dist, and two tailed counts both.

20
Q

What is a p-value?

A

A probability to compare to the significance level. Usually 0.05. A p-value is the probability of obtaining an effect at least as extreme as the one in your sample data, assuming the truth of the null hypothesis.

21
Q

What would a p-value of 0.03 mean?

A

A p-value of 0.03. This P value indicates that if the intervention had no effect, we would obtain the observed difference or more in 3% of studies (because of sampling error)

22
Q

What is the Type I error

A

When the researcher rejects the null hypothesis when it is actually true

23
Q

What is the Type II error

A

When the researcher accepts the null hypothesis when it is actually false

24
Q

What is POWER in hypothesis testing?

A

The probability of rejecting a null hypothesis that’s actually false. 1 - β