Welcome to our vivid exploration of probability distributions! In this lesson, we're going to delve into different types of probability distributions, specifically the Uniform, Normal and Binominal distributions. We will leverage R's libraries to create visualizations of these distributions.
Probability quantifies the likelihood of the occurrence of an event among all potential outcomes. For instance, if we toss a coin, the likelihood of obtaining a head is 50%, or 0.5. Essentially, probability distributions map out each outcome of a random variable along with its corresponding probability.
To visualize the distributions under study, we will employ the power of the ggplot2
library in R. At this stage, you can regard ggplot2
as an exceptional tool that aids us in our learning. Remember, our primary focus lies in exploring statistical distributions. There is no need to understand precisely how to use this library, but you will be provided with a fully-working code for this lesson and the following practices. We will cover the details of data visualization in R in one of the following courses.
Imagine a situation where all outcomes are equally likely to occur. This scenario can be depicted by a Uniform Distribution. For instance, if we pick a suit from a deck of cards, the probabilities of getting a heart, club, diamond, or spade are equal. Let's generate and plot a Uniform Distribution using runif()
and ggplot2
.
