1 The SAS System 13:03 Tuesday, March 20, 2018 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-696.18.7.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-696.18.7.el6.x86_64 #1 SMP Thu Dec 28 20:15:47 EST 2017 x86_64 Red Hat Enterprise Linux Server release 6.9 (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.09 seconds cpu time 0.02 seconds 1 1 The SAS System 07:24 Tuesday, _ 180 1 ! February 15, 2011 ERROR 180-322: Statement is not valid or it is used out of proper order. 2 3 NOTE: Copyright (c) 2002-2008 by SAS Institute Inc., Cary, NC, USA. 4 NOTE: SAS (r) Proprietary Software 9.2 (TS2M2) 5 Licensed to UNIVERSITY OF FLORIDA-T/R, Site 70055083. 6 NOTE: This session is executing on the Linux 2.6.24-28-server (LINUX) platform. 7 8 9 10 You are running SAS 9. Some SAS 8 files will be automatically converted 11 by the V9 engine; 2 The SAS System 13:03 Tuesday, March 20, 2018 11 ! others are incompatible. Please see ______ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 12 http://support.sas.com/rnd/migration/planning/platform/64bit.html 13 14 PROC MIGRATE will preserve current SAS file attributes and is 15 recommended for converting all your SAS libraries from any 16 SAS 8 release to SAS 9. For details and examples, please see 17 http://support.sas.com/rnd/migration/index.html 18 19 20 This message is contained in the SAS news file, and is presented upon 21 initialization. Edit the file "news" in the "misc/base" directory to 22 display site-specific news and information in the program log. 23 The command line option "-nonews" will prevent this display. 24 25 26 27 28 NOTE: SAS initialization used: 29 real time 0.02 seconds 30 cpu time 0.02 seconds 31 32 1 options ps=54 ls=76; 33 2 _ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 34 3 data one; 35 4 infile 'shelfspace.dat'; _ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 36 5 input category 8 store 16 week 24 shelfspace 31-32 sales 38-40; _ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 37 6 run; _ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 38 39 NOTE: The infile 'shelfspace.dat' is: ___ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 3 The SAS System 13:03 Tuesday, March 20, 2018 40 Filename=/home/winner/public_html/data/shelfspace.dat, 41 Owner Name=winner,Group Name=winner, 42 Access Permission=rwxrwxr-x, 43 Last Modified=Tue Feb 15 07:22:26 2011, 44 File Size (bytes)=5904 45 46 NOTE: 144 records were read from the infile 'shelfspace.dat'. 47 The minimum record length was 40. 48 The maximum record length was 40. 49 NOTE: The data set WORK.ONE has 144 observations and 5 variables. 50 NOTE: DATA statement used (Total process time): 51 real time 0.00 seconds 52 cpu time 0.01 seconds 53 54 55 2 The SAS System 56 07:24 Tuesday, February 15, 2011 57 58 7 59 8 proc sort; 59 ! by category; __ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 60 9 _ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 61 62 NOTE: There were 144 observations read from the data set WORK.ONE. 63 NOTE: The data set WORK.ONE has 144 observations and 5 variables. 64 NOTE: PROCEDURE SORT used (Total process time): 65 real time 0.00 seconds 66 cpu time 0.00 seconds 67 68 69 10 proc glm; 70 11 by category; __ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 71 12 class store week shelfspace; __ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 72 13 model sales = store week shelfspace; __ 180 4 The SAS System 13:03 Tuesday, March 20, 2018 ERROR 180-322: Statement is not valid or it is used out of proper order. 73 14 means shelfspace / tukey bon; __ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 74 15 run; __ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 75 76 NOTE: Interactivity disabled with BY processing. _____________ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 77 NOTE: Means from the MEANS statement are not adjusted for other terms in 78 the model. For adjusted means, use the LSMEANS statement. 79 NOTE: The above message was for the following BY group: 80 category=1 81 NOTE: Means from the MEANS statement are not adjusted for other terms in 82 the model. For adjusted means, use the LSMEANS statement. 83 NOTE: The above message was for the following BY group: 84 category=2 85 NOTE: Means from the MEANS statement are not adjusted for other terms in 86 the model. For adjusted means, use the LSMEANS statement. 87 NOTE: The above message was for the following BY group: 88 category=3 89 NOTE: Means from the MEANS statement are not adjusted for other terms in 90 the model. For adjusted means, use the LSMEANS statement. 91 NOTE: The above message was for the following BY group: 92 category=4 93 NOTE: The PROCEDURE GLM printed pages 1-16. 94 NOTE: PROCEDURE GLM used (Total process time): 95 real time 0.13 seconds 96 cpu time 0.14 seconds 97 98 99 16 100 17 quit; 101 102 NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 ___ 180 ERROR 180-322: Statement is not valid or it is used out of proper order. 103 NOTE: The SAS System used: 104 real time 0.17 seconds 105 cpu time 0.17 seconds 106 ERROR: Errors printed on pages 1,2,3,4. 5 The SAS System 13:03 Tuesday, March 20, 2018 NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.11 seconds cpu time 0.03 seconds