RHMI Exam

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/90

flashcard set

Earn XP

Description and Tags

These flashcards cover the basics of research methodology and statistical theory, including descriptive and inferential statistics, NHST, ANOVA, and linear regression.

Last updated 3:02 AM on 6/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

91 Terms

1
New cards

Mean

The average calculated by adding all observed values and dividing by the number of values, denoted by the formula: Xˉ=1Ni=1NXi\bar{X} = \frac{1}{N} \sum_{i=1}^{N} X_{i}

2
New cards

Median

The 'middle observation' where half of the observations are larger and half are smaller than this value.

3
New cards

Mode

The value or values observed most frequently in the data.

4
New cards

Range

The distance between the maximum and minimum values in a dataset; it is very sensitive to outliers.

5
New cards

Standard Deviation

A measure of spread describing how far each point is from the centre of mass, denoted by the formula: S=1Ni=1N(XiXˉ)2S = \sqrt{\frac{1}{N} \sum_{i=1}^{N} (X_{i} - \bar{X})^2}

6
New cards

Operationalisation

The process of relating unobservable theoretical constructs to concrete measures (e.g., using the Beck Depression Inventory to measure depression).

7
New cards

Nominal Scale

A measurement scale where values have no particular relationship or meaningful numbering scheme (e.g., eye colour).

8
New cards

Ordinal Scale

A measurement scale with a natural ordering, but where the differences between values are not meaningful (e.g. ranking data).

9
New cards

Interval Scale

A measurement scale with a natural ordering where differences between numbers are meaningful, but ratios are not (e.g., year).

10
New cards

Ratio Scale

A measurement scale with a natural ordering where 'zero means zero' and both differences and ratios between numbers are meaningful (e.g., age).

11
New cards

Discrete variable

Values that come in specific categories, with no values existing in between (e.g. year, party voted for).

12
New cards

Continuous variable

A value that varies smoothly; there’s always something ‘in between’ (e.g. response time).

13
New cards

Predictor

A variable used to explain other variables, also known as an independent variable or treatment.

14
New cards

Outcome

A variable to be explained in terms of other variables, also known as a dependent variable or response.

15
New cards

Test-retest Reliability

A measure of consistency obtained by conducting the same measurement at two different times to see if results match.

16
New cards

Inter-rater reliability

A measure of consistency obtained by different people conducting the same measurements to see if results match.

17
New cards

Internal consistency reliability

A measure of consistency obtained by conducting the same measurements with theoretically equivalent versions of a measure to see if results match (e.g. what’s your favourite colour v. what colour would you choose).

18
New cards

Frequentist Probability

The degree of belief that probability is objective and represents the long-run frequency of repeatable events.

19
New cards

Bayesian Probability

A subjective view of probability represented as a 'degree of belief' held by an idealised, rational agent.

20
New cards

Binomial Distribution

A distribution used to describe count data of one of two possible events happening.

21
New cards

dbimon()/dnorm

Probability density of a specific outcome (doesn’t work for normal distributions).

22
New cards

pbinom()/pnorm()

Chance that the outcome doesn’t exceed a threshold

23
New cards

qbinom()/qnorm()

Compute some quantile of the distribution.

24
New cards

rbinom()/rnorm()

Sample a random number from a distribution.

25
New cards

Normal Distribution

A continuous distribution described by the mean (μ\mu) and standard deviation (σ\sigma), where mean, median, and mode are identical.

26
New cards

Central Limit Theorem

The theory stating that as sample size increases, the sampling distribution of the mean becomes normal and converges on the true population mean (μ\mu).

27
New cards

Standard Error of the Mean (SEM)

A measure reflecting the uncertainty about the mean, calculated as: SEM=σNSEM = \frac{\sigma}{\sqrt{N}} (as sample size increases, the variance goes down)

28
New cards

Confidence Interval (CI)

The range bounded by ±1.96\pm 1.96 SEMs that is 95% likely to cover the true population mean: CI95=Xˉ±1.96σ^NCI_{95} = \bar{X} \pm 1.96 \frac{\hat{\sigma}}{\sqrt{N}}

29
New cards

Null Hypothesis (H0H_0)

The hypothesis being tested which states there is no effect; all NHST statistical claims are specifically about this hypothesis.

30
New cards

Fisher (NHST)

States that hypothesis testing is about trying to falsify a single hypothesis (H) and that Type I error reflects the probability of observing a test statistic at least as extreme as the one that was actually found.

31
New cards

Neyman (NHST)

States that hypothesis testing is about choosing between two rival hypotheses (HA or HB) and that Type I error describes a rate you must be willing to tolerate if you want to reject the null.

32
New cards

Type I Error

