I am using SAS Studio 3.8 and I´ve got follwing problems:
dm 'clear log; clear output';
%INCLUDE '/folders/myfolders/Rohdaten/RS_ICC_LoA_SDC_Wilcoxonneu(1).sas';
data neben; set neben ;
run;
data unter; set unter;
run;
data unter; set unter;
run;
data unter; set unter;
if Observer = 1 then Zuordnung = 1;
if Observer = 2 then Zuordnung = 2;
run;
data unter; set unter;
zuord = cat (Proband, '_', Observer);
run;
data a001_unter; set unter;
run;
data a001_neben; set neben;
run;
data a002_var; set a001_unter;
drop Proband Observer Zuordnung zuord;
run;
%alle_variablen(datain_neben = a001_neben,
datain_unter = a001_unter,
datain_var = a002_var,
zusatz1 = obs1,
zusatz2 = obs2,
print = 3,
code = zuord,
rater = Zuordnung,
plot = observations,
graphic = normal,
path = /folders/myfolders/Rohdaten,
title = yes,
font = times,
height = 1500px,
width = 2000px,
out = d001,
out_alles = d002_alles,
output = Output_video1,
perm = bib.output_videoperc1)
;
with following notes:
Maxim 3: Know Your Data
Observer is a character variable, so the 1 should be in quotes to make it a string.
Thank you for the answer! I´ve solved the first problem that character values have been converted to numeric values.
But I´ve still got this problem:
To diagnose this, I would need to see the incriminated log line(s).
1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 72 73 dm 'clear log; clear output'; 74 75 76 77 78 %INCLUDE '/folders/myfolders/Rohdaten/RS_ICC_LoA_SDC_Wilcoxonneu(1).sas'; 1126 1127 1128 data neben; set neben ; 1129 run; NOTE: There were 30 observations read from the data set WORK.NEBEN. NOTE: The data set WORK.NEBEN has 30 observations and 13 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds 1130 1131 data unter; set unter; 1132 run; NOTE: There were 60 observations read from the data set WORK.UNTER. NOTE: The data set WORK.UNTER has 60 observations and 8 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds 1133 data unter; set unter; 1134 run; NOTE: There were 60 observations read from the data set WORK.UNTER. NOTE: The data set WORK.UNTER has 60 observations and 8 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds 1135 1136 1137 data unter; set unter; 1138 if Observer = '1' then Zuordnung = 1; 1139 if Observer = '2' then Zuordnung = 2; 1140 run; NOTE: There were 60 observations read from the data set WORK.UNTER. NOTE: The data set WORK.UNTER has 60 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds 1141 1142 data unter; set unter; 1143 zuord = cat (Proband, Observer); 1144 run; NOTE: There were 60 observations read from the data set WORK.UNTER. NOTE: The data set WORK.UNTER has 60 observations and 10 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds 1145 1146 data a001_unter; set unter; 1147 run; NOTE: There were 60 observations read from the data set WORK.UNTER. NOTE: The data set WORK.A001_UNTER has 60 observations and 10 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds 1148 1149 data a001_neben; set neben; 1150 run; NOTE: There were 30 observations read from the data set WORK.NEBEN. NOTE: The data set WORK.A001_NEBEN has 30 observations and 13 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds 1151 1152 data a002_var; set a001_unter; 1153 drop Proband Observer Zuordnung zuord; 1154 run; NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.A002_VAR has 60 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds 1155 1156 %alle_variablen(datain_neben = a001_neben, 1157 datain_unter = a001_unter, 1158 datain_var = a002_var, 1159 zusatz1 = obs1, 1160 zusatz2 = obs2, 1161 print = 3, 1162 code = zuord, 1163 rater = Zuordnung, 1164 plot = observations, 1165 graphic = normal, 1166 path = /folders/myfolders/Rohdaten, 1167 title = yes, 1168 font = times, 1169 height = 1500px, 1170 width = 2000px, 1171 out = d001, 1172 out_alles = d002_alles, 1173 output = Output_video1, 1174 perm = bib.output_videoperc1) NOTE: The data set WORK.UEB_01_VAR has 6 observations and 41 variables. NOTE: Verwendet wurde: PROZEDUR CONTENTS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 6 observations read from the data set WORK.UEB_01_VAR. NOTE: The data set WORK.UEB_01_VAR has 6 observations and 42 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.04 seconds NOTE: There were 6 observations read from the data set WORK.UEB_01_VAR. NOTE: The data set WORK.UEB_02_MEANS has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.06 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.UEB_02_MEANS. NOTE: The data set WORK.UEB_02_MEANS has 1 observations and 4 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:230 1174:26 NOTE: There were 1 observations read from the data set WORK.UEB_02_MEANS. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds 6 0 NOTE: There were 6 observations read from the data set WORK.UEB_01_VAR. WHERE (nr>=1 and nr<51); NOTE: The data set WORK.UEB_03_VAR_1 has 6 observations and 42 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 6 observations read from the data set WORK.UEB_03_VAR_1. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds Atemnb Atemvb Erhatem Erhpuls Pulsnb Pulsvb NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds Atemnb Atemnbobs1 Atemnbobs2 NOTE: STYLE 'Styles.Mystyle_times' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.00 seconds NOTE: STYLE 'Styles.Mystyle_arial' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_01 has 1 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_01. NOTE: The data set WORK.MEAN_02_RES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.A001_UNTER has 60 observations and 10 variables. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.00 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_02 has 2 observations and 8 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.00 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_03 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_04 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_05 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_06 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_07 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03. NOTE: The data set WORK.MEAN_03_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04. NOTE: The data set WORK.MEAN_04_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05. NOTE: The data set WORK.MEAN_05_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06. NOTE: The data set WORK.MEAN_06_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07. NOTE: The data set WORK.MEAN_07_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR CORR - (Gesamtverarbeitungszeit): real time 0.70 seconds cpu time 0.45 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.02 seconds NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR GLM - (Gesamtverarbeitungszeit): real time 0.58 seconds cpu time 0.46 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.17 seconds cpu time 0.15 seconds NOTE: Division by zero detected at Zeile 1174 Spalte 61. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=. ICC_k=. _NAME_=Atemnb _SOURCE_=ERROR _TYPE_=ERROR DF=0 SS=0 F=. PROB=. FIRST._NAME_=1 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=1 NOTE: Division by zero detected at Zeile 1174 Spalte 47. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=0 ICC_k=1 _NAME_=Atemnb _SOURCE_=Zuordnung _TYPE_=SS3 DF=0 SS=0 F=. PROB=. FIRST._NAME_=0 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=3 NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:150 1 bei 1174:26 1 bei 1174:206 1 bei 1174:27 1 bei 1174:127 1 bei 1174:216 1 bei 1174:78 1 bei 1174:163 1 bei 1174:9 1 bei 1174:102 NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:61 1 bei 1174:47 NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_02_RES has 1 observations and 27 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ICC_02_RES has 1 observations and 28 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.11 seconds cpu time 0.11 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.SDC_01_MEAN has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_1 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_2 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_3 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_4 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_5 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_6 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_7 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_8 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: The data set WORK.SDC_03_ZUS has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_1 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_1. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 2 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_2 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_2. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 3 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_3 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_3. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 4 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_4 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_4. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 5 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_5 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_5. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 6 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_6 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_6. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 7 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_7 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_7. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 8 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_8 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_8. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 9 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.SDC_03_ZUS. NOTE: The data set WORK.SDC_04_RES has 8 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wsingle'; NOTE: The data set WORK.SDC_05_ICC_WSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wk'; NOTE: The data set WORK.SDC_05_ICC_WK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfsingle'; NOTE: The data set WORK.SDC_05_ICC_SFSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandom'; NOTE: The data set WORK.SDC_05_ICC_SFRANDOM has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixed'; NOTE: The data set WORK.SDC_05_ICC_SFFIXED has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfk'; NOTE: The data set WORK.SDC_05_ICC_SFK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandk'; NOTE: The data set WORK.SDC_05_ICC_SFRANDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixedk'; NOTE: The data set WORK.SDC_05_ICC_SFFIXEDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDOM. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXED. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXEDK. NOTE: The data set WORK.SDC_06_RES has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_01 has 30 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_02_BASUMM has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:174 1174:221 1174:28 NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 10 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:142 1174:193 1174:246 1174:39 NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:67 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_04_PLOT has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: PROZEDUR SGPLOT - (Gesamtverarbeitungszeit): real time 17.01 seconds cpu time 1.12 seconds WARNING: WIDTH exceeds available space for RTF(WEB) destination. Setting WIDTH=745.44px. WARNING: WIDTH exceeds available space for PDF(WEB) destination. Setting WIDTH=745.6px. NOTE: Listing image output written to /folders/myfolders/Rohdaten/LoA - Atemnb.png. NOTE: There were 30 observations read from the data set WORK.LOA_04_PLOT. NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: The data set WORK.LOA_05_VALUES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_06_NORMAL has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.LOA_07_NORMAL has 1 observations and 47 variables. NOTE: The PROCEDURE UNIVARIATE printed pages 1-2. NOTE: Verwendet wurde: PROZEDUR UNIVARIATE - (Gesamtverarbeitungszeit): real time 3.86 seconds cpu time 0.71 seconds NOTE: There were 1 observations read from the data set WORK.LOA_05_VALUES. NOTE: The data set WORK.LOA_08_CONFI has 1 observations and 8 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LOA_08_CONFI. NOTE: The data set WORK.LOA_09_RES has 1 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.WIL_01_NPAR1WAY has 1 observations and 20 variables. NOTE: The PROCEDURE NPAR1WAY printed pages 3-4. NOTE: Verwendet wurde: PROZEDUR NPAR1WAY - (Gesamtverarbeitungszeit): real time 0.46 seconds cpu time 0.30 seconds NOTE: There were 1 observations read from the data set WORK.WIL_01_NPAR1WAY. NOTE: The data set WORK.WIL_02_RES has 1 observations and 21 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_02_RES. NOTE: The data set WORK.ZUS_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03_RES. NOTE: The data set WORK.ZUS_MEAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04_RES. NOTE: The data set WORK.ZUS_STD_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05_RES. NOTE: The data set WORK.ZUS_MEDIAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06_RES. NOTE: The data set WORK.ZUS_MIN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07_RES. NOTE: The data set WORK.ZUS_MAX_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.ZUS_RS has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ZUS_ICC has 1 observations and 11 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LOA_09_RES. NOTE: The data set WORK.ZUS_LOA has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_06_RES. NOTE: The data set WORK.ZUS_SDC has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.WIL_02_RES. NOTE: The data set WORK.ZUS_WIL has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN. NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_STD_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MEDIAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MIN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MAX_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_RS. NOTE: There were 1 observations read from the data set WORK.ZUS_ICC. NOTE: There were 1 observations read from the data set WORK.ZUS_LOA. NOTE: There were 1 observations read from the data set WORK.ZUS_SDC. NOTE: There were 1 observations read from the data set WORK.ZUS_WIL. NOTE: The data set WORK.ZUS_ALLES has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.08 seconds cpu time 0.05 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_ALLES. NOTE: The data set WORK.D001_ATEMNB has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Deleting WORK.ICC_01_STAT (memtype=DATA). NOTE: Deleting WORK.ICC_02_RES (memtype=DATA). NOTE: Deleting WORK.LOA_01 (memtype=DATA). NOTE: Deleting WORK.LOA_02_BASUMM (memtype=DATA). NOTE: Deleting WORK.LOA_03_MEAN (memtype=DATA). NOTE: Deleting WORK.LOA_04_PLOT (memtype=DATA). NOTE: Deleting WORK.LOA_05_VALUES (memtype=DATA). NOTE: Deleting WORK.LOA_06_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_07_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_08_CONFI (memtype=DATA). NOTE: Deleting WORK.LOA_09_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_01 (memtype=DATA). NOTE: Deleting WORK.MEAN_02_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_02 (memtype=DATA). NOTE: Deleting WORK.MEAN_03 (memtype=DATA). NOTE: Deleting WORK.MEAN_03_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_04 (memtype=DATA). NOTE: Deleting WORK.MEAN_04_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_05 (memtype=DATA). NOTE: Deleting WORK.MEAN_05_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_06 (memtype=DATA). NOTE: Deleting WORK.MEAN_06_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_07 (memtype=DATA). NOTE: Deleting WORK.MEAN_07_RES (memtype=DATA). NOTE: Deleting WORK.RS_01_RES (memtype=DATA). NOTE: Deleting WORK.SDC_01_MEAN (memtype=DATA). NOTE: Deleting WORK.SDC_02_1 (memtype=DATA). NOTE: Deleting WORK.SDC_02_2 (memtype=DATA). NOTE: Deleting WORK.SDC_02_3 (memtype=DATA). NOTE: Deleting WORK.SDC_02_4 (memtype=DATA). NOTE: Deleting WORK.SDC_02_5 (memtype=DATA). NOTE: Deleting WORK.SDC_02_6 (memtype=DATA). NOTE: Deleting WORK.SDC_02_7 (memtype=DATA). NOTE: Deleting WORK.SDC_02_8 (memtype=DATA). NOTE: Deleting WORK.SDC_03_ZUS (memtype=DATA). NOTE: Deleting WORK.SDC_04_RES (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXED (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXEDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDOM (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_06_RES (memtype=DATA). NOTE: Deleting WORK.WIL_01_NPAR1WAY (memtype=DATA). NOTE: Deleting WORK.WIL_02_RES (memtype=DATA). NOTE: Deleting WORK.ZUS_ALLES (memtype=DATA). NOTE: Deleting WORK.ZUS_ICC (memtype=DATA). NOTE: Deleting WORK.ZUS_LOA (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_STD_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MIN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MAX_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_RS (memtype=DATA). NOTE: Deleting WORK.ZUS_SDC (memtype=DATA). NOTE: Deleting WORK.ZUS_WIL (memtype=DATA). NOTE: Verwendet wurde: PROZEDUR DATASETS - (Gesamtverarbeitungszeit): real time 0.26 seconds cpu time 0.17 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds Atemvb Atemvbobs1 Atemvbobs2 NOTE: Overwriting existing template/link: Styles.Mystyle_times NOTE: STYLE 'Styles.Mystyle_times' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Overwriting existing template/link: Styles.Mystyle_arial NOTE: STYLE 'Styles.Mystyle_arial' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_01 has 1 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_01. NOTE: The data set WORK.MEAN_02_RES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Input data set is already sorted, no sorting done. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_02 has 2 observations and 8 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_03 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_04 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_05 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_06 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_07 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03. NOTE: The data set WORK.MEAN_03_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04. NOTE: The data set WORK.MEAN_04_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05. NOTE: The data set WORK.MEAN_05_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06. NOTE: The data set WORK.MEAN_06_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07. NOTE: The data set WORK.MEAN_07_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: The PROCEDURE CORR printed page 5. NOTE: Verwendet wurde: PROZEDUR CORR - (Gesamtverarbeitungszeit): real time 0.22 seconds cpu time 0.15 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: The PROCEDURE GLM printed pages 6-7. NOTE: Verwendet wurde: PROZEDUR GLM - (Gesamtverarbeitungszeit): real time 0.40 seconds cpu time 0.30 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The PROCEDURE PRINT printed page 8. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.22 seconds cpu time 0.17 seconds NOTE: Division by zero detected at Zeile 1174 Spalte 61. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=. ICC_k=. _NAME_=Atemvb _SOURCE_=ERROR _TYPE_=ERROR DF=0 SS=0 F=. PROB=. FIRST._NAME_=1 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=1 NOTE: Division by zero detected at Zeile 1174 Spalte 47. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=0 ICC_k=1 _NAME_=Atemvb _SOURCE_=Zuordnung _TYPE_=SS3 DF=0 SS=0 F=. PROB=. FIRST._NAME_=0 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=3 NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:150 1 bei 1174:26 1 bei 1174:206 1 bei 1174:27 1 bei 1174:127 1 bei 1174:216 1 bei 1174:78 1 bei 1174:163 1 bei 1174:9 1 bei 1174:102 NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:61 1 bei 1174:47 NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_02_RES has 1 observations and 27 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ICC_02_RES has 1 observations and 28 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The PROCEDURE PRINT printed page 9. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.11 seconds cpu time 0.11 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.SDC_01_MEAN has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_1 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_2 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_3 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_4 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_5 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_6 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.05 seconds cpu time 0.03 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_7 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_8 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: The data set WORK.SDC_03_ZUS has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_1 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_1. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 2 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_2 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_2. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 3 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_3 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_3. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 4 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_4 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_4. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 5 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_5 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_5. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 6 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_6 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_6. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 7 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_7 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_7. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 8 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_8 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_8. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 9 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.SDC_03_ZUS. NOTE: The data set WORK.SDC_04_RES has 8 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wsingle'; NOTE: The data set WORK.SDC_05_ICC_WSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wk'; NOTE: The data set WORK.SDC_05_ICC_WK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfsingle'; NOTE: The data set WORK.SDC_05_ICC_SFSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandom'; NOTE: The data set WORK.SDC_05_ICC_SFRANDOM has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixed'; NOTE: The data set WORK.SDC_05_ICC_SFFIXED has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfk'; NOTE: The data set WORK.SDC_05_ICC_SFK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandk'; NOTE: The data set WORK.SDC_05_ICC_SFRANDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixedk'; NOTE: The data set WORK.SDC_05_ICC_SFFIXEDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDOM. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXED. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXEDK. NOTE: The data set WORK.SDC_06_RES has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_01 has 30 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_02_BASUMM has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:174 1174:221 1174:28 NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 10 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:142 1174:193 1174:246 1174:39 NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:67 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_04_PLOT has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: PROZEDUR SGPLOT - (Gesamtverarbeitungszeit): real time 2.66 seconds cpu time 0.81 seconds WARNING: WIDTH exceeds available space for RTF(WEB) destination. Setting WIDTH=745.44px. WARNING: WIDTH exceeds available space for PDF(WEB) destination. Setting WIDTH=745.6px. NOTE: Listing image output written to /folders/myfolders/Rohdaten/LoA - Atemvb.png. NOTE: There were 30 observations read from the data set WORK.LOA_04_PLOT. NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: The data set WORK.LOA_05_VALUES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_06_NORMAL has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: The data set WORK.LOA_07_NORMAL has 1 observations and 47 variables. NOTE: The PROCEDURE UNIVARIATE printed pages 10-11. NOTE: Verwendet wurde: PROZEDUR UNIVARIATE - (Gesamtverarbeitungszeit): real time 2.60 seconds cpu time 0.57 seconds NOTE: There were 1 observations read from the data set WORK.LOA_05_VALUES. NOTE: The data set WORK.LOA_08_CONFI has 1 observations and 8 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LOA_08_CONFI. NOTE: The data set WORK.LOA_09_RES has 1 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: The data set WORK.WIL_01_NPAR1WAY has 1 observations and 20 variables. NOTE: The PROCEDURE NPAR1WAY printed pages 12-13. NOTE: Verwendet wurde: PROZEDUR NPAR1WAY - (Gesamtverarbeitungszeit): real time 0.24 seconds cpu time 0.22 seconds NOTE: There were 1 observations read from the data set WORK.WIL_01_NPAR1WAY. NOTE: The data set WORK.WIL_02_RES has 1 observations and 21 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_02_RES. NOTE: The data set WORK.ZUS_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03_RES. NOTE: The data set WORK.ZUS_MEAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04_RES. NOTE: The data set WORK.ZUS_STD_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05_RES. NOTE: The data set WORK.ZUS_MEDIAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06_RES. NOTE: The data set WORK.ZUS_MIN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07_RES. NOTE: The data set WORK.ZUS_MAX_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.ZUS_RS has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ZUS_ICC has 1 observations and 11 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LOA_09_RES. NOTE: The data set WORK.ZUS_LOA has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_06_RES. NOTE: The data set WORK.ZUS_SDC has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.WIL_02_RES. NOTE: The data set WORK.ZUS_WIL has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN. NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_STD_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MEDIAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MIN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MAX_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_RS. NOTE: There were 1 observations read from the data set WORK.ZUS_ICC. NOTE: There were 1 observations read from the data set WORK.ZUS_LOA. NOTE: There were 1 observations read from the data set WORK.ZUS_SDC. NOTE: There were 1 observations read from the data set WORK.ZUS_WIL. NOTE: The data set WORK.ZUS_ALLES has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_ALLES. NOTE: The data set WORK.D001_ATEMVB has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Deleting WORK.ICC_01_STAT (memtype=DATA). NOTE: Deleting WORK.ICC_02_RES (memtype=DATA). NOTE: Deleting WORK.LOA_01 (memtype=DATA). NOTE: Deleting WORK.LOA_02_BASUMM (memtype=DATA). NOTE: Deleting WORK.LOA_03_MEAN (memtype=DATA). NOTE: Deleting WORK.LOA_04_PLOT (memtype=DATA). NOTE: Deleting WORK.LOA_05_VALUES (memtype=DATA). NOTE: Deleting WORK.LOA_06_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_07_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_08_CONFI (memtype=DATA). NOTE: Deleting WORK.LOA_09_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_01 (memtype=DATA). NOTE: Deleting WORK.MEAN_02_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_02 (memtype=DATA). NOTE: Deleting WORK.MEAN_03 (memtype=DATA). NOTE: Deleting WORK.MEAN_03_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_04 (memtype=DATA). NOTE: Deleting WORK.MEAN_04_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_05 (memtype=DATA). NOTE: Deleting WORK.MEAN_05_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_06 (memtype=DATA). NOTE: Deleting WORK.MEAN_06_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_07 (memtype=DATA). NOTE: Deleting WORK.MEAN_07_RES (memtype=DATA). NOTE: Deleting WORK.RS_01_RES (memtype=DATA). NOTE: Deleting WORK.SDC_01_MEAN (memtype=DATA). NOTE: Deleting WORK.SDC_02_1 (memtype=DATA). NOTE: Deleting WORK.SDC_02_2 (memtype=DATA). NOTE: Deleting WORK.SDC_02_3 (memtype=DATA). NOTE: Deleting WORK.SDC_02_4 (memtype=DATA). NOTE: Deleting WORK.SDC_02_5 (memtype=DATA). NOTE: Deleting WORK.SDC_02_6 (memtype=DATA). NOTE: Deleting WORK.SDC_02_7 (memtype=DATA). NOTE: Deleting WORK.SDC_02_8 (memtype=DATA). NOTE: Deleting WORK.SDC_03_ZUS (memtype=DATA). NOTE: Deleting WORK.SDC_04_RES (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXED (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXEDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDOM (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_06_RES (memtype=DATA). NOTE: Deleting WORK.WIL_01_NPAR1WAY (memtype=DATA). NOTE: Deleting WORK.WIL_02_RES (memtype=DATA). NOTE: Deleting WORK.ZUS_ALLES (memtype=DATA). NOTE: Deleting WORK.ZUS_ICC (memtype=DATA). NOTE: Deleting WORK.ZUS_LOA (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_STD_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MIN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MAX_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_RS (memtype=DATA). NOTE: Deleting WORK.ZUS_SDC (memtype=DATA). NOTE: Deleting WORK.ZUS_WIL (memtype=DATA). NOTE: Verwendet wurde: PROZEDUR DATASETS - (Gesamtverarbeitungszeit): real time 0.22 seconds cpu time 0.20 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds Erhatem Erhatemobs1 Erhatemobs2 NOTE: Overwriting existing template/link: Styles.Mystyle_times NOTE: STYLE 'Styles.Mystyle_times' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Overwriting existing template/link: Styles.Mystyle_arial NOTE: STYLE 'Styles.Mystyle_arial' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_01 has 1 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_01. NOTE: The data set WORK.MEAN_02_RES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Input data set is already sorted, no sorting done. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_02 has 2 observations and 8 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_03 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_04 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_05 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_06 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_07 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03. NOTE: The data set WORK.MEAN_03_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04. NOTE: The data set WORK.MEAN_04_RES has 1 observations and 3 variables. NOTE: There were 1 observations read from the data set WORK.MEAN_05. NOTE: The data set WORK.MEAN_05_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06. NOTE: The data set WORK.MEAN_06_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07. NOTE: The data set WORK.MEAN_07_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.04 seconds NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: The PROCEDURE CORR printed page 14. NOTE: Verwendet wurde: PROZEDUR CORR - (Gesamtverarbeitungszeit): real time 0.28 seconds cpu time 0.24 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: The PROCEDURE GLM printed pages 15-16. NOTE: Verwendet wurde: PROZEDUR GLM - (Gesamtverarbeitungszeit): real time 0.27 seconds cpu time 0.23 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The PROCEDURE PRINT printed page 17. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.08 seconds cpu time 0.09 seconds NOTE: Division by zero detected at Zeile 1174 Spalte 61. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=. ICC_k=. _NAME_=Erhatem _SOURCE_=ERROR _TYPE_=ERROR DF=0 SS=0 F=. PROB=. FIRST._NAME_=1 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=1 NOTE: Division by zero detected at Zeile 1174 Spalte 47. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=0 ICC_k=1 _NAME_=Erhatem _SOURCE_=Zuordnung _TYPE_=SS3 DF=0 SS=0 F=. PROB=. FIRST._NAME_=0 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=3 NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:150 1 bei 1174:26 1 bei 1174:206 1 bei 1174:27 1 bei 1174:127 1 bei 1174:216 1 bei 1174:78 1 bei 1174:163 1 bei 1174:9 1 bei 1174:102 NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:61 1 bei 1174:47 NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_02_RES has 1 observations and 27 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ICC_02_RES has 1 observations and 28 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The PROCEDURE PRINT printed page 18. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.09 seconds cpu time 0.09 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.SDC_01_MEAN has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.05 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_1 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_2 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_3 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_4 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_5 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_6 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_7 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_8 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.SDC_03_ZUS has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_1 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_1. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 2 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_2 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_2. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 3 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_3 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_3. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 4 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_4 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_4. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 5 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_5 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_5. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 6 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_6 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_6. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 7 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_7 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_7. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 8 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_8 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_8. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 9 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 9 observations read from the data set WORK.SDC_03_ZUS. NOTE: The data set WORK.SDC_04_RES has 8 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wsingle'; NOTE: The data set WORK.SDC_05_ICC_WSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wk'; NOTE: The data set WORK.SDC_05_ICC_WK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfsingle'; NOTE: The data set WORK.SDC_05_ICC_SFSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandom'; NOTE: The data set WORK.SDC_05_ICC_SFRANDOM has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixed'; NOTE: The data set WORK.SDC_05_ICC_SFFIXED has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfk'; NOTE: The data set WORK.SDC_05_ICC_SFK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandk'; NOTE: The data set WORK.SDC_05_ICC_SFRANDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixedk'; NOTE: The data set WORK.SDC_05_ICC_SFFIXEDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDOM. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXED. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXEDK. NOTE: The data set WORK.SDC_06_RES has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_01 has 30 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_02_BASUMM has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:174 1174:221 1174:28 NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 10 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:142 1174:193 1174:246 1174:39 NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:67 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_04_PLOT has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: PROZEDUR SGPLOT - (Gesamtverarbeitungszeit): real time 2.72 seconds cpu time 1.00 seconds WARNING: WIDTH exceeds available space for RTF(WEB) destination. Setting WIDTH=745.44px. WARNING: WIDTH exceeds available space for PDF(WEB) destination. Setting WIDTH=745.6px. NOTE: Listing image output written to /folders/myfolders/Rohdaten/LoA - Erhatem.png. NOTE: There were 30 observations read from the data set WORK.LOA_04_PLOT. NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: The data set WORK.LOA_05_VALUES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_06_NORMAL has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.03 seconds NOTE: The data set WORK.LOA_07_NORMAL has 1 observations and 47 variables. NOTE: The PROCEDURE UNIVARIATE printed pages 19-20. NOTE: Verwendet wurde: PROZEDUR UNIVARIATE - (Gesamtverarbeitungszeit): real time 1.96 seconds cpu time 0.61 seconds NOTE: There were 1 observations read from the data set WORK.LOA_05_VALUES. NOTE: The data set WORK.LOA_08_CONFI has 1 observations and 8 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.LOA_08_CONFI. NOTE: The data set WORK.LOA_09_RES has 1 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: The data set WORK.WIL_01_NPAR1WAY has 1 observations and 20 variables. NOTE: The PROCEDURE NPAR1WAY printed pages 21-22. NOTE: Verwendet wurde: PROZEDUR NPAR1WAY - (Gesamtverarbeitungszeit): real time 0.24 seconds cpu time 0.22 seconds NOTE: There were 1 observations read from the data set WORK.WIL_01_NPAR1WAY. NOTE: The data set WORK.WIL_02_RES has 1 observations and 21 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_02_RES. NOTE: The data set WORK.ZUS_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03_RES. NOTE: The data set WORK.ZUS_MEAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04_RES. NOTE: The data set WORK.ZUS_STD_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05_RES. NOTE: The data set WORK.ZUS_MEDIAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06_RES. NOTE: The data set WORK.ZUS_MIN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07_RES. NOTE: The data set WORK.ZUS_MAX_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.ZUS_RS has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ZUS_ICC has 1 observations and 11 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LOA_09_RES. NOTE: The data set WORK.ZUS_LOA has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_06_RES. NOTE: The data set WORK.ZUS_SDC has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.WIL_02_RES. NOTE: The data set WORK.ZUS_WIL has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN. NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_STD_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MEDIAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MIN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MAX_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_RS. NOTE: There were 1 observations read from the data set WORK.ZUS_ICC. NOTE: There were 1 observations read from the data set WORK.ZUS_LOA. NOTE: There were 1 observations read from the data set WORK.ZUS_SDC. NOTE: There were 1 observations read from the data set WORK.ZUS_WIL. NOTE: The data set WORK.ZUS_ALLES has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_ALLES. NOTE: The data set WORK.D001_ERHATEM has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Deleting WORK.ICC_01_STAT (memtype=DATA). NOTE: Deleting WORK.ICC_02_RES (memtype=DATA). NOTE: Deleting WORK.LOA_01 (memtype=DATA). NOTE: Deleting WORK.LOA_02_BASUMM (memtype=DATA). NOTE: Deleting WORK.LOA_03_MEAN (memtype=DATA). NOTE: Deleting WORK.LOA_04_PLOT (memtype=DATA). NOTE: Deleting WORK.LOA_05_VALUES (memtype=DATA). NOTE: Deleting WORK.LOA_06_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_07_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_08_CONFI (memtype=DATA). NOTE: Deleting WORK.LOA_09_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_01 (memtype=DATA). NOTE: Deleting WORK.MEAN_02_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_02 (memtype=DATA). NOTE: Deleting WORK.MEAN_03 (memtype=DATA). NOTE: Deleting WORK.MEAN_03_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_04 (memtype=DATA). NOTE: Deleting WORK.MEAN_04_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_05 (memtype=DATA). NOTE: Deleting WORK.MEAN_05_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_06 (memtype=DATA). NOTE: Deleting WORK.MEAN_06_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_07 (memtype=DATA). NOTE: Deleting WORK.MEAN_07_RES (memtype=DATA). NOTE: Deleting WORK.RS_01_RES (memtype=DATA). NOTE: Deleting WORK.SDC_01_MEAN (memtype=DATA). NOTE: Deleting WORK.SDC_02_1 (memtype=DATA). NOTE: Deleting WORK.SDC_02_2 (memtype=DATA). NOTE: Deleting WORK.SDC_02_3 (memtype=DATA). NOTE: Deleting WORK.SDC_02_4 (memtype=DATA). NOTE: Deleting WORK.SDC_02_5 (memtype=DATA). NOTE: Deleting WORK.SDC_02_6 (memtype=DATA). NOTE: Deleting WORK.SDC_02_7 (memtype=DATA). NOTE: Deleting WORK.SDC_02_8 (memtype=DATA). NOTE: Deleting WORK.SDC_03_ZUS (memtype=DATA). NOTE: Deleting WORK.SDC_04_RES (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXED (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXEDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDOM (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_06_RES (memtype=DATA). NOTE: Deleting WORK.WIL_01_NPAR1WAY (memtype=DATA). NOTE: Deleting WORK.WIL_02_RES (memtype=DATA). NOTE: Deleting WORK.ZUS_ALLES (memtype=DATA). NOTE: Deleting WORK.ZUS_ICC (memtype=DATA). NOTE: Deleting WORK.ZUS_LOA (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_STD_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MIN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MAX_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_RS (memtype=DATA). NOTE: Deleting WORK.ZUS_SDC (memtype=DATA). NOTE: Deleting WORK.ZUS_WIL (memtype=DATA). NOTE: Verwendet wurde: PROZEDUR DATASETS - (Gesamtverarbeitungszeit): real time 0.24 seconds cpu time 0.22 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds Erhpuls Erhpulsobs1 Erhpulsobs2 NOTE: Overwriting existing template/link: Styles.Mystyle_times NOTE: STYLE 'Styles.Mystyle_times' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Overwriting existing template/link: Styles.Mystyle_arial NOTE: STYLE 'Styles.Mystyle_arial' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_01 has 1 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_01. NOTE: The data set WORK.MEAN_02_RES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Input data set is already sorted, no sorting done. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_02 has 2 observations and 8 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_03 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_04 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_05 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.00 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_06 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_07 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03. NOTE: The data set WORK.MEAN_03_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04. NOTE: The data set WORK.MEAN_04_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05. NOTE: The data set WORK.MEAN_05_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06. NOTE: The data set WORK.MEAN_06_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07. NOTE: The data set WORK.MEAN_07_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: The PROCEDURE CORR printed page 23. NOTE: Verwendet wurde: PROZEDUR CORR - (Gesamtverarbeitungszeit): real time 0.15 seconds cpu time 0.13 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: The PROCEDURE GLM printed pages 24-25. NOTE: Verwendet wurde: PROZEDUR GLM - (Gesamtverarbeitungszeit): real time 0.31 seconds cpu time 0.28 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The PROCEDURE PRINT printed page 26. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.08 seconds cpu time 0.09 seconds NOTE: Division by zero detected at Zeile 1174 Spalte 61. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=. ICC_k=. _NAME_=Erhpuls _SOURCE_=ERROR _TYPE_=ERROR DF=0 SS=0 F=. PROB=. FIRST._NAME_=1 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=1 NOTE: Division by zero detected at Zeile 1174 Spalte 47. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=0 ICC_k=1 _NAME_=Erhpuls _SOURCE_=Zuordnung _TYPE_=SS3 DF=0 SS=0 F=. PROB=. FIRST._NAME_=0 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=3 NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:150 1 bei 1174:26 1 bei 1174:206 1 bei 1174:27 1 bei 1174:127 1 bei 1174:216 1 bei 1174:78 1 bei 1174:163 1 bei 1174:9 1 bei 1174:102 NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:61 1 bei 1174:47 NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_02_RES has 1 observations and 27 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ICC_02_RES has 1 observations and 28 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The PROCEDURE PRINT printed page 27. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.15 seconds cpu time 0.14 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.SDC_01_MEAN has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_1 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_2 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_3 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_4 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_5 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_6 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_7 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_8 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: The data set WORK.SDC_03_ZUS has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_1 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_1. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 2 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_2 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_2. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 3 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_3 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_3. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 4 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_4 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_4. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 5 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_5 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_5. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 6 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_6 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_6. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 7 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_7 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_7. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 8 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_8 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_8. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 9 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.SDC_03_ZUS. NOTE: The data set WORK.SDC_04_RES has 8 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wsingle'; NOTE: The data set WORK.SDC_05_ICC_WSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wk'; NOTE: The data set WORK.SDC_05_ICC_WK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfsingle'; NOTE: The data set WORK.SDC_05_ICC_SFSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandom'; NOTE: The data set WORK.SDC_05_ICC_SFRANDOM has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixed'; NOTE: The data set WORK.SDC_05_ICC_SFFIXED has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfk'; NOTE: The data set WORK.SDC_05_ICC_SFK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandk'; NOTE: The data set WORK.SDC_05_ICC_SFRANDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixedk'; NOTE: The data set WORK.SDC_05_ICC_SFFIXEDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDOM. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXED. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXEDK. NOTE: The data set WORK.SDC_06_RES has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_01 has 30 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_02_BASUMM has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:174 1174:221 1174:28 NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 10 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:142 1174:193 1174:246 1174:39 NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:67 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_04_PLOT has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: PROZEDUR SGPLOT - (Gesamtverarbeitungszeit): real time 1.95 seconds cpu time 0.87 seconds WARNING: WIDTH exceeds available space for RTF(WEB) destination. Setting WIDTH=745.44px. WARNING: WIDTH exceeds available space for PDF(WEB) destination. Setting WIDTH=745.6px. NOTE: Listing image output written to /folders/myfolders/Rohdaten/LoA - Erhpuls.png. NOTE: There were 30 observations read from the data set WORK.LOA_04_PLOT. NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: The data set WORK.LOA_05_VALUES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_06_NORMAL has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: The data set WORK.LOA_07_NORMAL has 1 observations and 47 variables. NOTE: The PROCEDURE UNIVARIATE printed pages 28-29. NOTE: Verwendet wurde: PROZEDUR UNIVARIATE - (Gesamtverarbeitungszeit): real time 1.53 seconds cpu time 0.74 seconds NOTE: There were 1 observations read from the data set WORK.LOA_05_VALUES. NOTE: The data set WORK.LOA_08_CONFI has 1 observations and 8 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LOA_08_CONFI. NOTE: The data set WORK.LOA_09_RES has 1 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: The data set WORK.WIL_01_NPAR1WAY has 1 observations and 20 variables. NOTE: The PROCEDURE NPAR1WAY printed pages 30-31. NOTE: Verwendet wurde: PROZEDUR NPAR1WAY - (Gesamtverarbeitungszeit): real time 0.26 seconds cpu time 0.25 seconds NOTE: There were 1 observations read from the data set WORK.WIL_01_NPAR1WAY. NOTE: The data set WORK.WIL_02_RES has 1 observations and 21 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_02_RES. NOTE: The data set WORK.ZUS_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03_RES. NOTE: The data set WORK.ZUS_MEAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04_RES. NOTE: The data set WORK.ZUS_STD_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05_RES. NOTE: The data set WORK.ZUS_MEDIAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06_RES. NOTE: The data set WORK.ZUS_MIN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07_RES. NOTE: The data set WORK.ZUS_MAX_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.ZUS_RS has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ZUS_ICC has 1 observations and 11 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LOA_09_RES. NOTE: The data set WORK.ZUS_LOA has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_06_RES. NOTE: The data set WORK.ZUS_SDC has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.WIL_02_RES. NOTE: The data set WORK.ZUS_WIL has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN. NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_STD_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MEDIAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MIN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MAX_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_RS. NOTE: There were 1 observations read from the data set WORK.ZUS_ICC. NOTE: There were 1 observations read from the data set WORK.ZUS_LOA. NOTE: There were 1 observations read from the data set WORK.ZUS_SDC. NOTE: There were 1 observations read from the data set WORK.ZUS_WIL. NOTE: The data set WORK.ZUS_ALLES has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_ALLES. NOTE: The data set WORK.D001_ERHPULS has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Deleting WORK.ICC_01_STAT (memtype=DATA). NOTE: Deleting WORK.ICC_02_RES (memtype=DATA). NOTE: Deleting WORK.LOA_01 (memtype=DATA). NOTE: Deleting WORK.LOA_02_BASUMM (memtype=DATA). NOTE: Deleting WORK.LOA_03_MEAN (memtype=DATA). NOTE: Deleting WORK.LOA_04_PLOT (memtype=DATA). NOTE: Deleting WORK.LOA_05_VALUES (memtype=DATA). NOTE: Deleting WORK.LOA_06_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_07_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_08_CONFI (memtype=DATA). NOTE: Deleting WORK.LOA_09_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_01 (memtype=DATA). NOTE: Deleting WORK.MEAN_02_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_02 (memtype=DATA). NOTE: Deleting WORK.MEAN_03 (memtype=DATA). NOTE: Deleting WORK.MEAN_03_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_04 (memtype=DATA). NOTE: Deleting WORK.MEAN_04_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_05 (memtype=DATA). NOTE: Deleting WORK.MEAN_05_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_06 (memtype=DATA). NOTE: Deleting WORK.MEAN_06_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_07 (memtype=DATA). NOTE: Deleting WORK.MEAN_07_RES (memtype=DATA). NOTE: Deleting WORK.RS_01_RES (memtype=DATA). NOTE: Deleting WORK.SDC_01_MEAN (memtype=DATA). NOTE: Deleting WORK.SDC_02_1 (memtype=DATA). NOTE: Deleting WORK.SDC_02_2 (memtype=DATA). NOTE: Deleting WORK.SDC_02_3 (memtype=DATA). NOTE: Deleting WORK.SDC_02_4 (memtype=DATA). NOTE: Deleting WORK.SDC_02_5 (memtype=DATA). NOTE: Deleting WORK.SDC_02_6 (memtype=DATA). NOTE: Deleting WORK.SDC_02_7 (memtype=DATA). NOTE: Deleting WORK.SDC_02_8 (memtype=DATA). NOTE: Deleting WORK.SDC_03_ZUS (memtype=DATA). NOTE: Deleting WORK.SDC_04_RES (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXED (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXEDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDOM (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_06_RES (memtype=DATA). NOTE: Deleting WORK.WIL_01_NPAR1WAY (memtype=DATA). NOTE: Deleting WORK.WIL_02_RES (memtype=DATA). NOTE: Deleting WORK.ZUS_ALLES (memtype=DATA). NOTE: Deleting WORK.ZUS_ICC (memtype=DATA). NOTE: Deleting WORK.ZUS_LOA (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_STD_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MIN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MAX_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_RS (memtype=DATA). NOTE: Deleting WORK.ZUS_SDC (memtype=DATA). NOTE: Deleting WORK.ZUS_WIL (memtype=DATA). NOTE: Verwendet wurde: PROZEDUR DATASETS - (Gesamtverarbeitungszeit): real time 0.15 seconds cpu time 0.15 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds Pulsnb Pulsnbobs1 Pulsnbobs2 NOTE: Overwriting existing template/link: Styles.Mystyle_times NOTE: STYLE 'Styles.Mystyle_times' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Overwriting existing template/link: Styles.Mystyle_arial NOTE: STYLE 'Styles.Mystyle_arial' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_01 has 1 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.04 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_01. NOTE: The data set WORK.MEAN_02_RES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Input data set is already sorted, no sorting done. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_02 has 2 observations and 8 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_03 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.03 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_04 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.03 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_05 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.04 seconds cpu time 0.05 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_06 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_07 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03. NOTE: The data set WORK.MEAN_03_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04. NOTE: The data set WORK.MEAN_04_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05. NOTE: The data set WORK.MEAN_05_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06. NOTE: The data set WORK.MEAN_06_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07. NOTE: The data set WORK.MEAN_07_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: The PROCEDURE CORR printed page 32. NOTE: Verwendet wurde: PROZEDUR CORR - (Gesamtverarbeitungszeit): real time 0.26 seconds cpu time 0.22 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: The PROCEDURE GLM printed pages 33-34. NOTE: Verwendet wurde: PROZEDUR GLM - (Gesamtverarbeitungszeit): real time 0.29 seconds cpu time 0.26 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The PROCEDURE PRINT printed page 35. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.08 seconds cpu time 0.08 seconds NOTE: Division by zero detected at Zeile 1174 Spalte 61. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=. ICC_k=. _NAME_=Pulsnb _SOURCE_=ERROR _TYPE_=ERROR DF=0 SS=0 F=. PROB=. FIRST._NAME_=1 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=1 NOTE: Division by zero detected at Zeile 1174 Spalte 47. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=0 ICC_k=1 _NAME_=Pulsnb _SOURCE_=Zuordnung _TYPE_=SS3 DF=0 SS=0 F=. PROB=. FIRST._NAME_=0 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=3 NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:150 1 bei 1174:26 1 bei 1174:206 1 bei 1174:27 1 bei 1174:127 1 bei 1174:216 1 bei 1174:78 1 bei 1174:163 1 bei 1174:9 1 bei 1174:102 NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:61 1 bei 1174:47 NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_02_RES has 1 observations and 27 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ICC_02_RES has 1 observations and 28 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The PROCEDURE PRINT printed page 36. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.12 seconds cpu time 0.13 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.SDC_01_MEAN has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_1 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_2 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_3 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_4 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_5 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_6 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_7 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_8 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.SDC_03_ZUS has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_1 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_1. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 2 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_2 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_2. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 3 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_3 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_3. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 4 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_4 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_4. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 5 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_5 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_5. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 6 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_6 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_6. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 7 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_7 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_7. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 8 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_8 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_8. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 9 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 9 observations read from the data set WORK.SDC_03_ZUS. NOTE: The data set WORK.SDC_04_RES has 8 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wsingle'; NOTE: The data set WORK.SDC_05_ICC_WSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wk'; NOTE: The data set WORK.SDC_05_ICC_WK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfsingle'; NOTE: The data set WORK.SDC_05_ICC_SFSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandom'; NOTE: The data set WORK.SDC_05_ICC_SFRANDOM has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixed'; NOTE: The data set WORK.SDC_05_ICC_SFFIXED has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfk'; NOTE: The data set WORK.SDC_05_ICC_SFK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandk'; NOTE: The data set WORK.SDC_05_ICC_SFRANDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixedk'; NOTE: The data set WORK.SDC_05_ICC_SFFIXEDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDOM. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXED. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXEDK. NOTE: The data set WORK.SDC_06_RES has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_01 has 30 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_02_BASUMM has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:174 1174:221 1174:28 NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 10 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:142 1174:193 1174:246 1174:39 NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:67 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_04_PLOT has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: PROZEDUR SGPLOT - (Gesamtverarbeitungszeit): real time 1.67 seconds cpu time 0.96 seconds WARNING: WIDTH exceeds available space for RTF(WEB) destination. Setting WIDTH=745.44px. WARNING: WIDTH exceeds available space for PDF(WEB) destination. Setting WIDTH=745.6px. NOTE: Listing image output written to /folders/myfolders/Rohdaten/LoA - Pulsnb.png. NOTE: There were 30 observations read from the data set WORK.LOA_04_PLOT. NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: The data set WORK.LOA_05_VALUES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_06_NORMAL has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: The data set WORK.LOA_07_NORMAL has 1 observations and 47 variables. NOTE: The PROCEDURE UNIVARIATE printed pages 37-38. NOTE: Verwendet wurde: PROZEDUR UNIVARIATE - (Gesamtverarbeitungszeit): real time 1.77 seconds cpu time 0.64 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.LOA_05_VALUES. NOTE: The data set WORK.LOA_08_CONFI has 1 observations and 8 variables. NOTE: There were 1 observations read from the data set WORK.LOA_08_CONFI. NOTE: The data set WORK.LOA_09_RES has 1 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.WIL_01_NPAR1WAY has 1 observations and 20 variables. NOTE: The PROCEDURE NPAR1WAY printed pages 39-40. NOTE: Verwendet wurde: PROZEDUR NPAR1WAY - (Gesamtverarbeitungszeit): real time 0.49 seconds cpu time 0.23 seconds NOTE: There were 1 observations read from the data set WORK.WIL_01_NPAR1WAY. NOTE: The data set WORK.WIL_02_RES has 1 observations and 21 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_02_RES. NOTE: The data set WORK.ZUS_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03_RES. NOTE: The data set WORK.ZUS_MEAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04_RES. NOTE: The data set WORK.ZUS_STD_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05_RES. NOTE: The data set WORK.ZUS_MEDIAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06_RES. NOTE: The data set WORK.ZUS_MIN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07_RES. NOTE: The data set WORK.ZUS_MAX_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.ZUS_RS has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ZUS_ICC has 1 observations and 11 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LOA_09_RES. NOTE: The data set WORK.ZUS_LOA has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_06_RES. NOTE: The data set WORK.ZUS_SDC has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.WIL_02_RES. NOTE: The data set WORK.ZUS_WIL has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN. NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_STD_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MEDIAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MIN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MAX_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_RS. NOTE: There were 1 observations read from the data set WORK.ZUS_ICC. NOTE: There were 1 observations read from the data set WORK.ZUS_LOA. NOTE: There were 1 observations read from the data set WORK.ZUS_SDC. NOTE: There were 1 observations read from the data set WORK.ZUS_WIL. NOTE: The data set WORK.ZUS_ALLES has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.07 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_ALLES. NOTE: The data set WORK.D001_PULSNB has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: Deleting WORK.ICC_01_STAT (memtype=DATA). NOTE: Deleting WORK.ICC_02_RES (memtype=DATA). NOTE: Deleting WORK.LOA_01 (memtype=DATA). NOTE: Deleting WORK.LOA_02_BASUMM (memtype=DATA). NOTE: Deleting WORK.LOA_03_MEAN (memtype=DATA). NOTE: Deleting WORK.LOA_04_PLOT (memtype=DATA). NOTE: Deleting WORK.LOA_05_VALUES (memtype=DATA). NOTE: Deleting WORK.LOA_06_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_07_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_08_CONFI (memtype=DATA). NOTE: Deleting WORK.LOA_09_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_01 (memtype=DATA). NOTE: Deleting WORK.MEAN_02_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_02 (memtype=DATA). NOTE: Deleting WORK.MEAN_03 (memtype=DATA). NOTE: Deleting WORK.MEAN_03_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_04 (memtype=DATA). NOTE: Deleting WORK.MEAN_04_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_05 (memtype=DATA). NOTE: Deleting WORK.MEAN_05_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_06 (memtype=DATA). NOTE: Deleting WORK.MEAN_06_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_07 (memtype=DATA). NOTE: Deleting WORK.MEAN_07_RES (memtype=DATA). NOTE: Deleting WORK.RS_01_RES (memtype=DATA). NOTE: Deleting WORK.SDC_01_MEAN (memtype=DATA). NOTE: Deleting WORK.SDC_02_1 (memtype=DATA). NOTE: Deleting WORK.SDC_02_2 (memtype=DATA). NOTE: Deleting WORK.SDC_02_3 (memtype=DATA). NOTE: Deleting WORK.SDC_02_4 (memtype=DATA). NOTE: Deleting WORK.SDC_02_5 (memtype=DATA). NOTE: Deleting WORK.SDC_02_6 (memtype=DATA). NOTE: Deleting WORK.SDC_02_7 (memtype=DATA). NOTE: Deleting WORK.SDC_02_8 (memtype=DATA). NOTE: Deleting WORK.SDC_03_ZUS (memtype=DATA). NOTE: Deleting WORK.SDC_04_RES (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXED (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXEDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDOM (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_06_RES (memtype=DATA). NOTE: Deleting WORK.WIL_01_NPAR1WAY (memtype=DATA). NOTE: Deleting WORK.WIL_02_RES (memtype=DATA). NOTE: Deleting WORK.ZUS_ALLES (memtype=DATA). NOTE: Deleting WORK.ZUS_ICC (memtype=DATA). NOTE: Deleting WORK.ZUS_LOA (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_STD_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MIN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MAX_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_RS (memtype=DATA). NOTE: Deleting WORK.ZUS_SDC (memtype=DATA). NOTE: Deleting WORK.ZUS_WIL (memtype=DATA). NOTE: Verwendet wurde: PROZEDUR DATASETS - (Gesamtverarbeitungszeit): real time 0.18 seconds cpu time 0.17 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds Pulsvb Pulsvbobs1 Pulsvbobs2 NOTE: Overwriting existing template/link: Styles.Mystyle_times NOTE: STYLE 'Styles.Mystyle_times' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Overwriting existing template/link: Styles.Mystyle_arial NOTE: STYLE 'Styles.Mystyle_arial' has been saved to: WORK.TEMPLAT NOTE: Verwendet wurde: PROZEDUR TEMPLATE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_01 has 1 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.06 seconds cpu time 0.04 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_01. NOTE: The data set WORK.MEAN_02_RES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.03 seconds NOTE: Input data set is already sorted, no sorting done. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 60 observations read from the data set WORK.A001_UNTER. NOTE: The data set WORK.MEAN_02 has 2 observations and 8 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.03 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_03 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_04 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_05 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_06 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 2 observations read from the data set WORK.MEAN_02. NOTE: The data set WORK.MEAN_07 has 1 observations and 3 variables. NOTE: Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03. NOTE: The data set WORK.MEAN_03_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04. NOTE: The data set WORK.MEAN_04_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05. NOTE: The data set WORK.MEAN_05_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06. NOTE: The data set WORK.MEAN_06_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07. NOTE: The data set WORK.MEAN_07_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: The PROCEDURE CORR printed page 41. NOTE: Verwendet wurde: PROZEDUR CORR - (Gesamtverarbeitungszeit): real time 0.13 seconds cpu time 0.10 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.RS_01_RES has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: The PROCEDURE GLM printed pages 42-43. NOTE: Verwendet wurde: PROZEDUR GLM - (Gesamtverarbeitungszeit): real time 0.45 seconds cpu time 0.40 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_01_STAT has 5 observations and 7 variables. NOTE: Verwendet wurde: PROZEDUR SORT - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The PROCEDURE PRINT printed page 44. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.10 seconds cpu time 0.10 seconds NOTE: Division by zero detected at Zeile 1174 Spalte 61. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=. ICC_k=. _NAME_=Pulsvb _SOURCE_=ERROR _TYPE_=ERROR DF=0 SS=0 F=. PROB=. FIRST._NAME_=1 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=1 NOTE: Division by zero detected at Zeile 1174 Spalte 47. ICC_msw=. ICC_msb=. ICC_wms=. ICC_ems=. ICC_edf=0 ICC_bms=. ICC_bdf=. ICC_jms=. ICC_jdf=0 ICC_k=1 _NAME_=Pulsvb _SOURCE_=Zuordnung _TYPE_=SS3 DF=0 SS=0 F=. PROB=. FIRST._NAME_=0 LAST._NAME_=0 ICC_n=. ICC_theta=. ICC_wsingle=. ICC_wk=. ICC_sfsingle=. ICC_sfrandom=. ICC_sffixed=. ICC_sfk=. ICC_sfrandk=. ICC_sffixedk=. _ERROR_=1 _N_=3 NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:150 1 bei 1174:26 1 bei 1174:206 1 bei 1174:27 1 bei 1174:127 1 bei 1174:216 1 bei 1174:78 1 bei 1174:163 1 bei 1174:9 1 bei 1174:102 NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:61 1 bei 1174:47 NOTE: There were 5 observations read from the data set WORK.ICC_01_STAT. NOTE: The data set WORK.ICC_02_RES has 1 observations and 27 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ICC_02_RES has 1 observations and 28 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The PROCEDURE PRINT printed page 45. NOTE: Verwendet wurde: PROZEDUR PRINT - (Gesamtverarbeitungszeit): real time 0.12 seconds cpu time 0.11 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.SDC_01_MEAN has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.03 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_1 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_2 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_3 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_4 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.04 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_5 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.07 seconds cpu time 0.03 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_6 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_7 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:1 NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 1 bei 1174:67 1 bei 1174:69 1 bei 1174:76 1 bei 1174:158 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: The data set WORK.SDC_02_8 has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: The data set WORK.SDC_03_ZUS has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_1 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_1. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 2 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_2 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_2. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 3 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_3 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_3. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 4 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Appending WORK.SDC_02_4 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_4. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 5 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_5 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_5. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 6 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_6 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_6. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 7 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Appending WORK.SDC_02_7 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_7. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 8 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Appending WORK.SDC_02_8 zu WORK.SDC_03_ZUS. NOTE: There were 1 observations read from the data set WORK.SDC_02_8. NOTE: 1 observations added. NOTE: The data set WORK.SDC_03_ZUS has 9 observations and 9 variables. NOTE: Verwendet wurde: PROZEDUR APPEND - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 9 observations read from the data set WORK.SDC_03_ZUS. NOTE: The data set WORK.SDC_04_RES has 8 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wsingle'; NOTE: The data set WORK.SDC_05_ICC_WSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.04 seconds cpu time 0.03 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_wk'; NOTE: The data set WORK.SDC_05_ICC_WK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfsingle'; NOTE: The data set WORK.SDC_05_ICC_SFSINGLE has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.03 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandom'; NOTE: The data set WORK.SDC_05_ICC_SFRANDOM has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixed'; NOTE: The data set WORK.SDC_05_ICC_SFFIXED has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfk'; NOTE: The data set WORK.SDC_05_ICC_SFK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sfrandk'; NOTE: The data set WORK.SDC_05_ICC_SFRANDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_04_RES. WHERE SDC_ICC_kind='ICC_sffixedk'; NOTE: The data set WORK.SDC_05_ICC_SFFIXEDK has 1 observations and 2 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_WK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFSINGLE. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDOM. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXED. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFRANDK. NOTE: There were 1 observations read from the data set WORK.SDC_05_ICC_SFFIXEDK. NOTE: The data set WORK.SDC_06_RES has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.05 seconds cpu time 0.02 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_01 has 30 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_02_BASUMM has 1 observations and 4 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:174 1174:221 1174:28 NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 30 observations read from the data set WORK.A001_NEBEN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: PROZEDUR MEANS - (Gesamtverarbeitungszeit): real time 0.02 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: The data set WORK.LOA_03_MEAN has 1 observations and 10 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:142 1174:193 1174:246 1174:39 NOTE: There were 1 observations read from the data set WORK.LOA_03_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column). 1174:67 NOTE: There were 1 observations read from the data set WORK.SDC_01_MEAN. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_04_PLOT has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: Verwendet wurde: PROZEDUR SGPLOT - (Gesamtverarbeitungszeit): real time 1.70 seconds cpu time 0.89 seconds WARNING: WIDTH exceeds available space for RTF(WEB) destination. Setting WIDTH=745.44px. WARNING: WIDTH exceeds available space for PDF(WEB) destination. Setting WIDTH=745.6px. NOTE: Listing image output written to /folders/myfolders/Rohdaten/LoA - Pulsvb.png. NOTE: There were 30 observations read from the data set WORK.LOA_04_PLOT. NOTE: There were 1 observations read from the data set WORK.LOA_02_BASUMM. NOTE: The data set WORK.LOA_05_VALUES has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 30 observations read from the data set WORK.LOA_01. NOTE: The data set WORK.LOA_06_NORMAL has 30 observations and 16 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: The data set WORK.LOA_07_NORMAL has 1 observations and 47 variables. NOTE: The PROCEDURE UNIVARIATE printed pages 46-47. NOTE: Verwendet wurde: PROZEDUR UNIVARIATE - (Gesamtverarbeitungszeit): real time 1.38 seconds cpu time 0.75 seconds NOTE: There were 1 observations read from the data set WORK.LOA_05_VALUES. NOTE: The data set WORK.LOA_08_CONFI has 1 observations and 8 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LOA_08_CONFI. NOTE: The data set WORK.LOA_09_RES has 1 observations and 15 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: The data set WORK.WIL_01_NPAR1WAY has 1 observations and 20 variables. NOTE: The PROCEDURE NPAR1WAY printed pages 48-49. NOTE: Verwendet wurde: PROZEDUR NPAR1WAY - (Gesamtverarbeitungszeit): real time 0.28 seconds cpu time 0.27 seconds NOTE: There were 1 observations read from the data set WORK.WIL_01_NPAR1WAY. NOTE: The data set WORK.WIL_02_RES has 1 observations and 21 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_02_RES. NOTE: The data set WORK.ZUS_MEAN has 1 observations and 6 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_03_RES. NOTE: The data set WORK.ZUS_MEAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_04_RES. NOTE: The data set WORK.ZUS_STD_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_05_RES. NOTE: The data set WORK.ZUS_MEDIAN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_06_RES. NOTE: The data set WORK.ZUS_MIN_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.MEAN_07_RES. NOTE: The data set WORK.ZUS_MAX_RATER has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.RS_01_RES. NOTE: The data set WORK.ZUS_RS has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.02 seconds NOTE: There were 1 observations read from the data set WORK.ICC_02_RES. NOTE: The data set WORK.ZUS_ICC has 1 observations and 11 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: There were 1 observations read from the data set WORK.LOA_09_RES. NOTE: The data set WORK.ZUS_LOA has 1 observations and 3 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.SDC_06_RES. NOTE: The data set WORK.ZUS_SDC has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.WIL_02_RES. NOTE: The data set WORK.ZUS_WIL has 1 observations and 9 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.01 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN. NOTE: There were 1 observations read from the data set WORK.ZUS_MEAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_STD_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MEDIAN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MIN_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_MAX_RATER. NOTE: There were 1 observations read from the data set WORK.ZUS_RS. NOTE: There were 1 observations read from the data set WORK.ZUS_ICC. NOTE: There were 1 observations read from the data set WORK.ZUS_LOA. NOTE: There were 1 observations read from the data set WORK.ZUS_SDC. NOTE: There were 1 observations read from the data set WORK.ZUS_WIL. NOTE: The data set WORK.ZUS_ALLES has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.03 seconds cpu time 0.03 seconds NOTE: There were 1 observations read from the data set WORK.ZUS_ALLES. NOTE: The data set WORK.D001_PULSVB has 1 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.00 seconds cpu time 0.00 seconds NOTE: Deleting WORK.ICC_01_STAT (memtype=DATA). NOTE: Deleting WORK.ICC_02_RES (memtype=DATA). NOTE: Deleting WORK.LOA_01 (memtype=DATA). NOTE: Deleting WORK.LOA_02_BASUMM (memtype=DATA). NOTE: Deleting WORK.LOA_03_MEAN (memtype=DATA). NOTE: Deleting WORK.LOA_04_PLOT (memtype=DATA). NOTE: Deleting WORK.LOA_05_VALUES (memtype=DATA). NOTE: Deleting WORK.LOA_06_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_07_NORMAL (memtype=DATA). NOTE: Deleting WORK.LOA_08_CONFI (memtype=DATA). NOTE: Deleting WORK.LOA_09_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_01 (memtype=DATA). NOTE: Deleting WORK.MEAN_02_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_02 (memtype=DATA). NOTE: Deleting WORK.MEAN_03 (memtype=DATA). NOTE: Deleting WORK.MEAN_03_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_04 (memtype=DATA). NOTE: Deleting WORK.MEAN_04_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_05 (memtype=DATA). NOTE: Deleting WORK.MEAN_05_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_06 (memtype=DATA). NOTE: Deleting WORK.MEAN_06_RES (memtype=DATA). NOTE: Deleting WORK.MEAN_07 (memtype=DATA). NOTE: Deleting WORK.MEAN_07_RES (memtype=DATA). NOTE: Deleting WORK.RS_01_RES (memtype=DATA). NOTE: Deleting WORK.SDC_01_MEAN (memtype=DATA). NOTE: Deleting WORK.SDC_02_1 (memtype=DATA). NOTE: Deleting WORK.SDC_02_2 (memtype=DATA). NOTE: Deleting WORK.SDC_02_3 (memtype=DATA). NOTE: Deleting WORK.SDC_02_4 (memtype=DATA). NOTE: Deleting WORK.SDC_02_5 (memtype=DATA). NOTE: Deleting WORK.SDC_02_6 (memtype=DATA). NOTE: Deleting WORK.SDC_02_7 (memtype=DATA). NOTE: Deleting WORK.SDC_02_8 (memtype=DATA). NOTE: Deleting WORK.SDC_03_ZUS (memtype=DATA). NOTE: Deleting WORK.SDC_04_RES (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXED (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFFIXEDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFRANDOM (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_SFSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WK (memtype=DATA). NOTE: Deleting WORK.SDC_05_ICC_WSINGLE (memtype=DATA). NOTE: Deleting WORK.SDC_06_RES (memtype=DATA). NOTE: Deleting WORK.WIL_01_NPAR1WAY (memtype=DATA). NOTE: Deleting WORK.WIL_02_RES (memtype=DATA). NOTE: Deleting WORK.ZUS_ALLES (memtype=DATA). NOTE: Deleting WORK.ZUS_ICC (memtype=DATA). NOTE: Deleting WORK.ZUS_LOA (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN (memtype=DATA). NOTE: Deleting WORK.ZUS_MEAN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_STD_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MIN_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_MAX_RATER (memtype=DATA). NOTE: Deleting WORK.ZUS_RS (memtype=DATA). NOTE: Deleting WORK.ZUS_SDC (memtype=DATA). NOTE: Deleting WORK.ZUS_WIL (memtype=DATA). NOTE: Verwendet wurde: PROZEDUR DATASETS - (Gesamtverarbeitungszeit): real time 0.19 seconds cpu time 0.15 seconds NOTE: There were 1 observations read from the data set WORK.D001_ATEMNB. NOTE: There were 1 observations read from the data set WORK.D001_ATEMVB. NOTE: There were 1 observations read from the data set WORK.D001_ERHATEM. NOTE: There were 1 observations read from the data set WORK.D001_ERHPULS. NOTE: There were 1 observations read from the data set WORK.D001_PULSNB. NOTE: There were 1 observations read from the data set WORK.D001_PULSVB. NOTE: The data set WORK.UEB_04_ZUS_1 has 6 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds NOTE: There were 6 observations read from the data set WORK.UEB_04_ZUS_1. NOTE: The data set WORK.UEB_05_ZUS has 6 observations and 46 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.02 seconds NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 6 bei 1174:29 6 bei 1174:75 6 bei 1174:121 6 bei 1174:171 NOTE: There were 6 observations read from the data set WORK.UEB_05_ZUS. NOTE: The data set WORK.D002_ALLES has 6 observations and 65 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.05 seconds cpu time 0.02 seconds NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to WORK.PARMS.PARMS.SLIST. 1175 /********************************************************************** 1176 * PRODUCT: SAS 1177 * VERSION: 9.4 1178 * CREATOR: External File Interface 1179 * DATE: 08MAR21 1180 * DESC: Generated SAS Datastep Code 1181 * TEMPLATE SOURCE: (None Specified.) 1182 ***********************************************************************/ 1183 data _null_; 1184 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */ 1185 %let _EFIREC_ = 0; /* clear export record count macro variable */ 1186 file '/folders/myfolders/Rohdaten\Output_video1.csv' delimiter=',' DSD DROPOVER lrecl=32767; 1187 if _n_ = 1 then /* write column names or labels */ 1188 do; 1189 put 1190 "param" 1191 ',' 1192 "MEAN" 1193 ',' 1194 "STD" 1195 ',' 1196 "MEDIAN" 1197 ',' 1198 "MIN" 1199 ',' 1200 "MAX" 1201 ',' 1202 "Mean_Rater_1" 1203 ',' 1204 "Mean_Rater_2" 1205 ',' 1206 "Std_Rater_1" 1207 ',' 1208 "Std_Rater_2" 1209 ',' 1210 "Median_Rater_1" 1211 ',' 1212 "Median_Rater_2" 1213 ',' 1214 "Min_Rater_1" 1215 ',' 1216 "Min_Rater_2" 1217 ',' 1218 "Max_Rater_1" 1219 ',' 1220 "Max_Rater_2" 1221 ',' 1222 "RS" 1223 ',' 1224 "RS_p" 1225 ',' 1226 "ICC_p_model" 1227 ',' 1228 "n" 1229 ',' 1230 "ICC_wsingle" 1231 ',' 1232 "ICC_wk" 1233 ',' 1234 "ICC_sfsingle" 1235 ',' 1236 "ICC_sfrandom" 1237 ',' 1238 "ICC_sffixed" 1239 ',' 1240 "ICC_sfk" 1241 ',' 1242 "ICC_sfrandk" 1243 ',' 1244 "ICC_sffixedk" 1245 ',' 1246 "LOA_lower" 1247 ',' 1248 "LOA_upper" 1249 ',' 1250 "SDC_ICC_wsingle" 1251 ',' 1252 "SDC_ICC_wk" 1253 ',' 1254 "SDC_ICC_sfsingle" 1255 ',' 1256 "SDC_ICC_sfrandom" 1257 ',' 1258 "SDC_ICC_sffixed" 1259 ',' 1260 "SDC_ICC_sfk" 1261 ',' 1262 "SDC_ICC_sfrandk" 1263 ',' 1264 "SDC_ICC_sffixedk" 1265 ',' 1266 "WIL_Z_wert" 1267 ',' 1268 "WIL_Z_p_one_sided" 1269 ',' 1270 "WIL_Z_p_two_sided" 1271 ',' 1272 "WIL_t_p_one_sided" 1273 ',' 1274 "WIL_t_p_two_sided" 1275 ',' 1276 "KW_chi_square" 1277 ',' 1278 "KW_df" 1279 ',' 1280 "KW_p" 1281 ',' 1282 "tab_mean_std" 1283 ',' 1284 "tab_min" 1285 ',' 1286 "tab_max" 1287 ',' 1288 "tab_rs" 1289 ',' 1290 "tab_rs_p_value" 1291 ',' 1292 "tab_icc_sfrandom" 1293 ',' 1294 "tab_icc_sffixed" 1295 ',' 1296 "tab_sdc_sfrandom" 1297 ',' 1298 "tab_sdc_sffixed" 1299 ',' 1300 "tab_loa" 1301 ',' 1302 "prevalence" 1303 ',' 1304 "guete_RS" 1305 ',' 1306 "guete_ICC_sfrandom" 1307 ',' 1308 "guete_ICC_sffixed" 1309 ',' 1310 "guete_SDC_sfrandom" 1311 ',' 1312 "guete_SDC_sffixed" 1313 ',' 1314 "guete_LOA" 1315 ',' 1316 "guete_4_sfrandom" 1317 ',' 1318 "guete_4_sffixed" 1319 ; 1320 end; 1321 set D002_ALLES end=EFIEOD; 1322 format param $50. ; 1323 format MEAN best12. ; 1324 format STD best12. ; 1325 format MEDIAN best12. ; 1326 format MIN best12. ; 1327 format MAX best12. ; 1328 format Mean_Rater_1 best12. ; 1329 format Mean_Rater_2 best12. ; 1330 format Std_Rater_1 best12. ; 1331 format Std_Rater_2 best12. ; 1332 format Median_Rater_1 best12. ; 1333 format Median_Rater_2 best12. ; 1334 format Min_Rater_1 best12. ; 1335 format Min_Rater_2 best12. ; 1336 format Max_Rater_1 best12. ; 1337 format Max_Rater_2 best12. ; 1338 format RS 8.5 ; 1339 format RS_p pvalue8.4 ; 1340 format ICC_p_model best12. ; 1341 format n best12. ; 1342 format ICC_wsingle best12. ; 1343 format ICC_wk best12. ; 1344 format ICC_sfsingle best12. ; 1345 format ICC_sfrandom best12. ; 1346 format ICC_sffixed best12. ; 1347 format ICC_sfk best12. ; 1348 format ICC_sfrandk best12. ; 1349 format ICC_sffixedk best12. ; 1350 format LOA_lower best12. ; 1351 format LOA_upper best12. ; 1352 format SDC_ICC_wsingle best12. ; 1353 format SDC_ICC_wk best12. ; 1354 format SDC_ICC_sfsingle best12. ; 1355 format SDC_ICC_sfrandom best12. ; 1356 format SDC_ICC_sffixed best12. ; 1357 format SDC_ICC_sfk best12. ; 1358 format SDC_ICC_sfrandk best12. ; 1359 format SDC_ICC_sffixedk best12. ; 1360 format WIL_Z_wert best12. ; 1361 format WIL_Z_p_one_sided best12. ; 1362 format WIL_Z_p_two_sided best12. ; 1363 format WIL_t_p_one_sided best12. ; 1364 format WIL_t_p_two_sided best12. ; 1365 format KW_chi_square best12. ; 1366 format KW_df best12. ; 1367 format KW_p best12. ; 1368 format tab_mean_std $200. ; 1369 format tab_min best12. ; 1370 format tab_max best12. ; 1371 format tab_rs best12. ; 1372 format tab_rs_p_value $200. ; 1373 format tab_icc_sfrandom best12. ; 1374 format tab_icc_sffixed best12. ; 1375 format tab_sdc_sfrandom best12. ; 1376 format tab_sdc_sffixed best12. ; 1377 format tab_loa $200. ; 1378 format prevalence best12. ; 1379 format guete_RS best12. ; 1380 format guete_ICC_sfrandom best12. ; 1381 format guete_ICC_sffixed best12. ; 1382 format guete_SDC_sfrandom best12. ; 1383 format guete_SDC_sffixed best12. ; 1384 format guete_LOA best12. ; 1385 format guete_4_sfrandom best12. ; 1386 format guete_4_sffixed best12. ; 1387 do; 1388 EFIOUT + 1; 1389 put param $ @; 1390 put MEAN @; 1391 put STD @; 1392 put MEDIAN @; 1393 put MIN @; 1394 put MAX @; 1395 put Mean_Rater_1 @; 1396 put Mean_Rater_2 @; 1397 put Std_Rater_1 @; 1398 put Std_Rater_2 @; 1399 put Median_Rater_1 @; 1400 put Median_Rater_2 @; 1401 put Min_Rater_1 @; 1402 put Min_Rater_2 @; 1403 put Max_Rater_1 @; 1404 put Max_Rater_2 @; 1405 put RS @; 1406 put RS_p @; 1407 put ICC_p_model @; 1408 put n @; 1409 put ICC_wsingle @; 1410 put ICC_wk @; 1411 put ICC_sfsingle @; 1412 put ICC_sfrandom @; 1413 put ICC_sffixed @; 1414 put ICC_sfk @; 1415 put ICC_sfrandk @; 1416 put ICC_sffixedk @; 1417 put LOA_lower @; 1418 put LOA_upper @; 1419 put SDC_ICC_wsingle @; 1420 put SDC_ICC_wk @; 1421 put SDC_ICC_sfsingle @; 1422 put SDC_ICC_sfrandom @; 1423 put SDC_ICC_sffixed @; 1424 put SDC_ICC_sfk @; 1425 put SDC_ICC_sfrandk @; 1426 put SDC_ICC_sffixedk @; 1427 put WIL_Z_wert @; 1428 put WIL_Z_p_one_sided @; 1429 put WIL_Z_p_two_sided @; 1430 put WIL_t_p_one_sided @; 1431 put WIL_t_p_two_sided @; 1432 put KW_chi_square @; 1433 put KW_df @; 1434 put KW_p @; 1435 put tab_mean_std $ @; 1436 put tab_min @; 1437 put tab_max @; 1438 put tab_rs @; 1439 put tab_rs_p_value $ @; 1440 put tab_icc_sfrandom @; 1441 put tab_icc_sffixed @; 1442 put tab_sdc_sfrandom @; 1443 put tab_sdc_sffixed @; 1444 put tab_loa $ @; 1445 put prevalence @; 1446 put guete_RS @; 1447 put guete_ICC_sfrandom @; 1448 put guete_ICC_sffixed @; 1449 put guete_SDC_sfrandom @; 1450 put guete_SDC_sffixed @; 1451 put guete_LOA @; 1452 put guete_4_sfrandom @; 1453 put guete_4_sffixed ; 1454 ; 1455 end; 1456 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */ 1457 if EFIEOD then call symputx('_EFIREC_',EFIOUT); 1458 run; NOTE: The file '/folders/myfolders/Rohdaten\Output_video1.csv' is: Dateiname=/folders/myfolders/Rohdaten\Output_video1.csv, Besitzername=root,Gruppenname=vboxsf, Zugriffsberechtigung=-rwxrwx---, Zuletzt geändert=08. März 2021 09.30 Uhr NOTE: 7 records were written to the file '/folders/myfolders/Rohdaten\Output_video1.csv'. The minimum record length was 293. The maximum record length was 781. NOTE: There were 6 observations read from the data set WORK.D002_ALLES. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.06 seconds cpu time 0.03 seconds 6 records created in /folders/myfolders/Rohdaten\Output_video1.csv from D002_ALLES. NOTE: "/folders/myfolders/Rohdaten\Output_video1.csv" file was successfully created. NOTE: Verwendet wurde: PROZEDUR EXPORT - (Gesamtverarbeitungszeit): real time 1.61 seconds cpu time 0.45 seconds NOTE: There were 6 observations read from the data set WORK.D002_ALLES. NOTE: The data set BIB.OUTPUT_VIDEOPERC1 has 6 observations and 65 variables. NOTE: Verwendet wurde: DATA statement - (Gesamtverarbeitungszeit): real time 0.12 seconds cpu time 0.03 seconds NOTE: Deleting WORK.UEB_01_VAR (memtype=DATA). NOTE: Deleting WORK.UEB_02_MEANS (memtype=DATA). NOTE: Deleting WORK.UEB_05_ZUS (memtype=DATA). NOTE: Deleting WORK.UEB_03_VAR_1 (memtype=DATA). NOTE: Deleting WORK.UEB_04_ZUS_1 (memtype=DATA). NOTE: Verwendet wurde: PROZEDUR DATASETS - (Gesamtverarbeitungszeit): real time 0.01 seconds cpu time 0.01 seconds 1459 ; 1460 1461 1462 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 1474
Just the log line 1174 would have done it.
So your issue is buried in a macro, which means you violated rule #1 for macro development: Start with Working Non-Macro Code.
Take the code out of the macro.
Instead of the %MACRO statement, insert a block where you set all the parameters with %LET.
Run the code step by step, and fix each individual issue as it arises.
Then do a final check by running the code as a whole.
Once that is done, re-insert the fixed code (minus the %LETs) in the macro.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.