Hi, I would obtain a random value between two (for example between 40.15 and 56.58 I would have only one value). I'm looking for a package/a function which could do this. Could anybody help me please? Cordialement Damien Landais
sample(c("a","b"))[1] -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of damien landais Sent: Thursday, August 06, 2009 11:02 AM To: R-help at r-project.org Subject: [R] random between two values Hi, I would obtain a random value between two (for example between 40.15 and 56.58 I would have only one value). I'm looking for a package/a function which could do this. Could anybody help me please? Cordialement Damien Landais ______________________________________________ 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.
That's pretty straightforward to do - here's a simple function. The exact behavior at the "edges" is left as an exercise. :) rbound <- function(rmin, rmax) { x <- runif(1) x <- x * (rmax - rmin) + rmin x } Sarah On Thu, Aug 6, 2009 at 11:02 AM, damien landais<damien.landais at tdf.fr> wrote:> Hi, > I would obtain a random value between two (for example between 40.15 and 56.58 I would have only one value). > I'm looking for a package/a function which could do this. > Could anybody help me please? > > Cordialement > Damien Landais >-- Sarah Goslee http://www.functionaldiversity.org