Take the binomial distribution for a spin
It turns out that the generative model you ran last exercise already has a name. It's called the binomial process or the binomial distribution. In R you can use the rbinom function to simulate data from a binomial distribution. The rbinom function takes three arguments:
nThe number of times you want to run the generative modelsizeThe number of trials. (For example, the number of zombies you're giving the drug.)probThe underlying proportion of success as a number between0.0and1.0.
Diese Übung ist Teil des Kurses
Fundamentals of Bayesian Data Analysis in R
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Try out rbinom
rbinom(n = 1, size = ___, prob = ___)