[R] Simulation from discrete uniform

Mehmet Suzen msuzen at mango-solutions.com
Wed Oct 26 10:19:22 CEST 2011


Why don't you use sample;
> sample(1:10,10,replace=TRUE)


-----Original Message-----
From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org]
On Behalf Of BSanders
Sent: 26 October 2011 08:49
To: r-help at r-project.org
Subject: Re: [R] Simulation from discrete uniform

If you wanted a discrete uniform from 1-10 use: ceiling(10*runif(1))
if you wanted from 0-12, use: ceiling(13*runif(1))-1

--
View this message in context:
http://r.789695.n4.nabble.com/Simulation-from-discrete-uniform-tp3434980
p3939694.html
Sent from the R help mailing list archive at Nabble.com.

______________________________________________
R-help at r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide
http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
LEGAL NOTICE
This message is intended for the use o...{{dropped:10}}



More information about the R-help mailing list