R Basics & Plotting
Probabilities & Events
Summaries & Distributions
Hypothesis Testing
Regression & Correlation
100

This R function reads a text file into a dataframe.

What is read.table()?

100

The IQR stands for this.

What is the interquartile range?

100

This measure is the midpoint when data are ordered from smallest to largest.

What is the median?

100

In a hypothesis test, this symbol represents the default assumption.

What is H₀ (null hypothesis)?

100

A correlation near -1 indicates this kind of relationship.

What is a strong, negative relationship?

200

The argument in plot(..., type="l") tells R to do this.

What is draw a line plot?

200

When P(A ∩ B) ≠ P(A)×P(B), the two events are this.

What is “not independent”?

200

This distribution has the mean and median equal and is symmetric.

What is the Normal distribution?

200

The t-test uses this distribution.

What is the Student's t-distribution?

200

This R function fits a linear model.

What is lm()?

300

In data$YEAR, the $ symbol means this.

What is “select a column from a dataframe”?

300

This R command finds the probability of being greater than X given a normal distribution.

What is 1-pnorm(X, mean, sd)?

300

In a histogram, changing this parameter alters how smooth or rough the shape appears.

What are the number of bins (or breaks)?
300

A p-value less than 0.05 typically leads to this decision.

What is “reject the null hypothesis”?

300

This value tells you the percent of variability explained by a model.

What is R²?

400

This code will display the first 6 lines of a dataset.

What is head(data)?

400

This equation forms the y-axis of an empirical CDF (n = length of data).

What is (1:n)/(n+1)?

400

Outliers can affect this summary statistic more strongly than the median.

What is the mean?

400

This type of test compares two variances.

What is an F-test?

400

This R function tests whether model residuals are independent.

What is dwtest() from the lmtest package?

500

This R function orders data from smallest to largest.

What is sort()?

500

If A and B are events, this formula computes conditional probability, P(A|B).

What is P(A ∩ B) / P(B)?

500

This theorem says that if enough data of skewed distributions are averaged or summed, then those averages or sums make up a normal distribution.

What is the central limit theorem?

500

When only one direction is of interest (e.g., alternative hypothesis tests for “greater than”), this kind of test is used.

What is a one-sided (one-tailed) test?

500

This R function outputs the statistics of a linear regression model.

What is summary()?