
Explore levels of measurement from nominal to ratio and learn key notation for probability and statistics, including X bar, mu, sigma, and sigma summations, plus sample mean examples.
Explore the three core measures of central tendency—mean, median, and mode—and how they locate data. Understand mean calculations, median rules for odd/even sets, and how outliers can shift the mean.
Explore dispersion in data by examining range, variance, and standard deviation, distinguishing sample from population calculations and applying Bessel's correction to improve variance estimates.
Explore quartiles and the interquartile range, visualize data with a box plot, and learn to compute Q1, Q2 (the median), Q3, and detect outliers with 1.5 times the IQR.
Explore bivariate data by comparing two variables with scatter plots, and learn covariance and correlation, including positive and negative relationships and the distinction from causality.
Learn how the Pearson correlation coefficient normalizes covariance to a -1 to 1 scale, enabling comparison of linear relationships, with a business example and notes on causality.
To complete this exercise, click on the Resources for this lecture, download and print the .pdf file titled Exercise01-Data. Answers are provided in a second file Exercise01-Data-ANSWERS. Good luck!
Learn the basics of probability as a value between 0 and 1, and explore events, trials, independent outcomes, and the sample space through fair coins and six-sided dice.
Define combinations as unordered selections from a set, using the n choose r formula to count groups where order does not matter, and contrast without and with repetition.
Explore intersections, unions, and complements in probability with a ball-and-pattern example, and learn to compute A and B, A or B, and not A, laying groundwork for further probability concepts.
Examine independent and dependent events, using coin flips and drawing red marbles without replacement to illustrate how probabilities multiply and how conditioning changes outcomes.
Learn how conditional probability links events A and B with P(A|B)=P(A∩B)/P(B), using dependent draws and examples like on-time vs under-budget projects to set up Bayes theorem and rules.
Formalize the addition and multiplication rules and illustrate them with unions, mutually exclusive events, and Bayes theorem, plus examples like projects on time or under budget and drawing four aces.
To complete this exercise, click on the Resources for this lecture, download and print the .pdf file titled Exercise02-Probability. Answers are provided in a second file Exercise02-Probability-ANSWERS. Good luck!
Explore the concept of distributions, distinguishing discrete probability mass functions from continuous distributions, and examine key families like uniform, binomial, Poisson, and normal distributions.
Explore the discrete uniform distribution with a fair six‑sided die, where six outcomes are equally probable and each occurs with probability 1/6.
Explore the binomial distribution by modeling Bernoulli trials with two outcomes and a constant probability of success across independent trials, using coin flips and dice as examples.
Learn the Poisson distribution, counting occurrences per a continuous unit such as time or distance using lambda. See its PMF and examples like cars per hour and hydrants per kilometer.
Explore continuous normal distributions and their bell-curve shapes used in business data. Learn how area under the curve and standard normal concepts—mean, standard deviation, and z-table—enable inferences.
Learn to standardize a normal distribution with z scores, map any value to the standard normal, and compute percentiles using z tables with real world examples.
To complete this exercise, click on the Resources for this lecture, download and print the .pdf file titled Exercise03-Distributions. Answers are provided in a second file Exercise03-Distributions-ANSWERS. Good luck!
As an optional resource for those familiar with Python, we've included the interactive Dash scripts used to display the Binomial Distribution, Poisson Distribution, Normal Distribution and side-by-side Normal Distributions on the screen. Changes to the input parameters (mean, standard deviation, degrees of freedom, etc.) are immediately reflected in the graphs. Enjoy!
Explore what statistics is and how it uses population and sample concepts to infer parameters from data, and distinguish variables, discrete versus continuous data, and the parameter and statistic relationship.
Learn how to sample data and avoid biases in surveys, including random, stratified random, and clustering methods. Examine selection bias, under coverage, self-selection, healthy-user, and survivorship biases with practical examples.
Learn how the central limit theorem makes sample means normally distributed around the population mean, with 95% within two standard deviations, even when the population is not normal.
Explore how the standard error relates the sample mean to the population mean, compute it as sigma divided by the square root of n, and construct 95% confidence intervals.
Compare mean load times using hypothesis testing in a real-world case, applying left-tail z-test and p-value methods at alpha 0.01 for a 99% confidence level.
Perform a test of proportion on a 400-sample survey showing 58% teenagers, testing p ≤ 0.5 against p > 0.5, and note how sample size influences the conclusion.
Understand type one and type two errors in hypothesis testing, including rejecting a null hypothesis (false positive) and failing to reject a false null hypothesis, illustrated by medical screening examples.
Explore the student's t distribution and t tests for unknown population standard deviation, compare with z tests, and cover degrees of freedom, significance level, and one-sample, two-sample, and paired tests.
To complete this exercise, click on the Resources for this lecture, download and print the .pdf file titled Exercise04-Statistics. Answers are provided in a second file Exercise04-Statistics-ANSWERS. Good luck!
Explore analysis of variance (anova) and the f distribution to assess whether multiple samples share the same variance, extending from one or two samples to three or more.
Investigate whether three discount plans (2 percent, 1 percent, and no discount) speed up invoice payments using ANOVA, the F distribution, and F critical values.
Explore two-way anova, or two-factor anova, which tests two independent variables—such as discount and amount due—simultaneously, while accounting for blocks and separating between-group and within-group variance.
Use a two-way ANOVA without replication to test how discounts (2%, 1%, or none) and invoice amounts affect days until payment; results show a statistically significant effect of discounts.
Explore two-way anova with replication, analyzing interactions between fertilizer types and temperature blocks using plant height data, sample means, and an f test in Excel.
To complete this exercise, click on the Resources for this lecture, download and print the .pdf file titled Exercise05-ANOVA. Answers are provided in a second file Exercise05-ANOVA-ANSWERS. Good luck!
Explore the fundamentals of linear regression, derive the line of best fit using two variables, minimize sum of squared errors, and interpret residuals, visualization, and pitfalls like Anscombe's quartet.
Apply linear regression to relate hours of operation to weekly production, deriving y = -46 + 4.5x, and predict required hours using the model; practice with Excel or Python.
Learn how multiple regression extends linear regression with several predictors, interpret coefficients, assess multicollinearity, and implement models in Excel and Python (scikit-learn) using real-world examples.
To complete this exercise, click on the Resources for this lecture, download and print the .pdf file titled Exercise06-Regression. Answers are provided in a second file Exercise06-Regression-ANSWERS. Good luck!
Explore chi-square tests and goodness-of-fit by comparing observed and expected frequencies using the (o-e)^2/e formula. Use degrees of freedom and p-values to test hypotheses with examples like coin flips.
To complete this exercise, click on the Resources for this lecture, download and print the .pdf file titled Exercise07-ChiSquare. Answers are provided in a second file Exercise07-ChiSquare-ANSWERS. Good luck!
Welcome to Probability and Statistics for Business and Data Science!
In this course we cover what you need to know about probability and statistics to succeed in business and the data science field!
This practical course will go over theory and implementation of statistics to real world problems. Each section has example problems, in course quizzes, and assessment tests.
We’ll start by talking about the basics of data, understanding how to examine it with measurements of central tendency, dispersion, and also building an understanding of how bivariate data sources can relate to each other.
Afterwards we’ll dive into probability , learning about combinations and permutations, as well as conditional probability and how to apply bayes theorem.
Then we’ll move on to discussing the most common distributions found in statistics, creating a solid foundation of understanding how to work with uniform, binomial, poisson, and normal distributions.
Up next we’ll talk about statistics, applying what we’ve learned so far to real world business cases, including hypothesis testing and the student's T distribution.
We’ll end the course with 3 sections on advanced topics, such as ANOVA (analysis of variance), understanding regression analysis, and finally performing chi squared analysis.
The sections are modular and organized by topic, so you can reference what you need and jump right in!
Our course includes HD Video with clear explanations and high quality animations, we also include extensive case studies to show you how to apply this knowledge to the real world.
We'll cover everything you need to know about statistics and probability to clearly tackle real world business and data science problems!
Including:
Measurements of Data
Mean, Median, and Mode
Variance and Standard Deviation
Co-variance and Correlation
Permutations and Combinations
Unions and Intersections
Conditional Probability
Bayes Theorem
Binomial Distribution
Poisson Distribution
Normal Distribution
Sampling
Central Limit Theorem
Hypothesis Testing
T-Distribution Testing
Regression Analysis
ANOVA
Chi Squared
and much more!
Not only do you get great technical content, but you’ll also have access to our online QA forums as well as our student chat channel. Where the TAs and myself are happy to help out with any questions you encounter! Upon finishing this course you’ll receive a certificate of completion you can post on your linkedin profile to show off to your colleagues, or even potential employers!
All of this content comes with a 30 day money back guarantee, so you can try out the course risk free!
So what are you waiting for? Enroll today and we'll see you inside the course!