Logistic regression, a specific type of GLM, is best suited for modeling which type of response variable?
Binary (two categories)
Time-to-event data
Count data
Continuous
What is a key advantage of using Elastic Net Regression over Lasso Regression when dealing with highly correlated features?
Elastic Net is less prone to overfitting than Lasso when dealing with noisy datasets.
Elastic Net can select groups of correlated features together, while Lasso might select only one feature from the group.
Elastic Net is computationally less expensive than Lasso for high-dimensional data.
Elastic Net tends to outperform Lasso when the number of features is much larger than the number of samples.
Which of the following scenarios would benefit from using a hierarchical linear model?
Predicting the price of a house based on its size and location
Forecasting stock prices based on historical data
Classifying emails as spam or not spam
Analyzing the effect of a new drug on patients in different hospitals
What type of data is particularly well-suited for analysis using hierarchical linear models?
Experimental data
Cross-sectional data
Time series data
Nested data
Why is evaluating the model on a separate test set crucial in Polynomial Regression?
To calculate the model's complexity and determine the optimal degree of the polynomial.
To visualize the residuals and check for any non-linear patterns.
To fine-tune the model's hyperparameters and improve its fit on the training data.
To estimate the model's performance on unseen data and assess its generalization ability.
How does Lasso Regression differ from Ridge Regression in terms of feature selection?
Ridge Regression tends to shrink all coefficients towards zero but rarely sets them exactly to zero.
Both Lasso and Ridge Regression can shrink coefficients to zero, but Lasso does it more aggressively.
Neither Lasso nor Ridge Regression performs feature selection; they only shrink coefficients.
Lasso Regression can shrink coefficients to exactly zero, effectively performing feature selection.
How do Generalized Linear Models (GLMs) extend the capabilities of linear regression?
By enabling the response variable to follow different distributions beyond just normal distribution.
By assuming a strictly linear relationship between the response and predictor variables.
By limiting the analysis to datasets with a small number of observations.
By allowing only categorical predictor variables.
Which of the following is a synonym for Hierarchical Linear Models?
Nonlinear Regression Models
Time Series Models
Simple Linear Models
Multilevel Models
What advantage does Polynomial Regression offer over simple Linear Regression when dealing with non-linear relationships between variables?
It introduces polynomial terms, enabling the model to fit curved relationships in the data.
It reduces the need for feature scaling.
It always results in a better fit regardless of the data distribution.
It simplifies the model, making it easier to interpret.
Elastic Net Regression combines the penalties of which two regularization techniques?
Ridge Regression and Polynomial Regression
Linear Regression and Ridge Regression
Lasso Regression and Polynomial Regression
Lasso Regression and Ridge Regression