March 2018
Intermediate to advanced
164 pages
3h 39m
English
In Lesson 1, From Data to Decisions – Getting Started with TensorFlow, we have seen a minimal data analysis of the Titanic dataset. Now it's our turn to do some analytics on top of the data. Let's look at what kinds of people survived the disaster.
Since we have enough data, but how could we do the predictive modeling so that we can draw some fairly straightforward conclusions from this data? For example, being a woman, being in first class, and being a child were all factors that could boost a passengers chances of survival during this disaster.
Using the brute-force approach such as if-else statements with some sort of weighted scoring system, you could write a program to predict whether a ...