set.seed(100) library(olsrr)library(stats)library(leaps)libr…

set.seed(100) library(olsrr)library(stats)library(leaps)library(MASS)library(glmnet)library(corrplot)library(grpreg) #Read the csv filediabetes = read.csv(‘diabetes_dataset.csv’, header=TRUE, na.strings = “”) #Remove any potential trailing white space from column namesnames(diabetes)

Question 1: EDA and Full Model – 4 points For this question,…

Question 1: EDA and Full Model – 4 points For this question, use the trainData. Build a correlation matrix plot on the trainData dataset. Interpret it. (1 points) Fit a multiple linear regression with the variable ‘Target’ as the response and the other variables as predictors. Call it model1. Display the model summary. (2 points) What are the Mallow’s Cp, AIC, and BIC values for the full model (model1)? (1 points)