DELETE;*$; READ;FILE="F:\tz\CVSRoot\tz\projects\housing\own_work\for_stats_program.xls"$; ? regress with logs REGRESS;Lhs=LN_RPH;Rhs=ONE,LN_HH,LN_RGDP,RINT,RENT_DRG,TAX$; ? add in lag REGRESS;Lhs=LN_RPH;Rhs=ONE,LN_RPH_1,LN_HH,LN_RGDP,RINT,RENT_DRG,TAX$; ? add them one at a time REGRESS;Lhs=LN_RPH;Rhs=ONE,LN_RPH_1,LN_HH,LN_RGDP,RINT; Rh2 = RENT_DRG,TAX$; ? add them one at a time ?REGRESS;Lhs=D_LN_RPH;Rhs=ONE,LN_RPH_1,LN_HH,LN_RGDP,RINT,RENT_DRG,TAX$; ? **************************************************************************** ? do it with AR ? regress w/o logs ?REGRESS;Lhs=RPH;Rhs=ONE,HH,RGDP,POP,RINT,RENT_DRG;Ar1$; ? regress with logs ?REGRESS;Lhs=LN_RPH;Rhs=ONE,LN_HH,LN_RGDPC,LN_POP,RINT,RENT_DRG;Ar1$; ? regress with lag ?REGRESS;Lhs=RPH;Rhs=ONE,RPH_1,HH,RGDP,POP,RINT,RENT_DRG;Ar1$; ? regress with lag and logs ?REGRESS;Lhs=LN_RPH;Rhs=ONE,LN_RPH_1,LN_HH,LN_RGDPC,LN_POP,RINT,RENT_DRG;Ar1$; ? now let's do some with tax ?REGRESS;Lhs=LN_RPH;Rhs=ONE,LN_RPH_1,LN_HH,LN_RGDPC,LN_POP,RINT,RENT_DRG,TAX;Ar1$; ? **************************************************************************** ? OLD ? regress w/o logs ?REGRESS;Lhs=RPH;Rhs=ONE,HH,RGDP,POP,RINT,RENT_DRG$; ? regress with lag ?REGRESS;Lhs=RPH;Rhs=ONE,RPH_1,HH,RGDP,POP,RINT,RENT_DRG$; ? **************************************************************************** ? this was for annual ? regress with logs ?REGRESS;Lhs=LN_RPH;Rhs=ONE,LN_HH,LN_RGDPC,LN_POP,RINT,RENT_DRG,TAX$; ? add in lag ?REGRESS;Lhs=LN_RPH;Rhs=ONE,LN_RPH_1,LN_HH,LN_RGDPC,LN_POP,RINT,RENT_DRG,TAX;PLOT(YEAR)$; ? add them one at a time ?REGRESS;Lhs=LN_RPH;Rhs=ONE,LN_RPH_1,LN_HH,LN_RGDPC,LN_POP,RINT; Rh2 = RENT_DRG,TAX$; ? add them one at a time ?REGRESS;Lhs=D_LN_RPH;Rhs=ONE,LN_RPH_1,LN_HH,LN_RGDPC,LN_POP,RINT,RENT_DRG,TAX$;