d_binom <- dist_binomial(size = 10, prob = 0.5)
x <- d_binom$sample(100)
d_emp <- dist_empirical(x)
plot_distributions(
empirical = d_emp,
theoretical = d_binom,
estimated = d_binom,
with_params = list(
estimated = list(
size = max(x),
prob = mean(x) / max(x)
)
),
.x = 0:max(x)
)
Run the code above in your browser using DataLab