The following SAS program is submitted:
data one;
do i = 1 to 10;
ptobs = ceil(ranuni(0) * totobs);
set temp point = ptobs
nobs = totobs;
output;
end;
stop;
run;
The SAS data set TEMP contains 2,500,000 observations. Which one of the following represents the possible values for PTOBS?
- any integer between 1 and 10
- any real number between 0 and 1
- any integer between 1 and 2,500,000
- any real number between 1 and 2,500,000
Reveal Solution Next Question