support@chatgptassignment.com
Let’s assume a credit card applicant is a student with a balance of $621 and an income of $1850. How likely will he/she default according to the fitted logistic regression model? Explain and show calculations.
proc logistic data=work.import;
input student $ balance income;
datalines;
621, 1850;
Run