When the correlation coefficient is close to 1, it implies a strong ________ relationship between the two variables.
- Negative
- Neutral
- Positive
- Zero
When the correlation coefficient is close to 1, it implies a strong positive relationship between the two variables. This means as one variable increases, the other also increases.
_____ plots can give a high-level view of a single continuous variable but may hide details about the distribution.
- Bar
- Box
- Histogram
- Scatter
Histograms can provide a high-level view of a single continuous variable by showing the frequency of data points in different bins. However, due to the binning process, some details about the distribution might be hidden.
You've identified several outliers using the modified Z-score method in your dataset. What could be the possible reasons for their existence?
- All of these
- The data may have been corrupted
- The dataset may contain measurement errors
- The dataset may have a complex, multi-modal distribution
All these reasons could lead to the existence of outliers in a dataset.
A high ________ suggests that data points are generally far from the mean, indicating a wide spread in the data set.
- Mean
- Median
- Standard Deviation
- Variance
A "High Standard Deviation" suggests that data points are generally far from the mean, indicating a wide spread in the dataset. It measures the absolute variability of a distribution; the higher the spread, the higher the standard deviation.
In what circumstances can the IQR method lead to incorrect detection of outliers?
- When data has a high standard deviation
- When data is heavily skewed or bimodal
- When data is normally distributed
- When data is uniformly distributed
The IQR method might lead to incorrect detection of outliers in heavily skewed or bimodal distributions because it's based on percentiles which can be influenced by such irregularities.
A potential drawback of using regression imputation is that it can underestimate the ___________.
- Mean
- Median
- Mode
- Variance
One of the potential drawbacks of using regression imputation is that it can underestimate the variance. This is because it uses the relationship with other variables to estimate the missing values, which usually leads to less variability.
To ensure that the audience doesn't misinterpret a data visualization, it's important to avoid __________.
- Bias and misleading scales
- Using interactive elements
- Using more than one type of graph
- Using too many colors
To avoid misinterpretation of a data visualization, it's essential to avoid bias and misleading scales. These could skew the representation of the data and thus lead to inaccurate conclusions.
How does feature selection contribute to model accuracy?
- All of the above
- By improving interpretability of the model
- By reducing overfitting
- By reducing the complexity of the model
Feature selection contributes to model accuracy primarily by reducing overfitting. Overfitting occurs when a model learns the training data too well, including its noise, and performs poorly on unseen data.
You have a dataset with many tied ranks. Which correlation coefficient would you prefer to use, and why?
- Covariance
- Kendall's Tau
- Pearson's correlation coefficient
- Spearman's correlation coefficient
For a dataset with many tied ranks, Kendall's Tau is a better choice. Kendall's Tau handles tied ranks better than the Spearman's correlation coefficient.
In a study on job satisfaction, employees with lower satisfaction scores are less likely to complete surveys. How would you categorize this missing data?
- MAR
- MCAR
- NMAR
- Not missing data
This would be NMAR (Not Missing at Random) because the missingness depends on the unobserved data itself (i.e., the job satisfaction score). If employees with lower job satisfaction are less likely to complete the survey, the missingness is related to the missing satisfaction scores.