Message-ID: <1349539864.45574.YahooMailNeo@web142602.mail.bf1.yahoo.com>
Date: 2012-10-06T16:11:04Z
From: arun
Subject: sample
In-Reply-To: <1349539365.53627.YahooMailNeo@web141101.mail.bf1.yahoo.com>
Hi,
They get different results:
with the same set.seed()
?x=c(3,2,6,1)
?n=length(x)
?set.seed(1)
?sample(x,1,replace=TRUE)?
#[1] 2
set.seed(1)
?sample(x,1,replace=TRUE,prob=rep(1/n , n) )
#[1] 6
?identical(sample(x,1,replace=TRUE),sample(x,1,replace=TRUE,prob=rep(1/n , n) ))
#[1] FALSE
A.K.
----- Original Message -----
From: solafah bh <solafahbh at yahoo.com>
To: R help mailing list <r-help at r-project.org>
Cc:
Sent: Saturday, October 6, 2012 12:02 PM
Subject: [R] sample
Hello
If I have x=c(3,2,6,1) and n=length(x), are the following codes equivalent??
sample(x,1,replace=TRUE)??? and?????? sample(x,1,replace=TRUE,prob=rep(1/n , n) )
Regards
??? [[alternative HTML version deleted]]
______________________________________________
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.