Peter Dalgaard writes:
> Patrick Burns <[EMAIL PROTECTED]> writes:
>
> whereas you could quite conceivably do it in R. (What *is* the
> equivalent of rnorm(25) in those languages, actually?)
>
In SAS, it would go along the lines of:
data randvec(drop=seed);
seed = 459437845;
do obs = 1 to 25;
x = rannor(seed);
output;
end;
run;
--
"Though this be randomness, yet there is structure in't."
Rosa, F.H.F.P
Instituto de Matemática e Estatística
Universidade de São Paulo
Fernando Henrique Ferraz P. da Rosa
http://www.feferraz.net
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html