Statistical Data Analysis Flashcards

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

Flashcards covering bootstrapping, confidence intervals, and the Mann-Whitney U test.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

Bootstrapping Method (Confidence Intervals)

Used when the sample size is small (n < 30) and the underlying distribution is not normal.

2
New cards

Default Resamples in Bootstrap Confidence Intervals

1000

3
New cards

R code for 99% BCa and Percentile Bootstrap Confidence Intervals

boot.ci(name of bootstrap output, conf=0.99, type=c(“bca”,“perc”)

4
New cards

95% Bootstrap Confidence Interval (using normal approximation)

x̄ ± 1.96 * standard error

5
New cards

99% Bootstrap Confidence Interval (using normal approximation)

x̄ ± 2.58 * standard error

6
New cards

Mann-Whitney U Test

A test used to compare two independent groups when the sample size is small and the data is not normally distributed.

7
New cards

Null Hypothesis (H0) in Mann-Whitney U Test

The medians of the two groups are equal.

8
New cards

Alternative Hypothesis (H1) in Mann-Whitney U Test

The medians of the two groups are not equal.

9
New cards

U Statistic Calculation

U1 = R1 − n1(n1 + 1) / 2 and U2 = R2 − n2(n2 + 1) / 2 , where U = Min{U1, U2}

10
New cards

Decision Rule for Mann-Whitney U Test (Reject H0)

Reject H0 if U < Ucrit (critical value)