Sensory Computer Systems Forums Index Sensory Computer Systems Forums
Welcome to the Sensory Computer Systems Online Forums!
 
 FAQFAQ   SearchSearch   RegisterRegister 
 ProfileProfile   Log inLog in   
   Sensory Computer Systems Home   

Test Big message

 
Post new topic   Reply to topic    Sensory Computer Systems Forums Index -> Practice Board
View previous topic :: View next topic  
Author Message
John



Joined: Jun 13 2005
Posts: 23

PostPosted: Tue Jun 14, 2005 1:50 pm    Post subject: Test Big message Reply with quote

Super Long Post....
1 The SAS System 10:01 Wednesday, September 29, 2004

NOTE: Copyright (c) 1999-21 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0)
Licensed to SENSORY COMPUTER SYSTEMS - FOR DEMO PURPOSES ONLY, Site 0035176002.
NOTE: This session is executing on the WIN_PRO platform.



NOTE: SAS initialization used:
real time 2.81 seconds
cpu time 0.28 seconds

1 /*
1 ! ---------------------------------------------------------------------------------------------
1 ! -------------
2 SIMS2000 Export and Analysis: created by SIMS2000 at 10:00 AM on Sep 29 2004
3
4 Result File Name...: EXAMPLE1E
5 Exported by (Owner): DEMO
6 Questionnaire Code.: EXAMPLE1E
7 Experimental Design: EXAMPLE1A
8 Block Type.........: Complete
9 Panel Group Code...: Use the Entire Panelist Population
10 Test Definition....: EXAMPLE1E
11
12 Sample Descriptions:
13 1: Control
14 2: Experiment #1
15 3: Experiment #2
16
17 Attribute Descriptions:
18 X1: Sweetness (Line Scale)
19 X2: Sourness (Line Scale)
20 X3: Liking (Hedonic Scale)
21 (Page Break - NOT EXPORTED)
22 X4: Crispiness (Line Scale)
23 X5: Aftertaste (Line Scale)
24 X6: Bitterness (Line Scale)
25 (Page Break - NOT EXPORTED)
26 X7: Temperature (Line Scale)
27 (Instruction Box - NOT EXPORTED)
28 X8: Too Hot ? (Yes/No Scale)
29 (Instruction Box - NOT EXPORTED)
30 X9: Burn (Hedonic Scale)
31 (Instruction Box - NOT EXPORTED)
32 (Page Break - NOT EXPORTED)
33 (Multi-Media - NOT EXPORTED)
34 (Instruction Box - NOT EXPORTED)
35 X10: Appetizing (Hedonic Scale)
36 X11: Purchase (Yes/No Scale)
37 (Instruction Box - NOT EXPORTED)
38
39
40 Significance Levels:
41 * = 0.0500
42 ** = 0.0100
43 *** = 0.0010
44
45 ---------------------------------------------------------------------------------------------
45 ! ------------- */
46
47
48 /* Set Options and Titles */
49 OPTIONS LS=80 NODATE PS=500;
50 TITLE1 'SIMS2000';
51 TITLE2 'SIMS GENERATED';
52
53 /* Read the data */
54 DATA Z;
55 INFILE 'C:\SIMS2000\DATA\EXAMPLE1.dat' LRECL=1000 DSD;
56 INPUT REP BLOCK JUDGE SAMPLE ORDER X1 X2 X3 X4 X5 X6 X7 X8 X9 X10
56 ! X11;
57
58 /* Sort and Print the data */

NOTE: The infile 'C:\SIMS2000\DATA\EXAMPLE1.dat' is:
File Name=C:\SIMS2000\DATA\EXAMPLE1.dat,
RECFM=V,LRECL=1000

NOTE: 21 records were read from the infile 'C:\SIMS2000\DATA\EXAMPLE1.dat'.
The minimum record length was 74.
The maximum record length was 89.
NOTE: The data set WORK.Z has 21 observations and 16 variables.
NOTE: DATA statement used:
real time 0.45 seconds
cpu time 0.01 seconds


59 PROC SORT; BY REP BLOCK JUDGE SAMPLE;

NOTE: There were 21 observations read from the data set WORK.Z.
NOTE: The data set WORK.Z has 21 observations and 16 variables.
NOTE: PROCEDURE SORT used:
real time 0.12 seconds
cpu time 0.01 seconds


60 PROC PRINT; ID REP BLOCK JUDGE SAMPLE;
61
62 /* Print Frequency Tables */

NOTE: There were 21 observations read from the data set WORK.Z.
NOTE: The PROCEDURE PRINT printed page 1.
NOTE: PROCEDURE PRINT used:
real time 0.34 seconds
cpu time 0.04 seconds


63 PROC FREQ; TABLES SAMPLE SAMPLE*JUDGE;
64
65 /* Set the Variable Labels */

NOTE: There were 21 observations read from the data set WORK.Z.
NOTE: The PROCEDURE FREQ printed page 2.
NOTE: PROCEDURE FREQ used:
real time 0.10 seconds
cpu time 0.03 seconds


