biosci220 midterm

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

1/393

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 9:47 AM on 9/18/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

394 Terms

1
New cards

NMDS (Non-metric Multidimensional Scaling)

A multivariate exploratory technique that preserves rank-order relationships among samples by placing them in a low-dimensional space; uses a distance matrix and iterative optimization with a nonparametric approach.

2
New cards

Distance matrix

A matrix of pairwise distances between samples (samples x samples) calculated from a chosen distance measure (e.g., Euclidean or Bray-Curtis).

3
New cards

Euclidean distance

Straight-line distance in multivariate space; appropriate when variables are on comparable scales; treats similar measurements as similar (e.g., penguin measurements).

4
New cards

Bray-Curtis distance

Distance based on counts/abundances commonly used for ecological community data; double zeros are less informative; used for macroinvertebrate orders data.

5
New cards

Rank order distance

NMDS uses the rank order of distances rather than their actual values, making the analysis nonparametric and less reliant on distributional assumptions.

6
New cards

Nonparametric

An approach with few or no distributional assumptions; reduces model assumptions in multivariate analyses.

7
New cards

Stress (Kruskal stress)

A goodness-of-fit measure for NMDS indicating how well the low-dimensional configuration matches the original distance structure; lower stress is better.

8
New cards

Dimensionality in NMDS

The number of dimensions in the NMDS solution (commonly 2 or 3); chosen a priori; higher dimensions reduce stress but are harder to visualize.

9
New cards

Scree plot

A diagnostic plot of stress versus the number of NMDS dimensions to help decide how many dimensions to retain.

10
New cards

MetaMDS

A function in the vegan package that performs NMDS on ecological data; handles distance options, random restarts, and returns an object with sample scores and variable scores.

11
New cards

Random restart

NMDS optimization starts from multiple random initial configurations to search for a low-stress solution; different restarts can converge to different minima.

12
New cards

Global minimum vs local minimum

The best overall solution across restarts is the global minimum; some restarts may converge to suboptimal local minima.

13
New cards

Positive data for NMDS / MinShift

MetaMDS requires nonnegative data; after standardization negative values can occur, so a minShift function shifts data to positive values.

14
New cards

Standardization (scale)

Centering data to zero mean and scaling to unit variance to remove unit differences and make variables comparable.

15
New cards

Penguins dataset (Palmer penguins)

A numeric dataset with four variables (bill length, bill depth, flipper length, body mass) used to illustrate NMDS; year is numeric but treated as categorical.

16
New cards

Macroinvertebrate orders dataset

Ecological community data with eight macroinvertebrate orders used to illustrate Bray-Curtis NMDS; counts; usually not standardized.

17
New cards

Sample scores

The coordinates (x, y) of samples in the NMDS plot, representing their position in reduced space.

18
New cards

Variable scores / Species scores

Coordinates indicating how original variables (or taxa) contribute to sample separation in NMDS.

19
New cards

Axis interpretability in NMDS

NMDS axes do not have inherent numerical meaning; only relative distances between points matter; rotations/reflections do not affect interpretation.

20
New cards

Dim check_MDS

A GOEVEJ package function that plots dimensions versus Kruskal stress to help decide how many NMDS dimensions to keep.

21
New cards

NMDS (Non-metric Multidimensional Scaling)

An ordinal, exploratory technique that uses a distance matrix and rank order to place samples in a low-dimensional space (usually 2–3D); focuses on the order of distances rather than their exact values.

22
New cards

Ordination

A method to arrange samples in a reduced-dimensional space to approximate the true relationships among samples; serves as a way to interpret multivariate data.

23
New cards

Distance Matrix

A matrix containing pairwise distances between samples (also called a resemblance matrix); used as input for NMDS and other ordination methods.

24
New cards

Bray-Curtis Dissimilarity

A 0–1 distance measure commonly used in biology that ignores double zeros and gives more weight to low-count differences; emphasizes presence/absence and relative abundances.

25
New cards

Euclidean Distance

The straight-line distance between two points (the “as the crow flies” metric); treats all differences numerically and includes double zeros in calculations.

26
New cards

Double Zero

A pair of samples sharing a zero value for a variable; in Euclidean distance, these zeros contribute to the similarity between samples regardless of context.

27
New cards

Rank Order in NMDS

NMDS uses the order of distances (ranks) rather than their absolute magnitudes to construct the low-dimensional configuration.