A false positive; rejecting the null hypothesis when it is actually true, typically controlled at α=0.05\alpha = 0.05.

33
New cards

Type II Error

A false negative; accepting the null hypothesis when it is actually false, dependent on sample size, effect size and ( α\alpha ).

34
New cards

Type I and Type II Error Trade-off

  • Lower (α\alpha) means higher (β\beta )

  • Increasing sample size, all else equal, increases power (1-β\beta) and decreases the Type II error rate

35
New cards

Type II Error (β\beta)

A false negative; accepting the null hypothesis when it is actually false.

36
New cards

Power (1β1-\beta)

The probability of correctly rejecting a false null hypothesis, which increases with larger sample sizes.

37
New cards

Chi-squared Statistic

χ2\chi^2 : calculated by summing the difference between observed and expected values of categorical data (the larger the value, the worser the fit to the data).

38
New cards

Goodness of Fit Test

A chi-squared test that compares the observed frequencies of one variable against a hypothesis about the true probabilities of that variable, calculated as: χ2=(OiEi)2Ei\chi^2 = \sum \frac{(O_i - E_i)^2}{E_i}, where OiO_i are the observed frequencies and EiE_i are the expected frequencies.

39
New cards

Test of Independence

A chi-squared test that tests whether two nominal-scale variables are related to each other, calculated as: χ2=(OijEij)2Eij\chi^2=\sum\sum\frac{(O_{ij}-E_{ij})^2}{E_{ij}}, where OijO_{ij} are the observed frequencies and EijE_{ij} are the expected frequencies.

40
New cards

Critical Region for Chi-squared

Calculated by finding the 95% quantile of the distribution w/ the respective degrees of freedom

( qchisq(.95, df = …) )

41
New cards

Chi-squared Standard Residuals

Indicate how many 'standard deviations' away each cell is from the expected frequency, with values beyond ±1.96 suggesting significance.

42
New cards

Cramer’s V

A measure of effect size for chi-squared tests calculated as: V=χ2N(k1)V = \sqrt{\frac{\chi^2}{N(k-1)}}

43
New cards

Cramer’s V (0 to 0.1)

Negligible association

44
New cards

Cramer’s V (0.1 to 0.3)

Weak association

45
New cards

Cramer’s V (0.3 to 0.5)

Moderate association

46
New cards

Cramer’s V (0.5 to 1)

High association

47
New cards

Chi-squared Assumptions

  1. Large Expected Frequencies: The sampling distribution is valid only if the expected frequencies in each category are sufficiently large (typically at least 5), as it breaks down for too few observations.

  2. Independence of Data: The observations must be independent; there should be no special relationship among them, ensuring that the sampling methods do not introduce bias.

48
New cards

Large Expected Frequencies Violated

Use Fisher Exact Test: works by calculating the exact probability of obtaining a particular contingency table, but assumes rows and columns are fixed

49
New cards

Independence of Data Violated

Use McNemar Test: when have multiple observations for each person, e.g. pre-test and post-test

50
New cards

Z-score

A standardized score with a mean of 0 and a standard deviation of 1: Z=XμσZ = \frac{X - \mu}{\sigma} (conceptually equivalent to chi-squared adjusted residuals)

51
New cards

T-test statistic

Calculated under the premise that the population distribution is normally distributed. It is determined by averaging several potential values for the population standard deviation, represented as: t=XˉμσNt=\frac{\bar{X}-\mu}{\frac{\sigma}{\sqrt{N}}} , which approaches a normal distribution as the sample size increases.

52
New cards

T-statistic

tt : symmetric about zero, in which deviations demonstrate support against the null hypothesis

53
New cards

Cohen’s d

A simple measure of effect size for t-tests: d=mean 1mean 2std devd = \frac{\text{mean 1} - \text{mean 2}}{\text{std dev}}

54
New cards

Cohen’s d (0.2)

Small effect size

55
New cards

Cohen’s d (0.5)

Medium effect size

56
New cards

Cohen’s d (0.8)

Large effect size

57
New cards

One Sample T-test

A statistical test used to determine if the mean of a single sample differs significantly from a known population mean.

58
New cards

Independent Sample T-test

A statistical test used to compare the means of two independent samples to determine if they differ significantly from each other.

59
New cards

Paired T-test

A statistical test used to compare the means of two related groups to determine if they differ significantly from each other.

60
New cards

T-test Assumptions

  1. Population distributions are normal

  2. Observations are independently sampled

  3. Homogeneity of Variance (groups have the same standard deviation)

61
New cards

T-test Normality Violated

Use QQ-plots to observe the quantiles of data, as compared against the theoretical quantiles of the normal distribution. If not identical (a nice straight line), either use the Shapiro-Wilk Test or Wilcoxon.

