Python Tutorial: Statistical Simulation in Python
Skills:
ML Maths Basics60%
Want to learn more? Take the full course at https://campus.datacamp.com/courses/statistical-simulation-in-python at your own pace. More than a video, you'll learn hands-on coding & quickly apply skills to your daily work.
---
Hi, I'm Tushar Shanker, your instructor for this course. I'm a Data Scientist and have worked at companies like Uber, Airbnb, and LinkedIn. In this course, we'll learn about statistical simulation using Python. Simulations are a powerful and practical tool for solving a wide variety of data science problems. I have personally utilized simulations for addressing many complex challenges and would highly recommend adding it to your arsenal of statistical methods.
In this course we'll start with the basics of random variables and run our first simulation. We'll then learn to use simulations for estimating probability. Following that, we'll familiarize ourselves with extremely useful bootstrapping and resampling methods for data analysis. Finally we'll dive deeper into more advanced applications. Let's start with some basics.
A random variable is a quantity that can take on multiple values based on random chance. When the variable can take on infinitely many values, it's called a continuous random variable. Think about the height of a person. Although the height lies within some reasonable limits on average, the actual value could have infinite possibilities in that interval. That is why we term it as a continuous random variable.
Similarly, if the variable can only take a finite set of values, it is called a discrete random variable. The roll of a six-sided die can have only one of six possible outcomes and is thus, considered a discrete random variable. Next, let's look at probability distributions.
A probability distribution is a mapping from the set of possible outcomes of a random variable to the probability of observing that outcome. It tells you how likely you are to observe a given outcome or a set of outcomes. Just like random variable
What You'll Learn
This video tutorial covers statistical simulation in Python, focusing on random variables, probability distributions, and simulations using Python's numpy random module. It provides a foundation for using simulations to solve data science problems.
Full Transcript
hi I'm Tushar Shankar your instructor for this course I'm a data scientist and have worked at companies like uber Airbnb and LinkedIn in this course we'll learn about statistical simulation using Python simulations are a powerful and practical tool for solving a wide variety of data science problems I have personally utilized simulations for addressing many complex challenges and would highly recommend adding it to your arsenal of statistical methods in this course we'll start with the basics of random variables and run our first simulation will then learn to use simulations for estimating probability following that we'll familiarize ourselves with extremely useful bootstrapping and resampling methods for data analysis finally we'll dive deeper into more advanced applications let's start with some basics a random variable is a quantity that can take on multiple values based on random chance when the variable can take on infinitely many values it's called a continuous random variable think about the height of a person although the height lies within some reasonable limits on average the actual value could have infinite possibilities in that interval that is why we term it as a continuous random variable similarly if the variable can only take a finite set of values it is called a discrete random variable the rule of a six-sided die can have only one of six possible outcomes and as was considered a discrete random variable next let's look at probability distributions a probability distribution is a mapping from the set of possible outcomes of a random variable to the probability of observing that outcome it tells you how likely you are to observe a given outcome or a set of outcomes just like random variables probability distributions are either discrete or continuous depending on the type of random variable they represent for continuous random variables the distribution is represented by a probability density function and probability is typically defined over an interval the normal distribution is an example of a continuous distribution for discrete random variables the distribution is represented by a probability mass function and probability can be defined at a single point or over an interval among discrete distributions binomial and Poisson distributions are widely used Pythons numpy random module is a robust and flexible tool that lets us work with random variables by now you should have a good understanding of random variables and their relation to probability distributions let's put these concepts to practice and work through some exercises
Watch on YouTube ↗
(saves to browser)
Sign in to unlock AI tutor explanation · ⚡30
Playlist
Uploads from DataCamp · DataCamp · 0 of 60
← Previous
Next →
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
SQL Server Tutorial: Date manipulation
DataCamp
R Tutorial: Intermediate Interactive Data Visualization with plotly in R
DataCamp
R Tutorial: Adding aesthetics to represent a variable
DataCamp
R Tutorial: Moving Beyond Simple Interactivity
DataCamp
Python Tutorial: Why use ML for marketing? Strategies and use cases
DataCamp
Python Tutorial: Preparation for modeling
DataCamp
Python Tutorial: Machine Learning modeling steps
DataCamp
R Tutorial: The prior model
DataCamp
R Tutorial: Data & the likelihood
DataCamp
R Tutorial: The posterior model
DataCamp
R Tutorial: An Introduction to plotly
DataCamp
R Tutorial: Plotting a single variable
DataCamp
R Tutorial: Bivariate graphics
DataCamp
Python Tutorial: Customer Segmentation in Python
DataCamp
Python Tutorial: Time cohorts
DataCamp
Python Tutorial: Calculate cohort metrics
DataCamp
Python Tutorial: Cohort analysis visualization
DataCamp
R Tutorial: Building Dashboards with flexdashboard
DataCamp
R Tutorial: Anatomy of a flexdashboard
DataCamp
R Tutorial: Layout basics
DataCamp
R Tutorial: Advanced layouts
DataCamp
Python Tutorial: Time Series Analysis in Python
DataCamp
Python Tutorial: Correlation of Two Time Series
DataCamp
Python Tutorial: Simple Linear Regressions
DataCamp
Python Tutorial: Autocorrelation
DataCamp
R Tutorial: The gapminder dataset
DataCamp
R Tutorial: The filter verb
DataCamp
R Tutorial: The arrange verb
DataCamp
R Tutorial: The mutate verb
DataCamp
R Tutorial: What is cluster analysis?
DataCamp
R Tutorial: Distance between two observations
DataCamp
R Tutorial: The importance of scale
DataCamp
R Tutorial: Measuring distance for categorical data
DataCamp
Python Tutorial: Plotting multiple graphs
DataCamp
Python Tutorial: Customizing axes
DataCamp
Python Tutorial: Legends, annotations, & styles
DataCamp
Python Tutorial: Introduction to iterators
DataCamp
Python Tutorial: Playing with iterators
DataCamp
Python Tutorial: Using iterators to load large files into memory
DataCamp
SQL Tutorial: Introduction to Relational Databases in SQL
DataCamp
SQL Tutorial: Tables: At the core of every database
DataCamp
SQL Tutorial: Update your database as the structure changes
DataCamp
Python Tutorial: Classification-Tree Learning
DataCamp
Python Tutorial: Decision-Tree for Classification
DataCamp
Python Tutorial: Decision-Tree for Regression
DataCamp
Python Tutorial: Census Subject Tables
DataCamp
Python Tutorial: Census Geography
DataCamp
Python Tutorial: Using the Census API
DataCamp
R Tutorial: A/B Testing in R
DataCamp
R Tutorial: Baseline Conversion Rates
DataCamp
R Tutorial: Designing an Experiment - Power Analysis
DataCamp
R Tutorial: Introduction to qualitative data
DataCamp
R Tutorial: Understanding your qualitative variables
DataCamp
R Tutorial: Making Better Plots
DataCamp
SQL Tutorial: OLTP and OLAP
DataCamp
SQL Tutorial: Storing data
DataCamp
SQL Tutorial: Database design
DataCamp
Python Tutorial: Introduction to spaCy
DataCamp
Python Tutorial: Statistical Models
DataCamp
Python Tutorial: Rule-based Matching
DataCamp
More on: ML Maths Basics
View skill →Related AI Lessons
🎓
Tutor Explanation
DeepCamp AI