Regression I
Regression II
Probability
Miscellaneous
Datatypes
100

The significance of ŷ ("y hat")

What is the predicted value/s of y?

100

The problem when two or more independent variables are highly correlated to each other

What is multicollinearity?

100

The mapping of a set of outcomes to the number line

What is a random variable?

100

A function stored within a class

What is a method?

100

Immutable, heterogeneous, ordered

What is a tuple?

200

Correlation ranges between these two values

What is -1 and 1?

200

R2 describes this

What is the variability in y explained by the predictor(s)?

200

The distribution used to model a single experiment with a binary outcome

What is the Bernoulli distribution?

200

An object stored within a class

What is an attribute?

200

Immutable, homogeneous, ordered

What is a string?

300

How the line of best fit is determined

What is the minimization of SSE (sum of squared errors)?

300

The parameters learned by fitting an OLS model

What are the beta coefficients?

300

The probability of rolling two six-sided die and receiving a sum of 12

What is 1/36?

300

The pandas property to retrieve an entry by index

What is .iloc[]?

300

Mutable, heterogeneous, unordered

What is a dictionary?

400

How to calculate R-squared

What is 1 - RSS/TSS?

400

Errors should have this type of variance

What is homoscedastic?

400

How to calculate the probability of some discrete event occurring

What is the probability mass function (PMF)?

400

A way to filter a Pandas dataframe

What is boolean masking?

400

Mutable, heterogeneous, ordered

What is a list?

500

The five assumptions of multiple linear regression

What are:

L - linearity

I - independence of errors

N - normality of errors

E - equality of variance

M - no multicollinearity

500

The most commonly used correlation coefficient

What is Pearson's corr coeff, or Pearson's r?

500

In a basket with three kittens and three puppies, the probability of getting a kitten and then a puppy

What is 3/6 * 3/5 = 9/30 = 3/10 = 30%?

500

The distribution we use to model number of events occurring in some interval

What is Poisson?

500

Method to retrieve a value from a dictionary, regardless if the key exists or not

What is .get()

M
e
n
u