[R] Generate a sequence of random integer values
Brian Davenhall
bdavenhall at sbcglobal.net
Fri May 28 02:54:24 CEST 2004
I'm trying to generate a sequence of random integer values. I've tried to
combine the random (r) and the sequence (seq) functions but this approach
does not work. For example, if I use the following command:
> a <- seq(1:100)
> a
[1] 1 2 3 4 5 6 7 8 9 etc.
This is a good start, but what I really want is something that would look
like this instead
[1] 3 96 45 67 8 24 99 63 8, etc.
where the integer numbers between 1 and 100 are randomly chosen.
Any help would be great, I've found workarounds in other stat packages, but
would prefer to do this in R.
More information about the R-help
mailing list