Project - Predicting Titanic Passenger Survival using Machine Learning and Python

You are currently auditing this course.
6 / 21

Titanic Machine Learning Project - Explore the Training Data

Now we will look into the training data and analyze it. The attributes have the following meaning:

INSTRUCTIONS

Use the head() function to take a peek at the top few rows of the training set:

<< your code comes here >>.head()

Let's get more info to see how much data is missing by using the info() function:

<< your code comes here >>.info()

How many columns have missing value?

Get Hint See Answer

Loading comments...