66 DATA ALL; SET Z;
67 LABEL
68 X1='Sweetness'
69 X2='Sourness'
70 X3='Liking'
71 X4='Crispiness'
72 X5='Aftertaste'
73 X6='Bitterness'
74 X7='Temperature'
75 X8='Too Hot ?'
76 X9='Burn'
77 X10='Appetizing'
78 X11='Purchase'
79 ;
80
81 /* Re-Sort the data appropriately for the Mean routines*/

NOTE: There were 21 observations read from the data set WORK.Z.
NOTE: The data set WORK.ALL has 21 observations and 16 variables.
NOTE: DATA statement used:
real time 0.00 seconds
cpu time 0.00 seconds


82 PROC SORT DATA=ALL; BY SAMPLE;
83
84 /* Simple Mean Calculation - currently calculates
84 ! Mean/Min/Max/Standard Dev */

NOTE: There were 21 observations read from the data set WORK.ALL.
NOTE: The data set WORK.ALL has 21 observations and 16 variables.
NOTE: PROCEDURE SORT used:
real time 0.00 seconds
cpu time 0.00 seconds


85 PROC MEANS MEAN MIN MAX N STD MAXDEC = 2; BY SAMPLE;
86 VAR X1-X11;
87
88 /* Do Frequency Tables for all X's */

NOTE: There were 21 observations read from the data set WORK.ALL.
NOTE: The PROCEDURE MEANS printed page 3.
NOTE: PROCEDURE MEANS used:
real time 0.12 seconds
cpu time 0.00 seconds


89 PROC FREQ; BY SAMPLE; TABLES X1-X11;
90
91 /* Calculate P-Values and Adjusted Means for all X's */

NOTE: There were 21 observations read from the data set WORK.ALL.
NOTE: The PROCEDURE FREQ printed pages 4-6.
NOTE: PROCEDURE FREQ used:
real time 0.00 seconds
cpu time 0.00 seconds


92 PROC GLM;
93 CLASS JUDGE SAMPLE;
94 MODEL X1-X11 = JUDGE SAMPLE;
95 MEANS SAMPLE / DUNCAN ALPHA=0.0500;
96
97 RUN;

NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
98
99 /* end of sas program file */
NOTE: The PROCEDURE GLM printed pages 7-29.
NOTE: PROCEDURE GLM used:
real time 0.50 seconds
cpu time 0.17 seconds


NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
real time 4.75 seconds
cpu time 0.60 seconds
Back to top
View user's profile
test



Joined: May 31 2005
Posts: 6
Location: testing location

PostPosted: Wed Jun 15, 2005 8:34 am    Post subject: Reply with quote

Super Long Post....
1 The SAS System 10:01 Wednesday, September 29, 2004

NOTE: Copyright (c) 1999-21 by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0)
Licensed to SENSORY COMPUTER SYSTEMS - FOR DEMO PURPOSES ONLY, Site 0035176002.
NOTE: This session is executing on the WIN_PRO platform.



NOTE: SAS initialization used:
real time 2.81 seconds
cpu time 0.28 seconds

1 /*
1 ! ---------------------------------------------------------------------------------------------
1 ! -------------
2 SIMS2000 Export and Analysis: created by SIMS2000 at 10:00 AM on Sep 29 2004
3
4 Result File Name...: EXAMPLE1E
5 Exported by (Owner): DEMO
6 Questionnaire Code.: EXAMPLE1E
7 Experimental Design: EXAMPLE1A
8 Block Type.........: Complete
9 Panel Group Code...: Use the Entire Panelist Population
10 Test Definition....: EXAMPLE1E
11
12 Sample Descriptions:
13 1: Control
14 2: Experiment #1
15 3: Experiment #2
16
17 Attribute Descriptions:
18 X1: Sweetness (Line Scale)
19 X2: Sourness (Line Scale)
20 X3: Liking (Hedonic Scale)
21 (Page Break - NOT EXPORTED)
22 X4: Crispiness (Line Scale)
23 X5: Aftertaste (Line Scale)
24 X6: Bitterness (Line Scale)
25 (Page Break - NOT EXPORTED)
26 X7: Temperature (Line Scale)
27 (Instruction Box - NOT EXPORTED)
28 X8: Too Hot ? (Yes/No Scale)
29 (Instruction Box - NOT EXPORTED)
30 X9: Burn (Hedonic Scale)
31 (Instruction Box - NOT EXPORTED)
32 (Page Break - NOT EXPORTED)
33 (Multi-Media - NOT EXPORTED)
34 (Instruction Box - NOT EXPORTED)
35 X10: Appetizing (Hedonic Scale)
36 X11: Purchase (Yes/No Scale)
37 (Instruction Box - NOT EXPORTED)
38
39
40 Significance Levels:
41 * = 0.0500
42 ** = 0.0100
43 *** = 0.0010
44
45 ---------------------------------------------------------------------------------------------
45 ! ------------- */
46
47
48 /* Set Options and Titles */
49 OPTIONS LS=80 NODATE PS=500;
50 TITLE1 'SIMS2000';
51 TITLE2 'SIMS GENERATED';
52
53 /* Read the data */
54 DATA Z;
55 INFILE 'C:\SIMS2000\DATA\EXAMPLE1.dat' LRECL=1000 DSD;
56 INPUT REP BLOCK JUDGE SAMPLE ORDER X1 X2 X3 X4 X5 X6 X7 X8 X9 X10
56 ! X11;
57
58 /* Sort and Print the data */

