I generated 200 random numbers with the random variable that Y~Exponential(0.8) using:
n=rexp(200,0.8)
bins=cut(n,breaks=c(0,1,2,3,max(n)))
I am trying to compute the expected number of counters for each bin knowing that Y~Exponential(0.8). How can i do this?