Hi SAS users,
If someone has come across a study, paper, model of loan delinquencies using multi factor model, with factors as macroeconomic variables such as Interest Rate, Inflation, Unemployment rate, Property Price index, etc. please send me the URL or papers.
Thanks
Qui
I doubt you will find a paper with those exact variables. However, this is a logistic regression, something like this:
proc logistic data=have;
model delinquency=interest_rate inflation unemployment_rate property_price_index;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.