week 8 Flashcards

(13 cards)

1
Q

Front

A

Back

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

Definition: Median

A

The median is the middle value of a sorted dataset. If n is even, it’s the average of the two middle values.

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

Definition: Mean

A

The mean (average) is (\bar{x} = \frac{1}{n}\sum x_i). Add all values, then divide by the number of observations.

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

Formula: Variance

A

Sample variance is (s^2 = \frac{\sum(x_i - \bar{x})^2}{n - 1}). It’s the average squared deviation from the mean (with n-1 in the denominator).

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

Formula: Standard Deviation (SD)

A

Standard Deviation = (s = \sqrt{ s^2 }). It returns the spread measure to the original data units.

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

Formula: Interquartile Range (IQR)

A

IQR = Q3 – Q1, the distance between the 75th and 25th percentiles.

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

Definition: Outlier (Boxplot)

A

A data point is often labeled an outlier if it’s beyond 1.5 × IQR above Q3 or below Q1.

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

Formula: z-score

A

(z = \frac{x - \bar{x}}{s}). Indicates how many SDs above (+) or below (–) the mean a point is.

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

Definition: Histogram

A

A histogram is a bar chart for quantitative data, grouping data values into equal-width bins.

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

Steps: Boxplot Construction

A

1) Determine 5-number summary (min, Q1, median, Q3, max). 2) Draw box from Q1 to Q3. 3) Mark median. 4) Calculate fences at 1.5 × IQR. 5) Draw whiskers to data within fences; mark outliers beyond them.

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

Formula: Coefficient of Variation (CV)

A

(CV = \frac{s}{\bar{x}} \times 100\%). Measures relative spread compared to the mean.

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

Definition: Correlation Coefficient (r)

A

r = from –1 to +1, measuring linear relationship strength between two numeric variables.

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

Formula: Percentile Location

A

For the p-th percentile in n data points: (i = \frac{p}{100}(n+1)). If i isn’t integer, interpolate.

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