I'm trying to use rbern function in R, but it says the following message

rbern (10, 0.1)
Error: Could not find the "rbern"

I even tried to load the library (Rlab) and will not let me, I'm doing wrong?. I remember a few days use the same function smoothly. Please I need help with this.

library(Rlab)
Error en library(Rlab) : there is no package called ‘Rlab’
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

install.packages('Rlab') will help

link|improve this answer
1  
And it appears that rbern is just calling the base function rbinom anyway, so....yeah. – joran Jan 26 at 5:03
You're right, I finally found it more convenient to use rbin with size 1, which is a Bernoulli-type experiment – Melkhiah66 Jan 28 at 16:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.