Hi
I have a simulation which is relatively slow. I used Rprofile() and
identified the calls to sample() as the culprit is sample():
> summaryRprof("Documents/PostDoc/Aloe_Pillansii/R/create.out")
$by.self
self.time self.pct total.time total.pct
"sample" 1.30 44.2 1.52 51.7
"ifelse" 0.46 15.6 2.44 83.0
.
.
.
I am using sample() as follow:
result <- sample(
x=d.growth.seedling$growth,
size=1,
prob=d.growth.seedling$p,
replace
)
d.growth.seedling$p and d.growth.seedling$growth have a length of 1024
and are calculated initially by using density().
My question: is there any way to make this faster, i.e. replace sample()
as I use it with another faster algorithm (if necessary implemented in C)?
Thanks in advance,
Rainer
--
NEW EMAIL ADDRESS AND ADDRESS:
[EMAIL PROTECTED]
[EMAIL PROTECTED] WILL BE DISCONTINUED END OF MARCH
Rainer M. Krug, Dipl. Phys. (Germany), MSc Conservation
Biology (UCT)
Leslie Hill Institute for Plant Conservation
University of Cape Town
Rondebosch 7701
South Africa
Fax: +27 - (0)86 516 2782
Fax: +27 - (0)21 650 2440 (w)
Cell: +27 - (0)83 9479 042
Skype: RMkrug
email: [EMAIL PROTECTED]
[EMAIL PROTECTED]
______________________________________________
[email protected] 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.