This document discusses analyzing Titanic passenger data using Hadoop MapReduce. It performs two analyses:
1) Calculating the average age of males and females who died on the Titanic. The mapper emits gender as key and age as value. The reducer calculates the average age for each gender.
2) Counting the number of people who died or survived for each class and gender. The mapper creates a composite key of class, survived status, and gender. The reducer counts the occurrences for each unique key.
The document provides the code for the mapper and reducer classes used in each analysis, and explains how to run the job and view the output. It links to the source code and dataset.