NOTE: The infile 'C:\SIMS2000\DATA\EXAMPLE1.dat' is:
File Name=C:\SIMS2000\DATA\EXAMPLE1.dat,
RECFM=V,LRECL=1000

NOTE: 21 records were read from the infile 'C:\SIMS2000\DATA\EXAMPLE1.dat'.
The minimum record length was 74.
The maximum record length was 89.
NOTE: The data set WORK.Z has 21 observations and 16 variables.
NOTE: DATA statement used:
real time 0.45 seconds
cpu time 0.01 seconds


59 PROC SORT; BY REP BLOCK JUDGE SAMPLE;

NOTE: There were 21 observations read from the data set WORK.Z.
NOTE: The data set WORK.Z has 21 observations and 16 variables.
NOTE: PROCEDURE SORT used:
real time 0.12 seconds
cpu time 0.01 seconds


60 PROC PRINT; ID REP BLOCK JUDGE SAMPLE;
61
62 /* Print Frequency Tables */

NOTE: There were 21 observations read from the data set WORK.Z.
NOTE: The PROCEDURE PRINT printed page 1.
NOTE: PROCEDURE PRINT used:
real time 0.34 seconds
cpu time 0.04 seconds


63 PROC FREQ; TABLES SAMPLE SAMPLE*JUDGE;
64
65 /* Set the Variable Labels */

NOTE: There were 21 observations read from the data set WORK.Z.
NOTE: The PROCEDURE FREQ printed page 2.
NOTE: PROCEDURE FREQ used:
real time 0.10 seconds
cpu time 0.03 seconds


66 DATA ALL; SET Z;
67 LABEL
68 X1='Sweetness'
69 X2='Sourness'
70 X3='Liking'
71 X4='Crispiness'
72 X5='Aftertaste'
73 X6='Bitterness'
74 X7='Temperature'
75 X8='Too Hot ?'
76 X9='Burn'
77 X10='Appetizing'
78 X11='Purchase'
79 ;
80
81 /* Re-Sort the data appropriately for the Mean routines*/

NOTE: There were 21 observations read from the data set WORK.Z.
NOTE: The data set WORK.ALL has 21 observations and 16 variables.
NOTE: DATA statement used:
real time 0.00 seconds
cpu time 0.00 seconds


82 PROC SORT DATA=ALL; BY SAMPLE;
83
84 /* Simple Mean Calculation - currently calculates
84 ! Mean/Min/Max/Standard Dev */

NOTE: There were 21 observations read from the data set WORK.ALL.
NOTE: The data set WORK.ALL has 21 observations and 16 variables.
NOTE: PROCEDURE SORT used:
real time 0.00 seconds
cpu time 0.00 seconds


85 PROC MEANS MEAN MIN MAX N STD MAXDEC = 2; BY SAMPLE;
86 VAR X1-X11;
87
88 /* Do Frequency Tables for all X's */

NOTE: There were 21 observations read from the data set WORK.ALL.
NOTE: The PROCEDURE MEANS printed page 3.
NOTE: PROCEDURE MEANS used:
real time 0.12 seconds
cpu time 0.00 seconds


89 PROC FREQ; BY SAMPLE; TABLES X1-X11;
90
91 /* Calculate P-Values and Adjusted Means for all X's */

NOTE: There were 21 observations read from the data set WORK.ALL.
NOTE: The PROCEDURE FREQ printed pages 4-6.
NOTE: PROCEDURE FREQ used:
real time 0.00 seconds
cpu time 0.00 seconds


92 PROC GLM;
93 CLASS JUDGE SAMPLE;
94 MODEL X1-X11 = JUDGE SAMPLE;
95 MEANS SAMPLE / DUNCAN ALPHA=0.0500;
96
97 RUN;

NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
NOTE: Means from the MEANS statement are not adjusted for other terms in the
model. For adjusted means, use the LSMEANS statement.
98
99 /* end of sas program file */
NOTE: The PROCEDURE GLM printed pages 7-29.
NOTE: PROCEDURE GLM used:
real time 0.50 seconds
cpu time 0.17 seconds


NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
real time 4.75 seconds
cpu time 0.60 seconds
_________________
signature test
Back to top
View user's profile
Display posts from previous:   
Post new topic   Reply to topic    Sensory Computer Systems Forums Index -> Practice Board All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group