62
New cards

Shapiro-Wilk Test

A statistical test used to determine whether a sample comes from a normally distributed population. It assesses the normality of data by comparing the observed distribution to an expected normal distribution. Values less than 1 and a significant p-value imply deviations from normality.

63
New cards

Wilcoxon

A non-parametric statistical test used to evaluate whether there is a significant difference between the distributions of two related samples or matched observations. It is used when the assumptions of the t-test are violated. However, can lead to higher Type II error.

64
New cards

Wilcoxon (0.1 to 0.3)

Small effect size

65
New cards

Wilcoxon (0.3 to 0.5)

Medium effect size

66
New cards

Wilcoxon (>0.5)

Large effect size

67
New cards

QQ-plot

A scatterplot of actual quantiles of the observed data against theoretical quantiles of the normal distribution to assess the normality of data. If the points deviate significantly from the diagonal line, the normality assumption is considered violated.

68
New cards

Student T-test

A statistical test that assumes that both groups have equal variance.

69
New cards

Welch T-test

An adaptation of the t-test used when the assumption of equal variance between groups is violated.

70
New cards

One-way ANOVA

A statistical test used to determine if the population means for multiple groups are identical by comparing variability between groups (SSbSS_b) and within groups (SSwSS_w ). If the between groups variability is significantly greater than within groups variability, it suggests that at least one group mean is different.

71
New cards

Between Groups Variability (SSbSS_b)

The variability in scores that is attributed to the differences among group means in an ANOVA.

72
New cards

Within Groups Variability (SSwSS_w )

The variability in scores that is attributed to differences within individual scores in the same group in an ANOVA.

73
New cards

F-statistic

The ratio of mean square between groups to mean square within groups: F=MSbMSwF = \frac{MS_b}{MS_w} (means are more different when this value is larger and small when the null is true)

74
New cards

Two-way ANOVA

An extension of ANOVA that evaluates the effect of two independent variables on a dependent variable, allowing for interaction effects between the variables. Results are different from running two separate one-way ANOVAs as residuals are different (SSRSS_{R}).

75
New cards

Residual Sum of Squares (SSRSS_{R})

The total variation in the dependent variable that is not explained by the independent variables in an ANOVA analysis. It reflects the variability within the groups after accounting for the effects of the independent variables.

76
New cards

Interaction Sum of Squares (SSA:BSS_{A:B})

The portion of total variation in an ANOVA that is attributed to the interaction between two independent variables. It assesses how the interaction influences the dependent variable beyond the individual effects of the variables.

77
New cards

Eta Squared (η2\eta^2)

A measure of effect size in ANOVA representing the proportion of total variance attributable to a factor, calculated by dividing (SSBSS_{B}) by (SStotSS_{tot}).

78
New cards

Holm Correction

A method to control the family-wise Type I error rate by sorting p-values and adjusting them sequentially.

79
New cards

Bonferroni Correction

A method to control the family-wise Type I error rate by multiplying all original p-values by the number of tests (tends to lose a lot of power).

80
New cards

Post Hoc Tests

Statistical tests applied after ANOVA to determine which specific group means are significantly different from each other, and for which there are no particular hypotheses.

81
New cards

Linear Regression Model

A mathematical relationship expressed as: Yi=b1X+b0+ϵiY_{i} = b_{1}X + b_{0} + \epsilon_{i}, where b1b_1 is the slope, b0b_0 is the intercept, and ϵ\epsilon is the residual.

82
New cards

ANOVA Assumptions

  1. Residuals are normally distributed (i.e. within-groups variance)

  2. Homogeneity of variance across all groups

  3. Independence

83
New cards

Residual Normality Violated (ANOVA)

Use Shapiro-Wilk Test on residuals

84
New cards

Akaike Information Criterion (AIC)

A measure for model selection that penalizes model complexity: AIC=SSresσ2+2KAIC = \frac{SS_{res}}{\sigma^2} + 2K

85
New cards

Cook’s Distance

A metric quantifying the influence of a data point by combining its 'outlier-ness' and its leverage.

86
New cards

Variance Inflation Factor (VIF)

A measure used to quantify the extent of collinearity among predictors in a regression model.

87
New cards

Measures of central tendency

Mean, median, mode

88
New cards

Measures of spread

Range, interquartile range, standard deviation

89
New cards

Interquartile range

A measure of spread that describes the difference between the first and third quartiles in a dataset, indicating the range of the middle 50% of values

90
New cards

Theoretical constructs

Concepts or models used in statistical analysis to represent phenomena, often not directly observable (e.g. attitudes, beliefs, information processing speeds)

91
New cards

Measure

Tool for getting people to produce data that is informative about the construct (e.g. survey items, reaction times)