ruge {VGAM} | R Documentation |
Decay counts of polonium recorded by Rutherford and Geiger (1910).
data(ruge)
This data frame contains the following columns:
These are the radioactive decay counts of polonium recorded by Rutherford and Geiger (1910) representing the number of scintillations in 2608 1/8 minute intervals. For example, there were 57 frequencies of zero counts. The counts can be thought of as being approximately Poisson distributed.
Rutherford, E. and Geiger, H. (1910) The Probability Variations in the Distribution of alpha Particles, Philosophical Magazine, 20, 698–704.
data(ruge) attach(ruge) lambdahat = weighted.mean(number, w=counts) (N = sum(counts)) cbind(number, counts, fitted=round(N * dpois(number, lam=lambdahat))) detach(ruge)