Skip to main content

Posts

Showing posts with the label Cumulative distribution function (CDF)

A look in probability for data science

To have a solid foundation in probability theory for data science, let's explore key concepts in a structured manner. We’ll start from the basics and gradually move to more advanced ideas. This overview will give you the necessary theoretical background to understand how probability is applied in data science, particularly in machine learning, statistical modeling, and predictive analytics. 1. Random Variables A random variable is a variable that takes on different values based on the outcomes of a random phenomenon. Random variables are of two main types: Discrete Random Variables : These take on a countable number of values. For example, the outcome of a die roll (1 through 6) is a discrete random variable. Continuous Random Variables : These take on an uncountable number of values, typically within some interval. For example, the time it takes for a customer to make a purchase in an online store can be modeled as a continuous random variable. 2. Probability Distribution T...