Hello,
I wish to censor 10% of my sample units of 50 from a Weibull distribution. 
Below is the code for it.
I will need to know whether what i have done is correct and if not, can i have 
any suggestion to improve it?
Thank you

 p=2;b=120
n=50
r=45

t<-rweibull(r,shape=p,scale=b)
meantrue<-gamma(1+(1/p))*b
meantrue

cen<- runif(n-r,min=0,max=meantrue)
cen


Chris Guure
Researcher,
Institute for Mathematical Research
UPM

______________________________________________
R-help@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.

Reply via email to