28
New cards

Stress (in NMDS)

A single-number goodness-of-fit metric (0 to 1) indicating how well the low-dimensional configuration represents the high-dimensional distances; lower is better.

29
New cards

Random Configuration

The initial, random placement of samples in the chosen low-dimensional space before NMDS optimization begins.

30
New cards

Gradient Analysis

The optimization step in NMDS where the configuration is iteratively adjusted along the steepest slope to improve fit.

31
New cards

Global Minimum vs Local Minimum

Global minimum is the best overall configuration; NMDS can get stuck in local minima, hence multiple restarts may be used to approach the global minimum.

32
New cards

Non-parametric

A property of NMDS indicating it relies on ranks rather than raw data values and does not assume a specific data distribution.

33
New cards

Dimensionality (k)

The number of axes (dimensions) in the NMDS plot; commonly 1–3 for visualization, with higher values harder to interpret.

34
New cards

Distance Measures in Biology

Various methods to compute dissimilarities; Euclidean and Bray-Curtis are common, and the choice affects the NMDS output.

35
New cards

Tidy Data

A clean, organized data format with variables as columns and observations as rows, enabling straightforward construction of distance matrices.

36
New cards

Data Cloud

A visual concept of how samples occupy high-dimensional space; NMDS represents this cloud in a lower-dimensional plot.

37
New cards

Two-Dimensional NMDS Plot

A visualization of samples in 2D after dimension reduction, used to interpret relationships and patterns among observations.

38
New cards

Intercept

The predicted value of the response when all predictors are zero; for categorical predictors, corresponds to the reference (baseline) category.

39
New cards

Slope

The change in the response for a one-unit change in a numeric predictor; in additive models, slopes are the same across groups.

40
New cards

Null model

An intercept-only model with no explanatory variables; estimates the overall mean and is analogous to a one-sample t-test.

41
New cards

Categorical explanatory variable

A qualitative predictor with distinct categories (e.g., penguin species) used in regression.

42
New cards

Dummy variables

0/1 indicators used to encode categorical predictors so each non-reference category has its own intercept.

43
New cards

Reference category

The baseline level of a categorical predictor against which other levels are compared in the model.

44
New cards

Additive model

A regression model where the effects of predictors add up with a common slope across groups; lines are parallel.

45
New cards

Interaction model

A model that includes interaction terms, allowing slopes to differ by category; lines are not parallel.

46
New cards

Dummy coding

Encoding scheme using 0/1 variables to represent categories and enable group-specific intercepts.

47
New cards

Linear model (LM)

A regression framework modeling a continuous response as a linear combination of predictors; t-tests and ANOVA are special cases.

48
New cards

ANOVA

A method to test for differences among means and to compare nested models in regression.

49
New cards

AIC (Akaike Information Criterion)

A model quality metric that balances goodness-of-fit with model complexity; lower is better; differences >~4 suggest meaningful improvement.

50
New cards

Parsimony

Preference for simpler models that sufficiently explain the data, balancing fit and complexity.

51
New cards

Confidence interval

A range around a parameter estimate that would contain the true parameter in repeated samples; a single study’s interval either contains it or not.

52
New cards

Shapiro-Wilk test

A normality test for residuals, used as an alternative or complement to QQ plots.

53
New cards

QQ plot

A diagnostic plot comparing observed quantiles to theoretical quantiles to assess normality of residuals.

54
New cards

Residuals

Differences between observed values and model-predicted values, used to assess fit and detect patterns or outliers.

55
New cards

Log transformation

Applying a logarithm to data to stabilize variance or meet model assumptions; not always effective.

56
New cards

Back-transformation

Transforming predictions from a transformed scale (e.g., log) back to the original scale for interpretation.

57
New cards

Non-independence

A violation of the assumption that observations are independent; may require alternative tests or models.

58
New cards

Population parameter

The true value of a quantity in the population (e.g., the true mean); estimated from sample data.

59
New cards

Point prediction

A single predicted value from the regression equation for a given set of predictor values.

60
New cards

Hypothesis testing

A framework for deciding if data provide evidence against a null hypothesis, often using p-values.

61
New cards

Palmer penguins data set

A convenient penguin measurements data set used in the course to practice hypothesis testing, regression, and inference.

62
New cards

Hypothesis testing

