% COLUMB_OLS % 

% An OLS printout for the Columbus Data 

% Must have Columbus.mat in workspace

const = ones(49,1);

vars = strvcat('crime','const','income','house_val');

XX = [const X] ;

res = ols(y,XX);

prt_reg(res,vars);

Z = [y X];

CORRELATIONS = corrcoef(Z)

