본문내용
4.6
<데이터문>
data sas;
do id=1 to 8;
input methodA methodB;
output;
end;
cards;
3.8 3.9
3.4 3.9
3.2 4.3
4.0 3.7
3.8 4.5
4.1 4.9
2.9 4.3
5.0 5.1
;
run;
PROC PRINT;
RUN;
data a;
do id=1 to 8;
do method = \'A\', \'B\';
input x;
output;
end;
end;
cards;
3.8
3.9
3.4
3.9
3.2
4.3
4.0
3.7
3.8
4.5
4.1
4.9
2.9
4.3
5.0
5.1
;
run;
PROC PRINT;
RUN;
<데이터문>
data sas;
do id=1 to 8;
input methodA methodB;
output;
end;
cards;
3.8 3.9
3.4 3.9
3.2 4.3
4.0 3.7
3.8 4.5
4.1 4.9
2.9 4.3
5.0 5.1
;
run;
PROC PRINT;
RUN;
data a;
do id=1 to 8;
do method = \'A\', \'B\';
input x;
output;
end;
end;
cards;
3.8
3.9
3.4
3.9
3.2
4.3
4.0
3.7
3.8
4.5
4.1
4.9
2.9
4.3
5.0
5.1
;
run;
PROC PRINT;
RUN;
소개글