In Vitro Growth, Linear Modeling, and Epidemiological Simulations

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

1/20

flashcard set

Earn XP

Description and Tags

Flashcards covering R programming functions for linear modeling, statistical evaluation metrics, and epidemiological SIR model parameters.

Last updated 3:42 PM on 5/5/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

21 Terms

1
New cards

PFU_per_ml

A measure of viral growth used in experiments looking at the in vitro growth of SARS-CoV-2 variants.

2
New cards

lm()

An R function used to fit a linear model, specified with a formula like yxy \sim x.

3
New cards

Coefficients

Components of a linear model object, such as the intercept or the slope of an explanatory variable, accessed via modelfit$coefficientsmodel_fit\$coefficients.

4
New cards

Residuals

The difference between the actual data and the model's prediction; a positive value means the model underestimated the real data, while a negative value means an overestimate.

5
New cards

Fitted values

The predicted values generated by a linear model based on the input data, accessed via modelfit$fitted.valuesmodel_fit\$fitted.values.

6
New cards

Wave

A period in a pandemic characterized by a distinct rise, peak, and fall in hospital admissions.

7
New cards

A model fits training data too closely and fails to predict new data; memorising the “noise“.

8
New cards

vaccine_sentiment

The percentage of people who were vaccinated, had an appointment, or would get vaccinated if given the opportunity, based on a Facebook survey.

9
New cards

mask_sentiment

The percentage of people who wore a mask most or all of the time in public, based on a Facebook survey.

10
New cards

Sum of squared error

A way of measuring model fit defined as the sum of the squares of the residuals.

11
New cards

Mean Squared Error (MSE)

A measure of model performance calculated as the mean of the squared residuals: mean(residuals2)\text{mean}(\text{residuals}^2). Smaller values indicate a better fit to the data.

12
New cards

Dependent variable

Also called the response variable, this is the outcome of interest that a model tries to predict (e.g., CovDp100KCovDp100K).

13
New cards

Independent variable

Also called predictors, these are the factors used within a model to explain variation in the dependent variable (e.g., pPop65pPop65, VacFullp100VacFullp100).

14
New cards

Cross-validation

A process used to evaluate a model's predictive power by splitting data into a training set to fit the model and a test set to evaluate performance.

15
New cards

Training data

The subset of a dataset used to build and fit the parameters of a specific model.

16
New cards

Test data

The subset of data used to evaluate how well a model predicts new, unseen observations.

17
New cards

set.seed()

An R function that ensures random number generation (such as splitting data into test and training sets) is reproducible for all users.

18
New cards

predict()

An R function used to generate predicted values for a test dataset based on a model that was previously fitted to training data.

19
New cards

SIR model

A compartmental model used to simulate disease dynamics based on three groups: Susceptibles (SS), Infecteds (II), and Recovereds (RR).

20
New cards

Transmission rate (beta)

In an SIR model, the parameter β\beta that represents the rate at which susceptible individuals become infected.

21
New cards

Recovery rate (gamma)

In an SIR model, the parameter γ\gamma that represents the rate at which infected individuals recover or are removed from the infectious pool.