In this tutorial http://pymc-devs.github.io/pymc/tutorial.html#an-example-statistical-model ,
disasters = Poisson('disasters', mu=rate, value=disasters_array, observed=True)
this line denotes that disasters
is a poisson random variable or disasters
is a collection of poisson random variables, ith random variable has parameter = rate[i] (i.e each rv is drawn from a different random process with psrsmeter given by rate[i] )
How should I interpret this line ?