Using R (maybe runif() or sample()? ), how can one produce a set of integer random values? Lets say 100 random values from 0 - 100, but the values shou
runif()
sample()
One could select numbers uniformly from 0...10 and then multiply by 10. Sample code:
q <- 10*sample(seq(0,10), 1000, replace=TRUE)