Book Image

SAS for Finance

By : Harish Gulati
Book Image

SAS for Finance

By: Harish Gulati

Overview of this book

SAS is a groundbreaking tool for advanced predictive and statistical analytics used by top banks and financial corporations to establish insights from their financial data. SAS for Finance offers you the opportunity to leverage the power of SAS analytics in redefining your data. Packed with real-world examples from leading financial institutions, the author discusses statistical models using time series data to resolve business issues. This book shows you how to exploit the capabilities of this high-powered package to create clean, accurate financial models. You can easily assess the pros and cons of models to suit your unique business needs. By the end of this book, you will be able to leverage the true power of SAS to design and develop accurate analytical models to gain deeper insights into your financial data.
Table of Contents (9 chapters)

Dealing with multicollinearity

The modeler still wasn't sure that the model was robust enough. He remembered that he hadn't tested the model for any effects of multicollinearity. We spoke briefly about this phenomenon when we studied the correlation of stock prices with each of the eight independent variables proposed for the regression model. The multicollinearity test was run using the tolerance and the variance inflation factor (VIF).

The PROC REG code for multicollinearity is as follows:

PROC REG DATA=build plots(only label)=(RStudentByLeverage CooksD); 
ID date; 
MODEL stock = basket_index -- m1_money_supply_index/tol vif; 
RUN;
Figure 2.18: Partial output for multicollinearity

The tolerance is computed as 1-R2. When the R2 is high, the tolerance value is very low. Such low values of tolerance are indicative of multicollinearity. The VIF is derived by taking the...