Book Image

Principles of Data Science - Second Edition

By : Sinan Ozdemir, Sunil Kakade, Marco Tibaldeschi
Book Image

Principles of Data Science - Second Edition

By: Sinan Ozdemir, Sunil Kakade, Marco Tibaldeschi

Overview of this book

Need to turn programming skills into effective data science skills? This book helps you connect mathematics, programming, and business analysis. You’ll feel confident asking—and answering—complex, sophisticated questions of your data, making abstract and raw statistics into actionable ideas. Going through the data science pipeline, you'll clean and prepare data and learn effective data mining strategies and techniques to gain a comprehensive view of how the data science puzzle fits together. You’ll learn fundamentals of computational mathematics and statistics and pseudo-code used by data scientists and analysts. You’ll learn machine learning, discovering statistical models that help control and navigate even the densest datasets, and learn powerful visualizations that communicate what your data means.
Table of Contents (17 chapters)
16
Index

Chapter 6. Advanced Probability

In the previous chapter, we went over the basics of probability and how we can apply simple theorems to complex tasks. To briefly summarize, probability is the mathematics of modeling events that may or may not occur. We use formulas in order to describe these events and even look at how multiple events can behave together. In this chapter, we will explore more complicated theorems of probability and how we can use them in a predictive capacity. Advanced topics, such as Bayes' theorem and random variables, give rise to common machine learning algorithms, such as the Naïve Bayes algorithm (also covered in this book). This chapter will focus on some of the more advanced topics in probability theory, including the following topics:

  • Exhaustive events
  • Bayes' theorem
  • Basic prediction rules
  • Random variables

We have one more definition to look at before we get started (the last one before the fun stuff, I promise). We have to look at collectively...