Process of evaluating evidence from data to decide whether to reject a null hypothesis.

63
New cards

Null hypothesis

Statement of no effect or no difference that is tested against by the data.

64
New cards

Alternative hypothesis

Statement that there is a difference or effect; at least one group mean differs.

65
New cards

p-value

Probability, under the null hypothesis, of obtaining results as extreme as observed; indicates strength of evidence against the null.

66
New cards

t statistic

Test statistic used in t-tests to assess differences between means (one-sample, paired, or two-sample).

67
New cards

Welch t test

A t-test variant that does not assume equal variances between groups; more robust when variances differ.

68
New cards

Student t test

Standard t-test assuming equal variances between groups.

69
New cards

ANOVA (one-way)

Analysis of Variance; tests whether three or more group means are equal using an F statistic.

70
New cards

F statistic / F value

Ratio of between-group variability to within-group variability; used to assess differences among group means.

71
New cards

Between-group variability

Variability due to differences between group means.

72
New cards

Within-group variability

Variability of observations within each group (also called error or residual variability).

73
New cards

Linear regression

Model describing the relationship between a predictor x and a response y with a line y = a + b x.

74
New cards

Intercept (a)

Predicted value of y when x = 0; often not biologically meaningful depending on x.

75
New cards

Slope (b)

Change in y per unit change in x; indicates direction and strength of the relationship.

76
New cards

Regression coefficients

Estimated intercept and slope parameters in a linear model.

77
New cards

Residual

Difference between an observed value and its model-predicted value (y - ŷ).

78
New cards

Normality assumption

Residuals are approximately normally distributed for valid inference.

79
New cards

Constant variance (homoscedasticity)

Residuals have constant spread across fitted values.

80
New cards

Model assumptions

Requirements for linear regression to be valid: independence, normality, and constant variance.

81
New cards

Model diagnostic plots

Plots (e.g., residuals vs fitted, scale-location, QQ plot) used to check regression assumptions.

82
New cards

QQ plot

Quantile-quantile plot used to assess normality of residuals against a normal distribution.

83
New cards

Scale-location plot

Plot used to assess homoscedasticity and potential nonlinearity in regression.

84
New cards

Residuals vs fitted plot

Plot used to detect non-constant variance or patterns in residuals.

85
New cards

Influential observation

Data point that disproportionately affects the regression line; detected via diagnostic plots.

86
New cards

R

Statistical software used to fit linear models (LM) and run ANOVA, computing p-values and other statistics.

87
New cards

LM (linear model) in R

Function to fit linear regression models and extract coefficients and diagnostics.

88
New cards

AOV in R

Function for performing analysis of variance; alternative to LM for ANOVA results.

89
New cards

Confidence interval

Range around an estimate that with a chosen level contains the true population parameter.

90
New cards

Randomization test

Nonparametric method that builds a null distribution by reshuffling labels.

91
New cards

Type I error

False positive: rejecting a true null hypothesis.

92
New cards

Type II error

False negative: failing to reject a false null hypothesis.

93
New cards

Bill length and bill depth (penguins example)

Bill length as predictor and bill depth as response in a linear model on penguin data.

94
New cards

Body mass and flipper length (penguins example)

Body mass as predictor and flipper length as response in a linear model on penguin data.

95
New cards

Categorical predictor coding in R

R encodes a categorical predictor with an intercept for the baseline level (alphabetically first) and coefficients for other levels.

96
New cards

Null distribution

Distribution of a test statistic assuming the null hypothesis is true.

97
New cards

What is data sovereignty?

The idea that data is governed by the laws of the country or region where it is stored; Indigenous data sovereignty expands this to the rights of Indigenous peoples over the collection, ownership, and use of their data; Māori data sovereignty is the New Zealand expression of these rights.

98
New cards

Is data neutral and objective in scientific practice?

No. Data is shaped by human choices and context; bias can enter during collection, experimental design, inclusion/exclusion, definitions, methods, funding, and power structures; data is not neutral.

99
New cards

What are the CARE principles?

Collective Benefit, Authority to Control, Responsibility, and Ethics; frameworks designed to ensure data practices respect Indigenous rights and interests.

100
New cards

How do CARE principles differ from FAIR principles?

FAIR focuses on the technical properties of data (Findable, Accessible, Interoperable, Reusable); CARE centers on the rights, governance, and benefits of Indigenous peoples in relation to data.