How to produce random integer numbers from 0 - 100 but by 10s only?

后端 未结 2 869
说谎
说谎 2021-01-21 18:33

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

相关标签:
2条回答
  • 2021-01-21 19:02

    One could select numbers uniformly from 0...10 and then multiply by 10. Sample code:

    q <- 10*sample(seq(0,10), 1000, replace=TRUE)
    
    0 讨论(0)
  • 2021-01-21 19:07

    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.

    sample(seq(0,100,by=10), 100, replace = TRUE)
    
    0 讨论(0)
提交回复
热议问题