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
sample will allow you to do the sampling easily. If we create a vector of the values we want it should be easy enough. seq(0,100,by=10) will allow us to construct a sequence starting at 0, ending at 100, by 10.