What is the purpose of the 'whiskers' in a box plot?

  • To represent the outliers
  • To represent the range of the data
  • To show the interquartile range
  • To show the mean and median
The 'whiskers' in a box plot represent the range of the data. The upper whisker extends to the maximum data value or up to 1.5 times the interquartile range (IQR), while the lower whisker extends to the minimum data value or up to 1.5 times the IQR. Any data points beyond the whiskers can be considered outliers.

Why is the assumption of independently and identically distributed (IID) residuals important in linear regression?

  • It ensures that the model is not overfitting
  • It ensures that the model is not underfitting
  • It ensures that the parameter estimates are unbiased
  • It ensures the correctness of standard errors and hypothesis tests
The assumption of IID residuals is important because it ensures that standard errors, confidence intervals, and hypothesis tests are valid. If this assumption is violated, these statistics may be incorrect, leading to misleading results.

When would you prefer to use the median instead of the mean as a measure of central tendency?

  • When the data has outliers
  • When the data is in large quantity
  • When the data is normally distributed
  • When the data is uniformly distributed
The median is preferred over the mean when our data is skewed or has outliers. Outliers can greatly affect the mean and create a distorted view of the data, but the median is not affected by outliers or skewed data. The median is the middle score for a set of data that has been arranged in order of magnitude, making it a better measure when dealing with skewed distributions.

What is the key difference between a discrete and a continuous random variable?

  • Discrete variables are predictable, continuous variables are not
  • Discrete variables can only take on a countable number of values, continuous variables can take on any value within a certain range
  • Discrete variables can take on any value, continuous variables can take on only integer values
  • There's no difference between discrete and continuous random variables
Discrete random variables are variables that can only take on a countable number of values, such as integers, while continuous random variables can take on any value within a certain range or interval.

A distribution with a positive ________ has a long tail in the positive direction.

  • Kurtosis
  • Mean
  • Median
  • Skewness
A distribution with positive skewness is said to be positively skewed or right-skewed, which means it has a long tail in the positive direction on the number line.

What is the null hypothesis in an ANOVA test?

  • The means of all groups are different
  • The means of all groups are equal
  • The variances of all groups are different
  • The variances of all groups are equal
The null hypothesis in an ANOVA test is that the means of all groups are equal. If the p-value obtained from the ANOVA test is less than the significance level, the null hypothesis is rejected, implying that there is a significant difference between at least two of the group means.

In a scatter plot, a __________ trend suggests a positive relationship between variables.

  • Downward
  • Horizontal
  • Upward
  • Vertical
In a scatter plot, an upward trend suggests a positive relationship between the variables. This means as one variable increases, the other variable also increases.

What is the role of eigenvalues in factor analysis?

  • They are used to categorize the data
  • They are used to transform the data
  • They help in normalizing the data
  • They represent the variance explained by each factor
In factor analysis, eigenvalues represent the total variance explained by each factor. A larger eigenvalue indicates that more of the total variance is accounted for by that factor.

Pearson's Correlation Coefficient assumes that the variables are ________ distributed.

  • negatively
  • normally
  • positively
  • randomly
Pearson's Correlation Coefficient assumes that the variables are normally distributed. It's one of the key assumptions made when calculating the coefficient, and it refers to the shape of the distribution of the values.

How does polynomial regression differ from linear regression?

  • Linear regression models relationships as curves
  • Linear regression models relationships as straight lines
  • Polynomial regression models relationships as curves
  • Polynomial regression models relationships as straight lines
Polynomial regression models relationships as curves, not straight lines. This allows polynomial regression to capture non-linear relationships, where the relationship changes direction at different levels of the independent variables. On the other hand, linear regression models relationships as straight lines, assuming a constant rate of change.

What is the Central Limit Theorem and how does it relate to the normal distribution?

  • It states that all distributions are ultimately normal distributions
  • It states that the mean of a large sample is always equal to the population mean
  • It states that the sum of a large number of independent and identically distributed random variables tends to be normally distributed
  • It states that the sum of a small number of random variables has an exponential distribution
The Central Limit Theorem states that, given certain conditions, the arithmetic mean of a sufficiently large number of iterates of independent random variables, each with a well-defined (finite) expected value and finite variance, will be approximately normally distributed, regardless of the shape of the original distribution.

What does ANOVA stand for?

  • Analysis Of Variance
  • Analysis Of Vitality
  • Average Of Variance
  • nan
ANOVA stands for Analysis Of Variance. It's a statistical technique used to check if the means of two or more groups are significantly different from each other.