data huge;
array x(10);
do i=1 to 100000;
do j=1 to 10;
x(j)=normal(0);
end;
output;
end;
drop i j;
run;
*数据集 WORK.HUGE 有 100000 个观测和 10 个变量;
data huge1;
array x(10);
do i=1 to 100000;
do j=1 to 10;
x(j)=normal(0);
output;
end;
end;
drop i j;
run;
*数据集 WORK.HUGE1 有 1000000 个观测和 10 个变量,并且前10个观测对角线的上面部分是缺失值,这是为什么?;
高手解释一下这两个程序结果不同的根源,说说其中的原理,谢谢!!!