CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Fundamentals of Bayesian Data Analysis in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# 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
Modifier et exécuter le code