* PropVal2 Example -- source code file propval2.sas; options linesize=95 nodate; data propval; infile "c:/datasets/propval.txt" firstobs=15; input y x1-x9; title "PropVal2 Example"; label y="Sale price of house ($1000)" x1="Taxes (local, school, county)" x2="Number of baths" x3="Lot size (1000 sq ft)" x4="Living space (sq ft x 1000)" x5="Number of garage stalls" x6="Number of rooms" x7="Number of bedrooms" x8="Age of home (years)" x9="Number of fireplaces"; proc print; proc reg; model y = x2-x9 / selection=forward slentry=0.5; proc reg; model y = x2-x9 / selection=backward slstay=0.1; proc reg; model y = x2-x9 / selection=stepwise slentry=0.15 slstay=0.15; run; quit;