You want to predict whether you'll end up watching a movie based on whether you've finished your homework, the weather, and if your friends are available. Here's data from your past decisions:
HW Completed |
Weather |
Friend Available |
Watched Movie? |
Yes |
Sunny |
TRUE |
yes |
No |
Rainy |
FALSE |
yes |
Yes |
Rainy |
TRUE |
yes |
Yes |
Sunny |
TRUE |
yes |
No |
Sunny |
TRUE |
no |
On it |
Sunny |
TRUE |
no |
Yes |
Rainy |
FALSE |
yes |
No |
Sunny |
FALSE |
no |
On it |
Rainy |
FALSE |
yes |
On it |
Sunny |
TRUE |
no |
On it |
Rainy |
FALSE |
yes |
Yes |
Rainy |
FALSE |
no |
Yes |
Rainy |
TRUE |
yes |
No |
Sunny |
FALSE |
no |
The Naive Bayes algorithm will:
- Calculate the base probability of going to movies
- Compute the probability of each feature given "yes" and "no" movie outcomes
- Multiply these probabilities together
- Determine which outcome has the highest probability
From this table, we can calculate:
- Prior probability of watching a movie: P(Watch=yes)=148 (watched movies 8 times out of 14 total occasions)
- Prior probability of watching a movie: P(Watch=no)=146 (didn't watch movies 6 times out of 14 total occasions)
- For completed homework when watching movies: P(HW=Yes∣Watch=yes)=84
- For rainy weather when watching movies: P(Rainy∣Watch=yes)=85
- For friend availability when watching movies: P(Friend=TRUE∣Watch=yes)=84
- etc.
Let's predict if you'll watch a movie when:
- Homework is completed (Yes)
- It's rainy outside
- Your friend is available (TRUE)
For Watch=yes:
- P(Watch=yes)=148
- P(HW=Yes∣Watch=yes)=84
- P(Rainy∣Watch=yes)=85
- P(Friend=TRUE∣Watch=yes)=84
P(Watch=yes∣Scenario)∝148×84×85×84=0.089
For Watch=no:
- P(Watch=no)=146
- P(HW=Yes∣Watch=no)=61
- P(Rainy∣Watch=no)=61
- P(Friend=TRUE∣Watch=no)=62
P(Watch=no∣Scenario)∝146×61×61×62=0.002
Since 0.089 > 0.002, we predict you'll watch a movie!