Bernoulli trials
A Bernoulli trial is a random experiment with two possible outcomes: success and failure.
You will imitate the shots of basketball players with various skill levels.
Let's assume that the value 1
represents a goal and the value 0
a miss.
The outcomes of the shots might be presented as a vector.
For example, the vector c(1, 1, 0)
means that the player has scored twice and then missed once.
The Bernoulli distribution is a particular case of the binomial distribution where a single trial is conducted (so size amounts to 1).
Recall that bar plots are great for visualizing discrete distributions.
This exercise is part of the course
Practicing Statistics Interview Questions in R
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
set.seed(123)
# Generate the outcomes of basketball shots
shots <- ___(n = ___, size = ___, prob = ___)
print(shots)
# Draw the frequency chart of the results
___(table(___))