NOTE: Copyright (c) 2016 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M6) Licensed to TEXAS A&M UNIVERSITY - SFA T&R, Site 70080787. NOTE: This session is executing on the X64_10HOME platform. NOTE: Analytical products: SAS/STAT 15.1 SAS/ETS 15.1 SAS/OR 15.1 SAS/IML 15.1 SAS/QC 15.1 NOTE: Additional host information: X64_10HOME WIN 10.0.19041 Workstation NOTE: SAS initialization used: real time 1.53 seconds cpu time 1.09 seconds 1 options nocenter errors=1M; 2 OPTIONS nomacrogen NoSymbolgen nomlogic nomprint nomfile; 5 libname cn 'c://users/brian/desktop/valuation_sales'; NOTE: Libref CN was successfully assigned as follows: Engine: V9 Physical Name: c:\\users\brian\desktop\valuation_sales 6 *proc contents data=cn.ben_all_new; 9 data out1n out1p; set cn.variables; 10 seq_p=seq/csho; 11 sale_p=sale/csho; 12 salec_p=(sale-sale_l)/csho; 13 14 *if de gt 1; 15 16 if epspi lt 0 then neg=0; 17 else neg=1; 18 if neg=0 then output out1n; 19 else output out1p; 20 run; NOTE: There were 147951 observations read from the data set CN.VARIABLES. NOTE: The data set WORK.OUT1N has 68955 observations and 49 variables. NOTE: The data set WORK.OUT1P has 78996 observations and 49 variables. NOTE: DATA statement used (Total process time): real time 0.07 seconds cpu time 0.07 seconds 21 22 proc reg data=out1p PLOTS(MAXPOINTS=NONE) ; NOTE: Writing HTML Body file: sashtml.htm 23 model prcc_f = sale_p ; 24 run; NOTE: PROCEDURE REG used (Total process time): real time 13.75 seconds cpu time 2.61 seconds 25 proc reg data=out1n ; 26 model prcc_f = sale_p ; 27 run; WARNING: Most ODS graphics with more than 5000 points have been suppressed. Use the PLOTS(MAXPOINTS= ) option in the PROC REG statement to change or override the cutoff. NOTE: Heat maps are displayed instead of scatter plots when residual plots or fit plots are produced. 28 *proc print data=out1n (obs=50);
... View more