How many visitors could your site get (1)?
To get more visitors to your website you are considering paying for an ad to be shown 100 times on a popular social media site. According to the social media site, their ads get clicked on 10% of the time.
Diese Übung ist Teil des Kurses
Fundamentals of Bayesian Data Analysis in R
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Fill in the parameters
n_samples <- 100000
n_ads_shown <- ___
proportion_clicks <- ___
n_visitors <- rbinom(n_samples, size = n_ads_shown,
prob = proportion_clicks)
# Visualize n_visitors