1 The SAS System 13:28 Thursday, March 19, 2015 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M1) Licensed to UNIVERSITY OF FLORIDA - SFA T&R, Site 70095659. NOTE: This session is executing on the Linux 2.6.32-504.8.1.el6.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 13.1 SAS/ETS 13.1 SAS/OR 13.1 SAS/IML 13.1 SAS/QC 13.1 NOTE: Additional host information: Linux LIN X64 2.6.32-504.8.1.el6.x86_64 #1 SMP Fri Dec 19 12:09:25 EST 2014 x86_64 Red Hat Enterprise Linux Server release 6.6 (Santiago) You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.08 seconds cpu time 0.02 seconds 1 options ps=54 ls=76; 2 3 data one; 4 infile 'coastguard_ethics.dat'; 5 input gender rank ethics; 6 if gender=1 then gender1=1; else gender1=-1; 7 if rank=1 then rank1=1; else rank1=-1; 8 gr1=gender1*rank1; 9 run; 2 The SAS System 13:28 Thursday, March 19, 2015 NOTE: The infile 'coastguard_ethics.dat' is: Filename=/home/winner/public_html/data/coastguard_ethics.dat, Owner Name=winner,Group Name=winner, Access Permission=-rwxr--r--, Last Modified=19Mar2015:14:05:51, File Size (bytes)=7475 NOTE: 299 records were read from the infile 'coastguard_ethics.dat'. The minimum record length was 24. The maximum record length was 24. NOTE: The data set WORK.ONE has 299 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds 10 11 proc means mean stddev; 12 class gender rank; 13 run; NOTE: There were 299 observations read from the data set WORK.ONE. NOTE: The PROCEDURE MEANS printed page 1. NOTE: PROCEDURE MEANS used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 14 15 proc glm; 16 class gender rank; 17 model ethics = gender rank gender*rank / solution; 18 means rank; 19 lsmeans rank; 20 means gender; 21 lsmeans gender; 22 run; NOTE: Means from the MEANS statement are not adjusted for other terms in the model. For adjusted means, use the LSMEANS statement. 23 NOTE: The PROCEDURE GLM printed pages 2-7. NOTE: PROCEDURE GLM used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 24 proc reg; 25 model ethics = gender1; 26 model ethics = gender1 rank1; 3 The SAS System 13:28 Thursday, March 19, 2015 27 model ethics = gender1 rank1 gr1; 28 run; NOTE: The PROCEDURE REG printed pages 8-10. NOTE: PROCEDURE REG used (Total process time): real time 0.36 seconds cpu time 0.00 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.58 seconds cpu time 0.07 seconds