Project - Predicting Titanic Passenger Survival using Machine Learning and Python

3 / 21

Titanic Machine Learning Project - Download and Import the Titanic dataset

First, let's import the dataset from our lab.

INSTRUCTIONS

The dataset is located at the following path:

'/cxldata/datasets/project/titanic'

It consists of 2 files, train.csv and test.csv. Let's load the dataset from that path:

import os

TITANIC_PATH = '/cxldata/datasets/project/titanic'
Get Hint See Answer


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...