NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M2) NOTE: This session is executing on the X64_7PRO platform. NOTE: Updated analytical products: SAS/STAT 13.2 SAS/ETS 13.2 SAS/OR 13.2 SAS/IML 13.2 SAS/QC 13.2 NOTE: Additional host information: X64_7PRO WIN 6.1.7601 Service Pack 1 Workstation NOTE: SAS initialization used: real time 0.77 seconds cpu time 0.38 seconds 1 options nofmterr ; 2 libname r 'F:\I95\Datasets'; NOTE: Libref R was successfully assigned as follows: Engine: V9 Physical Name: F:\I95\Datasets 3 run; 4 5 data three_county_2012; set r.three_county_2012; run; NOTE: There were 677256 observations read from the data set R.THREE_COUNTY_2012. NOTE: The data set WORK.THREE_COUNTY_2012 has 677256 observations and 60 variables. NOTE: DATA statement used (Total process time): real time 0.51 seconds cpu time 0.51 seconds 6 7 ods pdf contents=yes; NOTE: Writing ODS PDF output to DISK destination "F:\I95\Projects\sasprt.pdf", printer "PDF". 8 proc univariate data=three_county_2012; var losd; histogram losd; run; NOTE: Writing HTML Body file: sashtml.htm NOTE: PROCEDURE UNIVARIATE used (Total process time): real time 1.20 seconds cpu time 0.46 seconds 9 ods pdf close; NOTE: ODS PDF printed 3 pages to F:\I95\Projects\sasprt.pdf. 10 ods graphics on; 11 ods pdf file="B:\Test\Histogram.pdf" contents; NOTE: Writing ODS PDF output to DISK destination "B:\Test\Histogram.pdf", printer "PDF". 12 proc univariate data=three_county_2012; var losd; histogram losd; run; NOTE: PROCEDURE UNIVARIATE used (Total process time): real time 0.66 seconds cpu time 0.31 seconds 13 ods pdf close; NOTE: ODS PDF printed 3 pages to B:\Test\Histogram.pdf.