Bluepearls
commited on
Commit
·
47d08e5
1
Parent(s):
e51cd3d
commit from bluepearl
Browse files- FuncToNumberClass.py +13 -0
- README.md +20 -0
- RandomForest.ipynb +1342 -0
- ResultPredict.csv +419 -0
- final.csv +892 -0
- model.pkl +3 -0
- result.csv +180 -0
- test.csv +419 -0
- train.csv +892 -0
FuncToNumberClass.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from sklearn import preprocessing
|
2 |
+
|
3 |
+
class FuncToNumber:
|
4 |
+
def ToNumber(df):
|
5 |
+
# transform non-numerical labels to numerical labels
|
6 |
+
#Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked
|
7 |
+
le = preprocessing.LabelEncoder()
|
8 |
+
df["Sex"] = le.fit_transform(df["Sex"])
|
9 |
+
df["Age"] = le.fit_transform(df["Age"])
|
10 |
+
df["Ticket"] = le.fit_transform(df["Ticket"])
|
11 |
+
df["Fare"] = le.fit_transform(df["Fare"])
|
12 |
+
df["Cabin"] = le.fit_transform(df["Cabin"])
|
13 |
+
return df
|
README.md
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Introduction
|
2 |
+
TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.
|
3 |
+
|
4 |
+
# Getting Started
|
5 |
+
TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
|
6 |
+
1. Installation process
|
7 |
+
2. Software dependencies
|
8 |
+
3. Latest releases
|
9 |
+
4. API references
|
10 |
+
|
11 |
+
# Build and Test
|
12 |
+
TODO: Describe and show how to build your code and run the tests.
|
13 |
+
|
14 |
+
# Contribute
|
15 |
+
TODO: Explain how other users and developers can contribute to make your code better.
|
16 |
+
|
17 |
+
If you want to learn more about creating good readme files then refer the following [guidelines](https://docs.microsoft.com/en-us/azure/devops/repos/git/create-a-readme?view=azure-devops). You can also seek inspiration from the below readme files:
|
18 |
+
- [ASP.NET Core](https://github.com/aspnet/Home)
|
19 |
+
- [Visual Studio Code](https://github.com/Microsoft/vscode)
|
20 |
+
- [Chakra Core](https://github.com/Microsoft/ChakraCore)
|
RandomForest.ipynb
ADDED
@@ -0,0 +1,1342 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": 2,
|
6 |
+
"metadata": {},
|
7 |
+
"outputs": [],
|
8 |
+
"source": [
|
9 |
+
"import pandas as pd #数据分析库,核心是DataFrame对象\n",
|
10 |
+
"from sklearn.linear_model import LogisticRegression\n",
|
11 |
+
"from sklearn.ensemble import RandomForestClassifier #随机森林\n",
|
12 |
+
"from sklearn.model_selection import train_test_split,cross_val_score,GridSearchCV #训练集和测试集的划分,交叉验证评估模型,网格搜索优化超参数\n",
|
13 |
+
"from sklearn.metrics import accuracy_score,roc_auc_score,roc_curve,auc #模型准确度 \n",
|
14 |
+
"import matplotlib.pyplot as pyt #绘制ROC曲线"
|
15 |
+
]
|
16 |
+
},
|
17 |
+
{
|
18 |
+
"cell_type": "code",
|
19 |
+
"execution_count": 3,
|
20 |
+
"id": "59086eb3",
|
21 |
+
"metadata": {},
|
22 |
+
"outputs": [
|
23 |
+
{
|
24 |
+
"data": {
|
25 |
+
"text/html": [
|
26 |
+
"<div>\n",
|
27 |
+
"<style scoped>\n",
|
28 |
+
" .dataframe tbody tr th:only-of-type {\n",
|
29 |
+
" vertical-align: middle;\n",
|
30 |
+
" }\n",
|
31 |
+
"\n",
|
32 |
+
" .dataframe tbody tr th {\n",
|
33 |
+
" vertical-align: top;\n",
|
34 |
+
" }\n",
|
35 |
+
"\n",
|
36 |
+
" .dataframe thead th {\n",
|
37 |
+
" text-align: right;\n",
|
38 |
+
" }\n",
|
39 |
+
"</style>\n",
|
40 |
+
"<table border=\"1\" class=\"dataframe\">\n",
|
41 |
+
" <thead>\n",
|
42 |
+
" <tr style=\"text-align: right;\">\n",
|
43 |
+
" <th></th>\n",
|
44 |
+
" <th>PassengerId</th>\n",
|
45 |
+
" <th>Survived</th>\n",
|
46 |
+
" <th>Pclass</th>\n",
|
47 |
+
" <th>Name</th>\n",
|
48 |
+
" <th>Sex</th>\n",
|
49 |
+
" <th>Age</th>\n",
|
50 |
+
" <th>SibSp</th>\n",
|
51 |
+
" <th>Parch</th>\n",
|
52 |
+
" <th>Ticket</th>\n",
|
53 |
+
" <th>Fare</th>\n",
|
54 |
+
" <th>Cabin</th>\n",
|
55 |
+
" <th>Embarked</th>\n",
|
56 |
+
" </tr>\n",
|
57 |
+
" </thead>\n",
|
58 |
+
" <tbody>\n",
|
59 |
+
" <tr>\n",
|
60 |
+
" <th>0</th>\n",
|
61 |
+
" <td>1</td>\n",
|
62 |
+
" <td>0</td>\n",
|
63 |
+
" <td>3</td>\n",
|
64 |
+
" <td>Braund, Mr. Owen Harris</td>\n",
|
65 |
+
" <td>male</td>\n",
|
66 |
+
" <td>22.0</td>\n",
|
67 |
+
" <td>1</td>\n",
|
68 |
+
" <td>0</td>\n",
|
69 |
+
" <td>A/5 21171</td>\n",
|
70 |
+
" <td>7.2500</td>\n",
|
71 |
+
" <td>NaN</td>\n",
|
72 |
+
" <td>S</td>\n",
|
73 |
+
" </tr>\n",
|
74 |
+
" <tr>\n",
|
75 |
+
" <th>1</th>\n",
|
76 |
+
" <td>2</td>\n",
|
77 |
+
" <td>1</td>\n",
|
78 |
+
" <td>1</td>\n",
|
79 |
+
" <td>Cumings, Mrs. John Bradley (Florence Briggs Th...</td>\n",
|
80 |
+
" <td>female</td>\n",
|
81 |
+
" <td>38.0</td>\n",
|
82 |
+
" <td>1</td>\n",
|
83 |
+
" <td>0</td>\n",
|
84 |
+
" <td>PC 17599</td>\n",
|
85 |
+
" <td>71.2833</td>\n",
|
86 |
+
" <td>C85</td>\n",
|
87 |
+
" <td>C</td>\n",
|
88 |
+
" </tr>\n",
|
89 |
+
" <tr>\n",
|
90 |
+
" <th>2</th>\n",
|
91 |
+
" <td>3</td>\n",
|
92 |
+
" <td>1</td>\n",
|
93 |
+
" <td>3</td>\n",
|
94 |
+
" <td>Heikkinen, Miss. Laina</td>\n",
|
95 |
+
" <td>female</td>\n",
|
96 |
+
" <td>26.0</td>\n",
|
97 |
+
" <td>0</td>\n",
|
98 |
+
" <td>0</td>\n",
|
99 |
+
" <td>STON/O2. 3101282</td>\n",
|
100 |
+
" <td>7.9250</td>\n",
|
101 |
+
" <td>NaN</td>\n",
|
102 |
+
" <td>S</td>\n",
|
103 |
+
" </tr>\n",
|
104 |
+
" <tr>\n",
|
105 |
+
" <th>3</th>\n",
|
106 |
+
" <td>4</td>\n",
|
107 |
+
" <td>1</td>\n",
|
108 |
+
" <td>1</td>\n",
|
109 |
+
" <td>Futrelle, Mrs. Jacques Heath (Lily May Peel)</td>\n",
|
110 |
+
" <td>female</td>\n",
|
111 |
+
" <td>35.0</td>\n",
|
112 |
+
" <td>1</td>\n",
|
113 |
+
" <td>0</td>\n",
|
114 |
+
" <td>113803</td>\n",
|
115 |
+
" <td>53.1000</td>\n",
|
116 |
+
" <td>C123</td>\n",
|
117 |
+
" <td>S</td>\n",
|
118 |
+
" </tr>\n",
|
119 |
+
" <tr>\n",
|
120 |
+
" <th>4</th>\n",
|
121 |
+
" <td>5</td>\n",
|
122 |
+
" <td>0</td>\n",
|
123 |
+
" <td>3</td>\n",
|
124 |
+
" <td>Allen, Mr. William Henry</td>\n",
|
125 |
+
" <td>male</td>\n",
|
126 |
+
" <td>35.0</td>\n",
|
127 |
+
" <td>0</td>\n",
|
128 |
+
" <td>0</td>\n",
|
129 |
+
" <td>373450</td>\n",
|
130 |
+
" <td>8.0500</td>\n",
|
131 |
+
" <td>NaN</td>\n",
|
132 |
+
" <td>S</td>\n",
|
133 |
+
" </tr>\n",
|
134 |
+
" </tbody>\n",
|
135 |
+
"</table>\n",
|
136 |
+
"</div>"
|
137 |
+
],
|
138 |
+
"text/plain": [
|
139 |
+
" PassengerId Survived Pclass \\\n",
|
140 |
+
"0 1 0 3 \n",
|
141 |
+
"1 2 1 1 \n",
|
142 |
+
"2 3 1 3 \n",
|
143 |
+
"3 4 1 1 \n",
|
144 |
+
"4 5 0 3 \n",
|
145 |
+
"\n",
|
146 |
+
" Name Sex Age SibSp \\\n",
|
147 |
+
"0 Braund, Mr. Owen Harris male 22.0 1 \n",
|
148 |
+
"1 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38.0 1 \n",
|
149 |
+
"2 Heikkinen, Miss. Laina female 26.0 0 \n",
|
150 |
+
"3 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35.0 1 \n",
|
151 |
+
"4 Allen, Mr. William Henry male 35.0 0 \n",
|
152 |
+
"\n",
|
153 |
+
" Parch Ticket Fare Cabin Embarked \n",
|
154 |
+
"0 0 A/5 21171 7.2500 NaN S \n",
|
155 |
+
"1 0 PC 17599 71.2833 C85 C \n",
|
156 |
+
"2 0 STON/O2. 3101282 7.9250 NaN S \n",
|
157 |
+
"3 0 113803 53.1000 C123 S \n",
|
158 |
+
"4 0 373450 8.0500 NaN S "
|
159 |
+
]
|
160 |
+
},
|
161 |
+
"execution_count": 3,
|
162 |
+
"metadata": {},
|
163 |
+
"output_type": "execute_result"
|
164 |
+
}
|
165 |
+
],
|
166 |
+
"source": [
|
167 |
+
"df=pd.read_csv(\"C:\\Learning\\MachineLearning\\RandomForest\\\\train.csv\",header=0)\n",
|
168 |
+
"df.head()"
|
169 |
+
]
|
170 |
+
},
|
171 |
+
{
|
172 |
+
"cell_type": "code",
|
173 |
+
"execution_count": 4,
|
174 |
+
"id": "4b0650bf",
|
175 |
+
"metadata": {},
|
176 |
+
"outputs": [
|
177 |
+
{
|
178 |
+
"data": {
|
179 |
+
"text/plain": [
|
180 |
+
"\" subset = df[df['Survived'] == 0]\\n\\n# 过采样倍数\\noversampling_factor = 3\\n\\n# 使用 sample 函数对 subset 进行过采样,将采样结果追加到原始数据集中\\noversampled_df = pd.concat([df] + [subset.sample(frac=1, replace=True)] * (oversampling_factor - 1), axis=0)\\n\\n# 输出过采样后的数据集\\nprint(oversampled_df) \""
|
181 |
+
]
|
182 |
+
},
|
183 |
+
"execution_count": 4,
|
184 |
+
"metadata": {},
|
185 |
+
"output_type": "execute_result"
|
186 |
+
}
|
187 |
+
],
|
188 |
+
"source": [
|
189 |
+
"\"\"\" subset = df[df['Survived'] == 0]\n",
|
190 |
+
"\n",
|
191 |
+
"# 过采样倍数\n",
|
192 |
+
"oversampling_factor = 3\n",
|
193 |
+
"\n",
|
194 |
+
"# 使用 sample 函数对 subset 进行过采样,将采样结果追加到原始数据集中\n",
|
195 |
+
"oversampled_df = pd.concat([df] + [subset.sample(frac=1, replace=True)] * (oversampling_factor - 1), axis=0)\n",
|
196 |
+
"\n",
|
197 |
+
"# 输出过采样后的数据集\n",
|
198 |
+
"print(oversampled_df) \"\"\""
|
199 |
+
]
|
200 |
+
},
|
201 |
+
{
|
202 |
+
"cell_type": "code",
|
203 |
+
"execution_count": 5,
|
204 |
+
"id": "2345dd24",
|
205 |
+
"metadata": {},
|
206 |
+
"outputs": [
|
207 |
+
{
|
208 |
+
"data": {
|
209 |
+
"text/plain": [
|
210 |
+
"891"
|
211 |
+
]
|
212 |
+
},
|
213 |
+
"execution_count": 5,
|
214 |
+
"metadata": {},
|
215 |
+
"output_type": "execute_result"
|
216 |
+
}
|
217 |
+
],
|
218 |
+
"source": [
|
219 |
+
"df[\"Age\"]=df[\"Age\"].fillna(df[\"Age\"].median())\n",
|
220 |
+
"df[\"Cabin\"]=df[\"Cabin\"].bfill() #用相邻后面(back)特征填充前面缺失值\n",
|
221 |
+
"df[\"Embarked\"]=df[\"Embarked\"].fillna(\"S\")\n",
|
222 |
+
"output=df\n",
|
223 |
+
"output.to_csv(\"final.csv\")\n",
|
224 |
+
"len(df)"
|
225 |
+
]
|
226 |
+
},
|
227 |
+
{
|
228 |
+
"cell_type": "code",
|
229 |
+
"execution_count": 6,
|
230 |
+
"id": "7d0107fd",
|
231 |
+
"metadata": {},
|
232 |
+
"outputs": [
|
233 |
+
{
|
234 |
+
"data": {
|
235 |
+
"text/plain": [
|
236 |
+
"Survived\n",
|
237 |
+
"0 549\n",
|
238 |
+
"1 342\n",
|
239 |
+
"Name: count, dtype: int64"
|
240 |
+
]
|
241 |
+
},
|
242 |
+
"execution_count": 6,
|
243 |
+
"metadata": {},
|
244 |
+
"output_type": "execute_result"
|
245 |
+
}
|
246 |
+
],
|
247 |
+
"source": [
|
248 |
+
"#看样本是否均衡,下采样(从多的样本中抽取跟少的样本中一样的数量),过采样(把数据量少的样本重复多次使之数量与多的差不多)解决样本不均衡的情况\n",
|
249 |
+
"df.Survived.value_counts()"
|
250 |
+
]
|
251 |
+
},
|
252 |
+
{
|
253 |
+
"cell_type": "code",
|
254 |
+
"execution_count": 7,
|
255 |
+
"id": "e43fd930",
|
256 |
+
"metadata": {},
|
257 |
+
"outputs": [
|
258 |
+
{
|
259 |
+
"data": {
|
260 |
+
"text/plain": [
|
261 |
+
"0 0\n",
|
262 |
+
"1 1\n",
|
263 |
+
"2 1\n",
|
264 |
+
"3 1\n",
|
265 |
+
"4 0\n",
|
266 |
+
"Name: Survived, dtype: int64"
|
267 |
+
]
|
268 |
+
},
|
269 |
+
"execution_count": 7,
|
270 |
+
"metadata": {},
|
271 |
+
"output_type": "execute_result"
|
272 |
+
}
|
273 |
+
],
|
274 |
+
"source": [
|
275 |
+
"y=df[\"Survived\"]\n",
|
276 |
+
"y.head()"
|
277 |
+
]
|
278 |
+
},
|
279 |
+
{
|
280 |
+
"cell_type": "code",
|
281 |
+
"execution_count": 8,
|
282 |
+
"id": "f241e0d5",
|
283 |
+
"metadata": {},
|
284 |
+
"outputs": [
|
285 |
+
{
|
286 |
+
"data": {
|
287 |
+
"text/html": [
|
288 |
+
"<div>\n",
|
289 |
+
"<style scoped>\n",
|
290 |
+
" .dataframe tbody tr th:only-of-type {\n",
|
291 |
+
" vertical-align: middle;\n",
|
292 |
+
" }\n",
|
293 |
+
"\n",
|
294 |
+
" .dataframe tbody tr th {\n",
|
295 |
+
" vertical-align: top;\n",
|
296 |
+
" }\n",
|
297 |
+
"\n",
|
298 |
+
" .dataframe thead th {\n",
|
299 |
+
" text-align: right;\n",
|
300 |
+
" }\n",
|
301 |
+
"</style>\n",
|
302 |
+
"<table border=\"1\" class=\"dataframe\">\n",
|
303 |
+
" <thead>\n",
|
304 |
+
" <tr style=\"text-align: right;\">\n",
|
305 |
+
" <th></th>\n",
|
306 |
+
" <th>PassengerId</th>\n",
|
307 |
+
" <th>Pclass</th>\n",
|
308 |
+
" <th>Name</th>\n",
|
309 |
+
" <th>Sex</th>\n",
|
310 |
+
" <th>Age</th>\n",
|
311 |
+
" <th>SibSp</th>\n",
|
312 |
+
" <th>Parch</th>\n",
|
313 |
+
" <th>Ticket</th>\n",
|
314 |
+
" <th>Fare</th>\n",
|
315 |
+
" <th>Cabin</th>\n",
|
316 |
+
" <th>Embarked</th>\n",
|
317 |
+
" </tr>\n",
|
318 |
+
" </thead>\n",
|
319 |
+
" <tbody>\n",
|
320 |
+
" <tr>\n",
|
321 |
+
" <th>0</th>\n",
|
322 |
+
" <td>1</td>\n",
|
323 |
+
" <td>3</td>\n",
|
324 |
+
" <td>Braund, Mr. Owen Harris</td>\n",
|
325 |
+
" <td>male</td>\n",
|
326 |
+
" <td>22.0</td>\n",
|
327 |
+
" <td>1</td>\n",
|
328 |
+
" <td>0</td>\n",
|
329 |
+
" <td>A/5 21171</td>\n",
|
330 |
+
" <td>7.2500</td>\n",
|
331 |
+
" <td>C85</td>\n",
|
332 |
+
" <td>S</td>\n",
|
333 |
+
" </tr>\n",
|
334 |
+
" <tr>\n",
|
335 |
+
" <th>1</th>\n",
|
336 |
+
" <td>2</td>\n",
|
337 |
+
" <td>1</td>\n",
|
338 |
+
" <td>Cumings, Mrs. John Bradley (Florence Briggs Th...</td>\n",
|
339 |
+
" <td>female</td>\n",
|
340 |
+
" <td>38.0</td>\n",
|
341 |
+
" <td>1</td>\n",
|
342 |
+
" <td>0</td>\n",
|
343 |
+
" <td>PC 17599</td>\n",
|
344 |
+
" <td>71.2833</td>\n",
|
345 |
+
" <td>C85</td>\n",
|
346 |
+
" <td>C</td>\n",
|
347 |
+
" </tr>\n",
|
348 |
+
" <tr>\n",
|
349 |
+
" <th>2</th>\n",
|
350 |
+
" <td>3</td>\n",
|
351 |
+
" <td>3</td>\n",
|
352 |
+
" <td>Heikkinen, Miss. Laina</td>\n",
|
353 |
+
" <td>female</td>\n",
|
354 |
+
" <td>26.0</td>\n",
|
355 |
+
" <td>0</td>\n",
|
356 |
+
" <td>0</td>\n",
|
357 |
+
" <td>STON/O2. 3101282</td>\n",
|
358 |
+
" <td>7.9250</td>\n",
|
359 |
+
" <td>C123</td>\n",
|
360 |
+
" <td>S</td>\n",
|
361 |
+
" </tr>\n",
|
362 |
+
" <tr>\n",
|
363 |
+
" <th>3</th>\n",
|
364 |
+
" <td>4</td>\n",
|
365 |
+
" <td>1</td>\n",
|
366 |
+
" <td>Futrelle, Mrs. Jacques Heath (Lily May Peel)</td>\n",
|
367 |
+
" <td>female</td>\n",
|
368 |
+
" <td>35.0</td>\n",
|
369 |
+
" <td>1</td>\n",
|
370 |
+
" <td>0</td>\n",
|
371 |
+
" <td>113803</td>\n",
|
372 |
+
" <td>53.1000</td>\n",
|
373 |
+
" <td>C123</td>\n",
|
374 |
+
" <td>S</td>\n",
|
375 |
+
" </tr>\n",
|
376 |
+
" <tr>\n",
|
377 |
+
" <th>4</th>\n",
|
378 |
+
" <td>5</td>\n",
|
379 |
+
" <td>3</td>\n",
|
380 |
+
" <td>Allen, Mr. William Henry</td>\n",
|
381 |
+
" <td>male</td>\n",
|
382 |
+
" <td>35.0</td>\n",
|
383 |
+
" <td>0</td>\n",
|
384 |
+
" <td>0</td>\n",
|
385 |
+
" <td>373450</td>\n",
|
386 |
+
" <td>8.0500</td>\n",
|
387 |
+
" <td>E46</td>\n",
|
388 |
+
" <td>S</td>\n",
|
389 |
+
" </tr>\n",
|
390 |
+
" </tbody>\n",
|
391 |
+
"</table>\n",
|
392 |
+
"</div>"
|
393 |
+
],
|
394 |
+
"text/plain": [
|
395 |
+
" PassengerId Pclass Name \\\n",
|
396 |
+
"0 1 3 Braund, Mr. Owen Harris \n",
|
397 |
+
"1 2 1 Cumings, Mrs. John Bradley (Florence Briggs Th... \n",
|
398 |
+
"2 3 3 Heikkinen, Miss. Laina \n",
|
399 |
+
"3 4 1 Futrelle, Mrs. Jacques Heath (Lily May Peel) \n",
|
400 |
+
"4 5 3 Allen, Mr. William Henry \n",
|
401 |
+
"\n",
|
402 |
+
" Sex Age SibSp Parch Ticket Fare Cabin Embarked \n",
|
403 |
+
"0 male 22.0 1 0 A/5 21171 7.2500 C85 S \n",
|
404 |
+
"1 female 38.0 1 0 PC 17599 71.2833 C85 C \n",
|
405 |
+
"2 female 26.0 0 0 STON/O2. 3101282 7.9250 C123 S \n",
|
406 |
+
"3 female 35.0 1 0 113803 53.1000 C123 S \n",
|
407 |
+
"4 male 35.0 0 0 373450 8.0500 E46 S "
|
408 |
+
]
|
409 |
+
},
|
410 |
+
"execution_count": 8,
|
411 |
+
"metadata": {},
|
412 |
+
"output_type": "execute_result"
|
413 |
+
}
|
414 |
+
],
|
415 |
+
"source": [
|
416 |
+
"#删掉Survived列\n",
|
417 |
+
"x=df.drop(\"Survived\",axis=1)\n",
|
418 |
+
"x.head()"
|
419 |
+
]
|
420 |
+
},
|
421 |
+
{
|
422 |
+
"cell_type": "code",
|
423 |
+
"execution_count": 9,
|
424 |
+
"id": "5a377d7f",
|
425 |
+
"metadata": {},
|
426 |
+
"outputs": [],
|
427 |
+
"source": [
|
428 |
+
"features=[\"Pclass\",\"Sex\",\"Age\",\"Ticket\",\"Fare\",\"Cabin\"]\n",
|
429 |
+
"from FuncToNumberClass import FuncToNumber\n",
|
430 |
+
"x=FuncToNumber.ToNumber(x.loc[:,features])\n"
|
431 |
+
]
|
432 |
+
},
|
433 |
+
{
|
434 |
+
"cell_type": "code",
|
435 |
+
"execution_count": 10,
|
436 |
+
"id": "6dd05460",
|
437 |
+
"metadata": {},
|
438 |
+
"outputs": [
|
439 |
+
{
|
440 |
+
"name": "stdout",
|
441 |
+
"output_type": "stream",
|
442 |
+
"text": [
|
443 |
+
" Pclass Sex Age Ticket Fare Cabin\n",
|
444 |
+
"887 1 0 24 14 153 30\n",
|
445 |
+
"416 2 0 45 224 161 115\n",
|
446 |
+
"479 3 0 6 251 79 31\n",
|
447 |
+
"134 2 1 33 552 85 107\n",
|
448 |
+
"588 3 1 28 79 43 96\n",
|
449 |
+
".. ... ... ... ... ... ...\n",
|
450 |
+
"400 3 1 52 663 41 78\n",
|
451 |
+
"118 1 1 31 585 244 36\n",
|
452 |
+
"701 1 1 47 579 141 120\n",
|
453 |
+
"206 3 1 42 247 106 8\n",
|
454 |
+
"867 1 1 41 590 184 6\n",
|
455 |
+
"\n",
|
456 |
+
"[712 rows x 6 columns]\n"
|
457 |
+
]
|
458 |
+
}
|
459 |
+
],
|
460 |
+
"source": [
|
461 |
+
"\n",
|
462 |
+
"xtrain,xtest,ytrain,ytest=train_test_split(x,y,test_size=0.2,random_state=5)\n",
|
463 |
+
"\n",
|
464 |
+
"print(xtrain)"
|
465 |
+
]
|
466 |
+
},
|
467 |
+
{
|
468 |
+
"cell_type": "code",
|
469 |
+
"execution_count": 11,
|
470 |
+
"id": "7106567b",
|
471 |
+
"metadata": {},
|
472 |
+
"outputs": [
|
473 |
+
{
|
474 |
+
"name": "stdout",
|
475 |
+
"output_type": "stream",
|
476 |
+
"text": [
|
477 |
+
" Pclass Sex Age Ticket Fare Cabin\n",
|
478 |
+
"126 3 1 36 463 30 138\n",
|
479 |
+
"354 3 1 36 182 16 123\n",
|
480 |
+
"590 3 1 47 656 14 96\n",
|
481 |
+
"509 3 1 34 80 193 121\n",
|
482 |
+
"769 3 1 42 511 48 136\n",
|
483 |
+
".. ... ... ... ... ... ...\n",
|
484 |
+
"732 2 1 36 137 0 15\n",
|
485 |
+
"42 3 1 36 391 40 101\n",
|
486 |
+
"179 3 1 48 574 0 144\n",
|
487 |
+
"123 2 0 43 219 85 116\n",
|
488 |
+
"890 3 1 42 466 30 147\n",
|
489 |
+
"\n",
|
490 |
+
"[179 rows x 6 columns]\n"
|
491 |
+
]
|
492 |
+
}
|
493 |
+
],
|
494 |
+
"source": [
|
495 |
+
"print(xtest)\n"
|
496 |
+
]
|
497 |
+
},
|
498 |
+
{
|
499 |
+
"cell_type": "code",
|
500 |
+
"execution_count": 12,
|
501 |
+
"id": "f62148bd",
|
502 |
+
"metadata": {},
|
503 |
+
"outputs": [
|
504 |
+
{
|
505 |
+
"name": "stdout",
|
506 |
+
"output_type": "stream",
|
507 |
+
"text": [
|
508 |
+
"126 0\n",
|
509 |
+
"354 0\n",
|
510 |
+
"590 0\n",
|
511 |
+
"509 1\n",
|
512 |
+
"769 0\n",
|
513 |
+
" ..\n",
|
514 |
+
"732 0\n",
|
515 |
+
"42 0\n",
|
516 |
+
"179 0\n",
|
517 |
+
"123 1\n",
|
518 |
+
"890 0\n",
|
519 |
+
"Name: Survived, Length: 179, dtype: int64\n"
|
520 |
+
]
|
521 |
+
}
|
522 |
+
],
|
523 |
+
"source": [
|
524 |
+
"print(ytest)"
|
525 |
+
]
|
526 |
+
},
|
527 |
+
{
|
528 |
+
"cell_type": "markdown",
|
529 |
+
"id": "e21ce014",
|
530 |
+
"metadata": {},
|
531 |
+
"source": [
|
532 |
+
"n_estimators : 随机森林中树的个数,即学习器的个数。 \n",
|
533 |
+
"max_features : 划分叶子节点,选择的最大特征数目 \n",
|
534 |
+
"n_features:在寻找最佳分割时要考虑的特征数量\n",
|
535 |
+
"max_depth : 树的最大深度,如果选择default=None,树就一致扩展,直到所有的叶子节点都是同一类样本,或者达到最小样本划分(min_samples_split)的数目。\n",
|
536 |
+
"min_samples_split : 最小样本划分的数目,就是样本的数目少于等于这个值,就不能继续划分当前节点了\n",
|
537 |
+
"min_samples_leaf : 叶子节点最少样本数,如果某叶子节点数目小于这个值,就会和兄弟节点一起被剪枝。\n",
|
538 |
+
"min_weight_fraction_leaf:叶子节点最小的样本权重和\n",
|
539 |
+
"max_leaf_nodes: 最大叶子节点数,默认是”None”,即不限制最大的叶子节点数\n",
|
540 |
+
"min_impurity_split:节点划分的最小不纯度,是结束树增长的一个阈值,如果不纯度超过这个阈值,那么该节点就会继续划分,否则不划分,成为一个叶子节点。\n",
|
541 |
+
"min_impurity_decrease : 最小不纯度减少的阈值,如果对该节点进行划分,使得不纯度的减少大于等于这个值,那么该节点就会划分,否则,不划分。\n",
|
542 |
+
"bootstrap :自助采样,又放回的采样,大量采样的结果就是初始样本的63.2%作为训练集。默认选择自助采样法。\n",
|
543 |
+
"oob_score : bool (default=False) \n",
|
544 |
+
"out-of-bag estimate,包外估计;是否选用包外样本(即bootstrap采样剩下的36.8%的样本)作为验证集,对训练结果进行验证,默认不采用。\n",
|
545 |
+
"n_jobs : 并行使用的进程数,默认1个,如果设置为-1,该值为总的核数。\n",
|
546 |
+
"random_state :随机状态,默认由np.numpy生成\n",
|
547 |
+
"verbose:显示输出的一些参数,默认不输出。"
|
548 |
+
]
|
549 |
+
},
|
550 |
+
{
|
551 |
+
"cell_type": "code",
|
552 |
+
"execution_count": 13,
|
553 |
+
"id": "7a230210",
|
554 |
+
"metadata": {},
|
555 |
+
"outputs": [
|
556 |
+
{
|
557 |
+
"data": {
|
558 |
+
"text/html": [
|
559 |
+
"<style>#sk-container-id-1 {color: black;}#sk-container-id-1 pre{padding: 0;}#sk-container-id-1 div.sk-toggleable {background-color: white;}#sk-container-id-1 label.sk-toggleable__label {cursor: pointer;display: block;width: 100%;margin-bottom: 0;padding: 0.3em;box-sizing: border-box;text-align: center;}#sk-container-id-1 label.sk-toggleable__label-arrow:before {content: \"▸\";float: left;margin-right: 0.25em;color: #696969;}#sk-container-id-1 label.sk-toggleable__label-arrow:hover:before {color: black;}#sk-container-id-1 div.sk-estimator:hover label.sk-toggleable__label-arrow:before {color: black;}#sk-container-id-1 div.sk-toggleable__content {max-height: 0;max-width: 0;overflow: hidden;text-align: left;background-color: #f0f8ff;}#sk-container-id-1 div.sk-toggleable__content pre {margin: 0.2em;color: black;border-radius: 0.25em;background-color: #f0f8ff;}#sk-container-id-1 input.sk-toggleable__control:checked~div.sk-toggleable__content {max-height: 200px;max-width: 100%;overflow: auto;}#sk-container-id-1 input.sk-toggleable__control:checked~label.sk-toggleable__label-arrow:before {content: \"▾\";}#sk-container-id-1 div.sk-estimator input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-1 div.sk-label input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-1 input.sk-hidden--visually {border: 0;clip: rect(1px 1px 1px 1px);clip: rect(1px, 1px, 1px, 1px);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;}#sk-container-id-1 div.sk-estimator {font-family: monospace;background-color: #f0f8ff;border: 1px dotted black;border-radius: 0.25em;box-sizing: border-box;margin-bottom: 0.5em;}#sk-container-id-1 div.sk-estimator:hover {background-color: #d4ebff;}#sk-container-id-1 div.sk-parallel-item::after {content: \"\";width: 100%;border-bottom: 1px solid gray;flex-grow: 1;}#sk-container-id-1 div.sk-label:hover label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-1 div.sk-serial::before {content: \"\";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 0;bottom: 0;left: 50%;z-index: 0;}#sk-container-id-1 div.sk-serial {display: flex;flex-direction: column;align-items: center;background-color: white;padding-right: 0.2em;padding-left: 0.2em;position: relative;}#sk-container-id-1 div.sk-item {position: relative;z-index: 1;}#sk-container-id-1 div.sk-parallel {display: flex;align-items: stretch;justify-content: center;background-color: white;position: relative;}#sk-container-id-1 div.sk-item::before, #sk-container-id-1 div.sk-parallel-item::before {content: \"\";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 0;bottom: 0;left: 50%;z-index: -1;}#sk-container-id-1 div.sk-parallel-item {display: flex;flex-direction: column;z-index: 1;position: relative;background-color: white;}#sk-container-id-1 div.sk-parallel-item:first-child::after {align-self: flex-end;width: 50%;}#sk-container-id-1 div.sk-parallel-item:last-child::after {align-self: flex-start;width: 50%;}#sk-container-id-1 div.sk-parallel-item:only-child::after {width: 0;}#sk-container-id-1 div.sk-dashed-wrapped {border: 1px dashed gray;margin: 0 0.4em 0.5em 0.4em;box-sizing: border-box;padding-bottom: 0.4em;background-color: white;}#sk-container-id-1 div.sk-label label {font-family: monospace;font-weight: bold;display: inline-block;line-height: 1.2em;}#sk-container-id-1 div.sk-label-container {text-align: center;}#sk-container-id-1 div.sk-container {/* jupyter's `normalize.less` sets `[hidden] { display: none; }` but bootstrap.min.css set `[hidden] { display: none !important; }` so we also need the `!important` here to be able to override the default hidden behavior on the sphinx rendered scikit-learn.org. See: https://github.com/scikit-learn/scikit-learn/issues/21755 */display: inline-block !important;position: relative;}#sk-container-id-1 div.sk-text-repr-fallback {display: none;}</style><div id=\"sk-container-id-1\" class=\"sk-top-container\"><div class=\"sk-text-repr-fallback\"><pre>RandomForestClassifier()</pre><b>In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. <br />On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.</b></div><div class=\"sk-container\" hidden><div class=\"sk-item\"><div class=\"sk-estimator sk-toggleable\"><input class=\"sk-toggleable__control sk-hidden--visually\" id=\"sk-estimator-id-1\" type=\"checkbox\" checked><label for=\"sk-estimator-id-1\" class=\"sk-toggleable__label sk-toggleable__label-arrow\">RandomForestClassifier</label><div class=\"sk-toggleable__content\"><pre>RandomForestClassifier()</pre></div></div></div></div></div>"
|
560 |
+
],
|
561 |
+
"text/plain": [
|
562 |
+
"RandomForestClassifier()"
|
563 |
+
]
|
564 |
+
},
|
565 |
+
"execution_count": 13,
|
566 |
+
"metadata": {},
|
567 |
+
"output_type": "execute_result"
|
568 |
+
}
|
569 |
+
],
|
570 |
+
"source": [
|
571 |
+
"rfc=RandomForestClassifier() #实例化\n",
|
572 |
+
"rfc.fit(xtrain,ytrain) "
|
573 |
+
]
|
574 |
+
},
|
575 |
+
{
|
576 |
+
"cell_type": "code",
|
577 |
+
"execution_count": 14,
|
578 |
+
"id": "124e234e",
|
579 |
+
"metadata": {},
|
580 |
+
"outputs": [
|
581 |
+
{
|
582 |
+
"data": {
|
583 |
+
"text/plain": [
|
584 |
+
"array([0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1,\n",
|
585 |
+
" 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0,\n",
|
586 |
+
" 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0,\n",
|
587 |
+
" 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1,\n",
|
588 |
+
" 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0,\n",
|
589 |
+
" 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0,\n",
|
590 |
+
" 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0,\n",
|
591 |
+
" 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0,\n",
|
592 |
+
" 0, 1, 0], dtype=int64)"
|
593 |
+
]
|
594 |
+
},
|
595 |
+
"execution_count": 14,
|
596 |
+
"metadata": {},
|
597 |
+
"output_type": "execute_result"
|
598 |
+
}
|
599 |
+
],
|
600 |
+
"source": [
|
601 |
+
"predicts=rfc.predict(xtest)\n",
|
602 |
+
"predicts\n"
|
603 |
+
]
|
604 |
+
},
|
605 |
+
{
|
606 |
+
"cell_type": "code",
|
607 |
+
"execution_count": 15,
|
608 |
+
"id": "72b345bf",
|
609 |
+
"metadata": {},
|
610 |
+
"outputs": [
|
611 |
+
{
|
612 |
+
"data": {
|
613 |
+
"text/plain": [
|
614 |
+
"array([[0.91, 0.09],\n",
|
615 |
+
" [0.86, 0.14],\n",
|
616 |
+
" [0.68, 0.32],\n",
|
617 |
+
" [0.24, 0.76],\n",
|
618 |
+
" [0.82, 0.18],\n",
|
619 |
+
" [0.93, 0.07],\n",
|
620 |
+
" [0.01, 0.99],\n",
|
621 |
+
" [0.87, 0.13],\n",
|
622 |
+
" [0.04, 0.96],\n",
|
623 |
+
" [0.96, 0.04],\n",
|
624 |
+
" [0.67, 0.33],\n",
|
625 |
+
" [0.6 , 0.4 ],\n",
|
626 |
+
" [0.33, 0.67],\n",
|
627 |
+
" [0.02, 0.98],\n",
|
628 |
+
" [1. , 0. ],\n",
|
629 |
+
" [0.15, 0.85],\n",
|
630 |
+
" [0.97, 0.03],\n",
|
631 |
+
" [0.47, 0.53],\n",
|
632 |
+
" [0.96, 0.04],\n",
|
633 |
+
" [1. , 0. ],\n",
|
634 |
+
" [0.81, 0.19],\n",
|
635 |
+
" [0.41, 0.59],\n",
|
636 |
+
" [0.03, 0.97],\n",
|
637 |
+
" [0.18, 0.82],\n",
|
638 |
+
" [0.85, 0.15],\n",
|
639 |
+
" [0.55, 0.45],\n",
|
640 |
+
" [0.77, 0.23],\n",
|
641 |
+
" [0.67, 0.33],\n",
|
642 |
+
" [0.65, 0.35],\n",
|
643 |
+
" [0.88, 0.12],\n",
|
644 |
+
" [0.93, 0.07],\n",
|
645 |
+
" [0.53, 0.47],\n",
|
646 |
+
" [0.2 , 0.8 ],\n",
|
647 |
+
" [0.98, 0.02],\n",
|
648 |
+
" [0.09, 0.91],\n",
|
649 |
+
" [0.45, 0.55],\n",
|
650 |
+
" [0.97, 0.03],\n",
|
651 |
+
" [0.77, 0.23],\n",
|
652 |
+
" [0.82, 0.18],\n",
|
653 |
+
" [0.86, 0.14],\n",
|
654 |
+
" [0.98, 0.02],\n",
|
655 |
+
" [0.15, 0.85],\n",
|
656 |
+
" [0.91, 0.09],\n",
|
657 |
+
" [0.96, 0.04],\n",
|
658 |
+
" [0.92, 0.08],\n",
|
659 |
+
" [0.98, 0.02],\n",
|
660 |
+
" [0.09, 0.91],\n",
|
661 |
+
" [0.04, 0.96],\n",
|
662 |
+
" [0.68, 0.32],\n",
|
663 |
+
" [0.97, 0.03],\n",
|
664 |
+
" [0.8 , 0.2 ],\n",
|
665 |
+
" [0.03, 0.97],\n",
|
666 |
+
" [0.04, 0.96],\n",
|
667 |
+
" [0.84, 0.16],\n",
|
668 |
+
" [0.94, 0.06],\n",
|
669 |
+
" [0.91, 0.09],\n",
|
670 |
+
" [0.34, 0.66],\n",
|
671 |
+
" [0.98, 0.02],\n",
|
672 |
+
" [0.77, 0.23],\n",
|
673 |
+
" [0.22, 0.78],\n",
|
674 |
+
" [0.9 , 0.1 ],\n",
|
675 |
+
" [0.69, 0.31],\n",
|
676 |
+
" [0.81, 0.19],\n",
|
677 |
+
" [0.91, 0.09],\n",
|
678 |
+
" [0.44, 0.56],\n",
|
679 |
+
" [0.68, 0.32],\n",
|
680 |
+
" [0.99, 0.01],\n",
|
681 |
+
" [0.81, 0.19],\n",
|
682 |
+
" [0.86, 0.14],\n",
|
683 |
+
" [0.55, 0.45],\n",
|
684 |
+
" [0.13, 0.87],\n",
|
685 |
+
" [0.9 , 0.1 ],\n",
|
686 |
+
" [0.1 , 0.9 ],\n",
|
687 |
+
" [0.94, 0.06],\n",
|
688 |
+
" [0.27, 0.73],\n",
|
689 |
+
" [0.8 , 0.2 ],\n",
|
690 |
+
" [0.93, 0.07],\n",
|
691 |
+
" [0.87, 0.13],\n",
|
692 |
+
" [0.03, 0.97],\n",
|
693 |
+
" [0.13, 0.87],\n",
|
694 |
+
" [0.87, 0.13],\n",
|
695 |
+
" [0.95, 0.05],\n",
|
696 |
+
" [0.93, 0.07],\n",
|
697 |
+
" [0.97, 0.03],\n",
|
698 |
+
" [0.05, 0.95],\n",
|
699 |
+
" [0.06, 0.94],\n",
|
700 |
+
" [0.86, 0.14],\n",
|
701 |
+
" [0.16, 0.84],\n",
|
702 |
+
" [0.87, 0.13],\n",
|
703 |
+
" [0.42, 0.58],\n",
|
704 |
+
" [0.88, 0.12],\n",
|
705 |
+
" [1. , 0. ],\n",
|
706 |
+
" [0.01, 0.99],\n",
|
707 |
+
" [0.81, 0.19],\n",
|
708 |
+
" [0.02, 0.98],\n",
|
709 |
+
" [0.9 , 0.1 ],\n",
|
710 |
+
" [0.06, 0.94],\n",
|
711 |
+
" [0.82, 0.18],\n",
|
712 |
+
" [0.92, 0.08],\n",
|
713 |
+
" [0.93, 0.07],\n",
|
714 |
+
" [0.58, 0.42],\n",
|
715 |
+
" [0.11, 0.89],\n",
|
716 |
+
" [0.93, 0.07],\n",
|
717 |
+
" [0.8 , 0.2 ],\n",
|
718 |
+
" [0.21, 0.79],\n",
|
719 |
+
" [0.07, 0.93],\n",
|
720 |
+
" [0.95, 0.05],\n",
|
721 |
+
" [0.77, 0.23],\n",
|
722 |
+
" [0.99, 0.01],\n",
|
723 |
+
" [0.5 , 0.5 ],\n",
|
724 |
+
" [0.97, 0.03],\n",
|
725 |
+
" [0.71, 0.29],\n",
|
726 |
+
" [0.83, 0.17],\n",
|
727 |
+
" [1. , 0. ],\n",
|
728 |
+
" [0.09, 0.91],\n",
|
729 |
+
" [0.44, 0.56],\n",
|
730 |
+
" [0.37, 0.63],\n",
|
731 |
+
" [0.88, 0.12],\n",
|
732 |
+
" [0.05, 0.95],\n",
|
733 |
+
" [0.56, 0.44],\n",
|
734 |
+
" [0.48, 0.52],\n",
|
735 |
+
" [0.72, 0.28],\n",
|
736 |
+
" [0.69, 0.31],\n",
|
737 |
+
" [0.05, 0.95],\n",
|
738 |
+
" [0.84, 0.16],\n",
|
739 |
+
" [0.03, 0.97],\n",
|
740 |
+
" [0.72, 0.28],\n",
|
741 |
+
" [0.89, 0.11],\n",
|
742 |
+
" [0.72, 0.28],\n",
|
743 |
+
" [0.97, 0.03],\n",
|
744 |
+
" [0.94, 0.06],\n",
|
745 |
+
" [0.94, 0.06],\n",
|
746 |
+
" [0.96, 0.04],\n",
|
747 |
+
" [0.81, 0.19],\n",
|
748 |
+
" [0.11, 0.89],\n",
|
749 |
+
" [0.94, 0.06],\n",
|
750 |
+
" [0.98, 0.02],\n",
|
751 |
+
" [0.84, 0.16],\n",
|
752 |
+
" [0.95, 0.05],\n",
|
753 |
+
" [0.9 , 0.1 ],\n",
|
754 |
+
" [0.87, 0.13],\n",
|
755 |
+
" [0.98, 0.02],\n",
|
756 |
+
" [0.96, 0.04],\n",
|
757 |
+
" [0.54, 0.46],\n",
|
758 |
+
" [0.33, 0.67],\n",
|
759 |
+
" [0.06, 0.94],\n",
|
760 |
+
" [0.82, 0.18],\n",
|
761 |
+
" [0.01, 0.99],\n",
|
762 |
+
" [0.86, 0.14],\n",
|
763 |
+
" [0.23, 0.77],\n",
|
764 |
+
" [0.09, 0.91],\n",
|
765 |
+
" [0.79, 0.21],\n",
|
766 |
+
" [0.59, 0.41],\n",
|
767 |
+
" [0.9 , 0.1 ],\n",
|
768 |
+
" [0.86, 0.14],\n",
|
769 |
+
" [0.38, 0.62],\n",
|
770 |
+
" [0.14, 0.86],\n",
|
771 |
+
" [0.82, 0.18],\n",
|
772 |
+
" [0.92, 0.08],\n",
|
773 |
+
" [0.9 , 0.1 ],\n",
|
774 |
+
" [0.89, 0.11],\n",
|
775 |
+
" [0.92, 0.08],\n",
|
776 |
+
" [0.85, 0.15],\n",
|
777 |
+
" [0.65, 0.35],\n",
|
778 |
+
" [0.35, 0.65],\n",
|
779 |
+
" [0.7 , 0.3 ],\n",
|
780 |
+
" [0.12, 0.88],\n",
|
781 |
+
" [0.91, 0.09],\n",
|
782 |
+
" [0.94, 0.06],\n",
|
783 |
+
" [0.95, 0.05],\n",
|
784 |
+
" [0.02, 0.98],\n",
|
785 |
+
" [0.92, 0.08],\n",
|
786 |
+
" [0.32, 0.68],\n",
|
787 |
+
" [0.02, 0.98],\n",
|
788 |
+
" [1. , 0. ],\n",
|
789 |
+
" [0.96, 0.04],\n",
|
790 |
+
" [0.76, 0.24],\n",
|
791 |
+
" [0.1 , 0.9 ],\n",
|
792 |
+
" [0.53, 0.47]])"
|
793 |
+
]
|
794 |
+
},
|
795 |
+
"execution_count": 15,
|
796 |
+
"metadata": {},
|
797 |
+
"output_type": "execute_result"
|
798 |
+
}
|
799 |
+
],
|
800 |
+
"source": [
|
801 |
+
"predicts_proba=rfc.predict_proba(xtest)[:,:]\n",
|
802 |
+
"predicts_proba"
|
803 |
+
]
|
804 |
+
},
|
805 |
+
{
|
806 |
+
"cell_type": "code",
|
807 |
+
"execution_count": 16,
|
808 |
+
"id": "660f8572",
|
809 |
+
"metadata": {},
|
810 |
+
"outputs": [
|
811 |
+
{
|
812 |
+
"data": {
|
813 |
+
"text/plain": [
|
814 |
+
"0.8491620111731844"
|
815 |
+
]
|
816 |
+
},
|
817 |
+
"execution_count": 16,
|
818 |
+
"metadata": {},
|
819 |
+
"output_type": "execute_result"
|
820 |
+
}
|
821 |
+
],
|
822 |
+
"source": [
|
823 |
+
"row=df.loc[xtest.index]\n",
|
824 |
+
"output = pd.DataFrame({'PassengerId':row.PassengerId, \"Name\":row.Name, 'ActualSurvived': row.Survived, 'PredictSurvived': predicts})\n",
|
825 |
+
"\n",
|
826 |
+
"output.to_csv('result.csv', index=False)\n",
|
827 |
+
"outputresult=output[output.ActualSurvived==output.PredictSurvived]\n",
|
828 |
+
"len(outputresult)\n",
|
829 |
+
"len(outputresult)/len(output)"
|
830 |
+
]
|
831 |
+
},
|
832 |
+
{
|
833 |
+
"cell_type": "code",
|
834 |
+
"execution_count": 17,
|
835 |
+
"id": "5a3eaa96",
|
836 |
+
"metadata": {},
|
837 |
+
"outputs": [
|
838 |
+
{
|
839 |
+
"data": {
|
840 |
+
"text/plain": [
|
841 |
+
"0.8579093799682036"
|
842 |
+
]
|
843 |
+
},
|
844 |
+
"execution_count": 17,
|
845 |
+
"metadata": {},
|
846 |
+
"output_type": "execute_result"
|
847 |
+
}
|
848 |
+
],
|
849 |
+
"source": [
|
850 |
+
"'''percent = accuracy_score(ytest,predicts)\n",
|
851 |
+
"print(\"准确率:\", round(percent, 3))'''\n",
|
852 |
+
"\n",
|
853 |
+
"roc_auc_score(ytest,rfc.predict_proba(xtest)[:,1])"
|
854 |
+
]
|
855 |
+
},
|
856 |
+
{
|
857 |
+
"cell_type": "code",
|
858 |
+
"execution_count": 18,
|
859 |
+
"id": "db10f2f8",
|
860 |
+
"metadata": {},
|
861 |
+
"outputs": [
|
862 |
+
{
|
863 |
+
"data": {
|
864 |
+
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAkIAAAHHCAYAAABTMjf2AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/OQEPoAAAACXBIWXMAAA9hAAAPYQGoP6dpAABreklEQVR4nO3de3zO9f/H8ce12clhG8YYYyPHkjlETomWU5ROJnKK1BclUinVpKKjlPRTUjoo5Kv4RsohFZFyzDGHyXHO2xx3ut6/Pz65tDbaNds+267n/Xa7bvl8rs91fV6XS/b0PjqMMQYRERERD+RldwEiIiIidlEQEhEREY+lICQiIiIeS0FIREREPJaCkIiIiHgsBSERERHxWApCIiIi4rEUhERERMRjKQiJiIiIx1IQEpEiw+FwMHr0aNfxtGnTcDgc7Nmz519fGxERQd++fXO1nr59+xIREZGr7ykiuUtBSMSDXAgGFx7FihWjUqVK9O3blwMHDthdXqF08OBBRo8ezfr16+0uRURyoJjdBYhI/hszZgyRkZGcP3+eVatWMW3aNJYvX86mTZvw9/e3u7xc06tXL7p3746fn1+e3ePgwYM899xzREREEBUVleG5KVOm4HQ68+zeInLlFIREPFDHjh1p3LgxAAMGDCAkJISXX36ZefPm0a1bN5uryz3e3t54e3vbdn8fHx/b7i0i2aOuMRGhVatWAOzatSvD+aVLl9KqVStKlChBcHAwt912G1u3bs30+gMHDtC/f3/CwsLw8/MjMjKS//znP6SkpGR5v9TUVMqUKUO/fv0yPZeUlIS/vz8jRowAICUlhWeffZZGjRoRFBREiRIlaNWqFd9///2/fq6sxggZY3jhhReoXLkyxYsXp02bNmzevDnTa0+cOMGIESOoV68eJUuWJDAwkI4dO7JhwwbXNcuWLeO6664DoF+/fq4ux2nTpgFZjxE6c+YMjz76KOHh4fj5+VGrVi1ee+01jDEZrnM4HAwZMoSvvvqKa665Bj8/P66++moWLlz4r59bRLJPLUIi4goKpUuXdp1bvHgxHTt2pFq1aowePZpz584xceJEWrRowdq1a10/4A8ePEiTJk1ISEhg4MCB1K5dmwMHDjB79mzOnj2Lr69vpvv5+Phw++23M2fOHN59990M13z11VckJyfTvXt3wApG77//Pvfccw/3338/p06dYurUqbRv357Vq1dn6o76N88++ywvvPACnTp1olOnTqxdu5Z27dplCm27d+/mq6++4u677yYyMpLDhw/z7rvv0rp1a7Zs2UJYWBh16tRhzJgxPPvsswwcONAVKJs3b57lvY0x3HrrrXz//ff079+fqKgovv32Wx577DEOHDjAG2+8keH65cuXM2fOHAYNGkSpUqV46623uPPOO9m7dy9ly5Z163OLyCUYEfEYH374oQHM4sWLzdGjR82+ffvM7NmzTbly5Yyfn5/Zt2+f69qoqChTvnx5c/z4cde5DRs2GC8vL9O7d2/Xud69exsvLy/z66+/Zrqf0+m8ZC3ffvutAcz//ve/DOc7depkqlWr5jpOS0szycnJGa45efKkCQ0NNffdd1+G84CJjY3N9Hnj4uKMMcYcOXLE+Pr6mltuuSVDbU899ZQBTJ8+fVznzp8/b9LT0zO8f1xcnPHz8zNjxoxxnfv1118NYD788MNMn7FPnz6matWqruOvvvrKAOaFF17IcN1dd91lHA6H2blzZ4bP4uvrm+Hchg0bDGAmTpyY6V4ikjPqGhPxQNHR0ZQrV47w8HDuuusuSpQowbx586hcuTIAhw4dYv369fTt25cyZcq4Xnfttddy8803s2DBAgCcTidfffUVXbp0cY05+juHw3HJGtq2bUtISAgzZ850nTt58iSLFi0iJibGdc7b29vVYuR0Ojlx4gRpaWk0btyYtWvXuvW5Fy9eTEpKCg899FCG2h555JFM1/r5+eHlZf0VmZ6ezvHjxylZsiS1atVy+74XLFiwAG9vbx5++OEM5x999FGMMXzzzTcZzkdHR1O9enXX8bXXXktgYCC7d+/O0f1FJDMFIREPNGnSJBYtWsTs2bPp1KkTx44dyzCz6s8//wSgVq1amV5bp04djh07xpkzZzh69ChJSUlcc801btdQrFgx7rzzTubOnUtycjIAc+bMITU1NUMQAvjoo4+49tpr8ff3p2zZspQrV4758+eTmJjo1j0vfK4aNWpkOF+uXLkM3YJgha433niDGjVq4OfnR0hICOXKlWPjxo1u3/fv9w8LC6NUqVIZztepUydDfRdUqVIl03uULl2akydP5uj+IpKZgpCIB2rSpAnR0dHceeedzJs3j2uuuYYePXpw+vTpfK2je/funDp1ytUSMmvWLGrXrk39+vVd13z66af07duX6tWrM3XqVBYuXMiiRYto27Ztnk5NHzt2LMOHD+eGG27g008/5dtvv2XRokVcffXV+TYl/lIz3sw/BlaLSM5psLSIh/P29mbcuHG0adOGt99+m5EjR1K1alUAtm/fnun6bdu2ERISQokSJQgICCAwMJBNmzbl6N433HADFStWZObMmbRs2ZKlS5cyatSoDNfMnj2batWqMWfOnAzdWbGxsW7f78Ln2rFjB9WqVXOdP3r0aKZWltmzZ9OmTRumTp2a4XxCQgIhISGu48t1/2V1/8WLF3Pq1KkMrULbtm3LUJ+I5B+1CIkIN954I02aNGHChAmcP3+eihUrEhUVxUcffURCQoLruk2bNvHdd9/RqVMnALy8vOjatSv/+9//+O233zK977+1XHh5eXHXXXfxv//9j08++YS0tLRM3WIXWkX+/l6//PILK1eudPtzRkdH4+Pjw8SJEzO834QJEzJd6+3tnan+L774ItMK3CVKlADI8Pt0KZ06dSI9PZ233347w/k33ngDh8NBx44ds/lJRCS3qEVIRAB47LHHuPvuu5k2bRoPPvggr776Kh07dqRZs2b079/fNX0+KCgow35eY8eO5bvvvqN169YMHDiQOnXqcOjQIb744guWL19OcHDwZe8bExPDxIkTiY2NpV69eq7xMhd07tyZOXPmcPvtt3PLLbcQFxfH5MmTqVu3rttdeeXKlWPEiBGMGzeOzp0706lTJ9atW8c333yToZXnwn3HjBlDv379aN68Ob///jvTp0/P0JIEUL16dYKDg5k8eTKlSpWiRIkSNG3alMjIyEz379KlC23atGHUqFHs2bOH+vXr89133zF37lweeeSRDAOjRSSf2DllTUTy14Xp5FlNdU9PTzfVq1c31atXN2lpacYYYxYvXmxatGhhAgICTGBgoOnSpYvZsmVLptf++eefpnfv3q5p+NWqVTODBw/ONO09K06n04SHh2c5rfzC82PHjjVVq1Y1fn5+pkGDBubrr7/ONDXdmH+fPn/hcz733HOmYsWKJiAgwNx4441m06ZNpmrVqpmmzz/66KOu61q0aGFWrlxpWrdubVq3bp3hvnPnzjV169Y1xYoVyzCVPqsaT506ZYYNG2bCwsKMj4+PqVGjhnn11VczLTUAmMGDB2f6/fhnnSJyZRzGaNSdiIiIeCaNERIRERGPpSAk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a4D0c89plWiRyygQg6XBarXJLTExMRw9epRnn32W+Ph4oqKiWLhwoWsA9d69ezMEr/DwcL799luGDRvGtddeS6VKlRg6dChPPPFErtWUXRemyV8dFpTv9xaRQuyzz+DsWas7DKBxY+shIrZwu0WosMutRHn92CXEJ53n64dack0lhSER+Rdnz8LQofD+++DrC+vXQ506dlclUmgUmBYhERFx09at0K0bbNoEDoc1Lkj7hIkUCApC2WCM4fcDiRw9dXFhxvNp2R8LJSIe7KOPrE1Sz56F0FCra6xtW7urEpG/KAhlwy9xJ+j+3qosn/PWitEikhVj4P77YepU6zg6Gj791ApDIlJgKAhlw6HEcwCU9CtG9XIXlwuoXr4kNUNL2VWWiBRkDoe1QaqXlzUj7Mknrf3CRKRAyVEQ2rVrFx9++CG7du3izTffpHz58nzzzTdUqVKFq6++OrdrLDAaVAnmk/5N7S5DRAoqY6xtMYKDreORI6FDB2jY0NayROTS3N7N74cffqBevXr88ssvzJkzh9OnTwOwYcOGS+73JSJS5J06BT17QqtW1nggsFqDFIJECjS3g9DIkSN54YUXWLRoUYbVnNu2bcuqVVmPoxERKdLWr4dGjeDzz60ZYj/+aHdFIpJNbgeh33//ndtvvz3T+fLly3Ps2LFcKUpEpFAwBv7v/+D662HHDggPt0JQhw52VyYi2eR2EAoODubQoUOZzq9bt45KlSrlSlEiIgVeYiLExFhT45OToUsXWLcOmje3uzIRcYPbQah79+488cQTxMfH43A4cDqdrFixghEjRtC7d++8qFFEpOAZMgS++MLaH+z112HuXGv3eBEpVNwOQmPHjqV27dqEh4dz+vRp6tatyw033EDz5s15+umn86JGEZGCZ9w4a1zQ8uUwfLg1XV5ECh23p8/7+voyZcoUnnnmGTZt2sTp06dp0KABNWrUyIv6REQKhpMnYd486NPHOq5cGX79VQFIpJBzOwgtX76cli1bUqVKFapUqZIXNYmIFCy//GKNB/rzT2uNoNtus84rBIkUem53jbVt25bIyEieeuoptmzZkhc1iYgUDMZY439atrRCUPXqVkuQiBQZbgehgwcP8uijj/LDDz9wzTXXEBUVxauvvsr+/fvzoj4REXscPw633gojRkBamrV7/Nq11rggESky3A5CISEhDBky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wYMH52qBIlKIHD8OffvC119bx3PmwN1321qSiMjluN0ilJCQQIcOHTKdb9euHYmJiblSlIgUQj//DA0aWCHIzw/+7//grrvsrkpE5LLcDkK33norX375Zabzc+fOpXPnzrlSlIgUIk4nvPwy3HAD7NsHNWrAqlXw4IPqChORAs/trrG6devy4osvsmzZMpo1awbAqlWrWLFiBY8++ihvvfWW61rtPSbiAR5+GC6MD+zRw1o1ulQpe2sSEckmhzF/n9rx7yIjI7P3xg4Hu3fvzlFReSkpKYmgoCASExMJDAzM1mu+XLefYTM30KpGCJ/019onIhls3Aht2sArr8B996kVSETyRE5+fmeH2y1CcXFxuXZzESmE0tPht98uLoh47bWwZ49agUSkUMrROkIi4qEOH4YOHaBlS/jll4vnFYJEpJBSEBKR7Fm6FOrXh8WLwdcX9u+3uyIRkSumICQil5eeDrGxEB1ttQhdc43VNXbnnXZXJiJyxXK015iIeIiDB6FnT1i2zDoeMADefBOKF7e1LBGR3KIgJCKXNmeOFYJKloR337Wmx4uIFCE56hr76aefuPfee2nWrBkHDhwA4JNPPmH58uU5KmLSpElERETg7+9P06ZNWb16dbZeN2PGDBwOB127ds3RfUXkXwweDCNGwJo1CkEiUiS5HYT++9//0r59ewICAli3bh3JyckAJCYmMnbsWLcLmDlzJsOHDyc2Npa1a9dSv3592rdvz5EjRy77uj179jBixAhatWrl9j1F5BL277f2Cjt1yjp2OODVV6FmTVvLEhHJK24HoRdeeIHJkyczZcoUfHx8XOdbtGjB2rVr3S5g/Pjx3H///fTr14+6desyefJkihcvzgcffHDJ16Snp9OzZ0+ee+45qlWr5vY9RSQL8+dDVBR89BE8+qjd1YiI5Au3g9D27du54YYbMp0PCgoiISHBrfdKSUlhzZo1REdHXyzIy4vo6GhWrlx5ydeNGTOG8uXL079//3+9R3JyMklJSRkeIvI3qanw2GPQubO1e3yjRvDEE3ZXJSKSL9wOQhUqVGDnzp2Zzi9fvtzt1pljx46Rnp5OaGhohvOhoaHEx8dn+Zrly5czdepUpkyZkq17jBs3jqCgINcjPDzcrRpFirQ//7Q2S33tNev44YdhxQqoXt3eukRE8onbQej+++9n6NCh/PLLLzgc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eKwiGYQmTZpEREQE/v7+NG3alNWrV1/2+i+++ILatWvj7+9PvXr1WLBgQT5VWvS5811MmTKFVq1aUbp0aUqXLk10dPS/fnfiHnf/37hgxowZOBwO18KncuXc/S4SEhIYPHgwFStWxM/Pj5o1a+rvqlzi7ncxYcIEatWqRUBAAOHh4QwbNozz58/nU7VF148//kiXLl0ICwvD4XDw1Vdf/etrli1bRsOGDfHz8+Oqq65i2rRp7t/YFDEzZswwvr6+5oMPPjCbN282999/vwkODjaHDx/O8voVK1YYb29v88orr5gtW7aYp59+2vj4+Jjff/89nysvetz9Lnr06GEmTZpk1q1bZ7Zu3Wr69u1rgoKCzP79+/O58qLJ3e/jgri4OFOpUiXTqlUrc9ttt+VPsUWcu99FcnKyady4senUqZNZvny5iYuLM8uWLTPr16/P58qLHne/i+nTpxs/Pz8zffp0ExcXZ7799ltTsWJFM2zYsHyuvOhZsGCBGTVqlJkzZ44BzJdffnnZ63fv3m2KFy9uhg8fbrZs2WImTpxovL29zcKFC926b5ELQk2aNDGDBw92Haenp5uwsDAzbty4LK/v1q2bueWWWzKca9q0qXnggQfytE5P4O538U9paWmmVKlS5qOPPsqrEj1KTr6PtLQ007x5c/P++++bPn36KAjlEne/i//7v/8z1apVMykpKflVosdw97sYPHiwadu2bYZzw4cPNy1atMjTOj1NdoLQ448/bq6++uoM52JiYkz79u3duleR6hpLSUlhzZo1REdHu855eXkRHR3NypUrs3zNypUrM1wP0L59+0teL9mTk+/in86ePUtqamqub7DniXL6fYwZM4by5cvTv3///CjTI+Tku5g3bx7NmjVj8ODBhIaGcs011zB27FjS09Pzq+wiKSffRfPmzVmzZo2r+2z37t0sWLCATp065UvNclFu/fwuECtL55Zjx46Rnp7u2p7jgtDQULZt25bla+Lj47O8Pj4+Ps/q9AQ5+S7+6YknniAsLCzTH3RxX06+j+XLlzN16lTWr1+fDxV6jpx8F7t372bp0qX07NmTBQsWsHPnTgYNGkRqaiqxsbH5UXaRlJPvokePHhw7doyWLVtijCEtLY0HH3yQp556Kj9Klr+51M/vpKQkzp07R0BAQLbep0i1CEnR8dJLLzFjxgy+/PJL/P397S7H45w6dYpevXoxZcoUQkJC7C7H4zmdTsqXL897771Ho0aNiImJYdSoUUyePNnu0jzOsmXLGDt2LO+88w5r165lzpw5zJ8/n+eff97u0iSHilSLUEhICN7e3hw+fDjD+cOHD1OhQoUsX1OhQgW3rpfsycl3ccFrr73GSy+9xOLFi7n22mvzskyP4e73sWvXLvbs2UOXLl1c55xOJwDFihVj+/btVK9ePW+LLqJy8v9GxYoV8fHxwdvb23WuTp06xMfHk5KSgq+vb57WXFTl5Lt45pln6NWrFwMGDACgXr16nDlzhoEDBzJq1KgMm4RL3rrUz+/AwMBstwZBEWsR8vX1pVGjRixZssR1zul0smTJEpo1a5bla5o1a5bheoBFixZd8nrJnpx8FwCvvPIKzz//PAsXLqRx48b5UapHcPf7qF27Nr///jvr1693PW699VbatGnD+vXrCQ8Pz8/yi5Sc/L/RokULdu7c6QqjAH/88QcVK1ZUCLoCOfkuzp49mynsXAioRlt35qtc+/nt3jjugm/GjBnGz8/PTJs2zWzZssUMHDjQBAcHm/j4eGOMMb169TIjR450Xb9ixQpTrFgx89prr5mtW7ea2NhYTZ/PJe5+Fy+99JLx9fU1s2fPNocOHXI9Tp06ZddHKFLc/T7+SbPGco+738XevXtNqVKlzJAhQ8z27dvN119/bcqXL29eeOEFuz5CkeHudxEbG2tKlSplPv/8c7N7927z3XffmerVq5tu3brZ9RGKjFOnTpl169aZdevWGcCMHz/erFu3zvz555/GGGNGjhxpevXq5br+wvT5xx57zGzdutVMmjRJ0+cvmDhxoqlSpYrx9fU1TZo0MatWrXI917p1a9OnT58M18+aNcvUrFnT+Pr6mquvvtrMnz8/nysuutz5LqpWrWqATI/Y2Nj8L7yIcvf/jb9TEMpd7n4XP//8s2natKnx8/Mz1apVMy+++KJJS0vL56qLJne+i9TUVDN69GhTvXp14+/vb8LDw82gQYPMyZMn87/wIub777/P8mfAhd//Pn36mNatW2d6TVRUlPH19TXVqlUzH374odv3dRijtjwRERHxTEVqjJCIiIiIOxSERERExGMpCImIiIjHUhASERERj6UgJCIiIh5LQUhEREQ8loKQiIiIeCwFIRHJZNq0aQQHB9tdxhVxOBx89dVXl72mb9++dO3aNV/qEZGCSUFIpIjq27cvDocj02Pnzp12l5YvDh06RMeOHQHYs2cPDoeD9evXZ7jmzTffZNq0aflfXDYsW7YMh8NBQkKC3aWIFGlFavd5EcmoQ4cOfPjhhxnOlStXzqZq8teldg//u6CgoHyoJCPtFi9SsKhFSKQI8/Pzo0KFChke3t7ejB8/nnr16lGiRAnCw8MZNGgQp0+fvuT7bNiwgTZt2lCqVCkCAwNp1KgRv/32m+v55cuX06pVKwICAggPD+fhhx/mzJkzl3y/0aNHExUVxbvvvkt4eDjFixenW7duJCYmuq5xOp2MGTOGypUr4+fnR1RUFAsXLnQ9n5KSwpAhQ6hYsSL+/v5UrVqVcePGuZ7/e9dYZGQkAA0aNMDhcHDjjTcCGbvG3nvvPcLCwjLs8A5w2223cd9997mO586dS8OGDfH396datWo899xzpKWlXfKzXrjHiy++SFhYGLVq1QLgk08+oXHjxpQqVYoKFSrQo0cPjhw5AlgtWG3atAGgdOnSOBwO+vbt6/p9GTduHJGRkQQEBFC/fn1mz559yfuLyOUpCIl4IC8vL9566y02b97MRx99xNKlS3n88ccveX3Pnj2pXLkyv/76K2vWrGHkyJH4+PgAsGvXLjp06MCdd97Jxo0bmTlzJsuXL2fIkCGXrWHnzp3MmjWL//3vfyxcuJB169YxaNAg1/Nvvvkmr7/+Oq+99hobN26kffv23HrrrezYsQOAt956i3nz5jFr1iy2b9/O9OnTiYiIyPJeq1evBmDx4sUcOnSIOXPmZLrm7rvv5vjx43z//feucydOnGDhwoX07NkTgJ9++onevXszdOhQtmzZwrvvvsu0adN48cUXL/tZlyxZwvbt21m0aBFff/01AKmpqTz//PNs2LCBr776ij179rjCTnh4OP/9738B2L59O4cOHeLNN98EYNy4cXz88cdMnjyZzZs3M2zYMO69915++OGHy9YgIpdwpbvFikjB1KdPH+Pt7W1KlCjhetx1111ZXvvFF1+YsmXLuo4//PBDExQU5DouVaqUmTZtWpav7d+/vxk4cGCGcz/99JPx8vIy586dy/I1sbGxxtvb2+zfv9917ptvvjFeXl7m0KFDxhhjwsLCzIsvvpjhddddd50ZNGiQMcaYhx56yLRt29Y4nc4s7wGYL7/80hhjTFxcnAHMunXrMlzTp08fc9ttt7mOb7vtNnPfffe5jt99910TFhZm0tPTjTHG3HTTTWbs2LEZ3uOTTz4xFStWzLKGC/cIDQ01ycnJl7zGGGN+/fVXA5hTp04ZYy7uxP33Xc3Pnz9vihcvbn7++ecMr+3fv7+55557Lvv+IpI1jRESKcLatGnD//3f/7mOS5QoAVgtI+PGjWPbtm0kJSWRlpbG+fPnOXv2LMWLF8/0PsOHD2fAgAF88sknREdHc/fdd1O9enXA6jbbuHEj06dPd11vjMHpdBIXF0edOnWyrK1KlSpUqlTJddysWTOcTifbt2+nePHiHDx4kBYtWmR4TYsWLdiwYQNgdTndfPPN1KpViw4dOtC5c2fatWuXw98pS8+ePbn//vt555138PPzY/r06XTv3h0vLy/XZ12xYkWGFqD09PTL/t4B1KtXL9O4oDVr1jB69Gg2bNjAyZMnXV1ye/fupW7dulm+z86dOzl79iw333xzhvMpKSk0aNAgx59bxJMpCIkUYSVKlOCqq67KcG7Pnj107tyZ//znP7z44ouUKVOG5cuX079/f1JSUrL8YT569Gh69OjB/Pnz+eabb4iNjWXGjBncfvvtnD59mgceeICHH3440+uqVKmSZ5+tYcOGxMXF8c0337B48WK6detGdHT0FY2X6dKlC8YY5s+fz3XXXcdPP/3EG2+84Xr+9OnTPPfcc9xxxx2ZXuvv73/J970QQC84c+YM7du3p3379kyfPp1y5cqxd+9e2rdvT0pKyiXf58I4rvnz52cIkWCNBxMR9ykIiXiYNWvW4HQ6ef31110tHbNmzfrX19WsWZOaNWsybNgw7rnnHj788ENuv/12GjZsyJYtWzIFrn+zd+9eDh48SFhYGACrVq3Cy8uLWrVqERgYSFhYGCtWrKB169au16xYsYImTZq4jgMDA4mJiSEmJoa77rqLDh06cOLECcqUKZPhXhdaY9LT0y9bk7+/P3fccQfTp09n586d1KpVi4YNG7qeb9iwIdu3b3f7s/7Ttm3bOH78OC+99BLh4eEAGQafX6rmunXr4ufnx969ezP8vohIzikIiXiYq666itTUVCZOnEiXLl1YsWIFkydPvuT1586d47HHHuOuu+4iMjKS/fv38+uvv3LnnXcC8MQTT3D99dczZMgQBgwYQIkSJdiyZQuLFi3i7bffvuT7+vv706dPH1577TWSkpJ4+OGH6datm2va+2OPPUZsbCzVq1cnKiqKDz/8kPXr17u64MaPH0/FihVp0KABXl5efPHFF1SoUCHLhSDLly9PQEAACxcupHLlyvj7+19y6nzPnj3p3Lkzmzdv5t57783w3LPPPkvnzp2pUqUKd911F15eXmzYsIFNmzbxwgsvXPb3/e+qVKmCr68vEydO5MEHH2TTpk08//zzGa6pWrUqDoeDr7/+mk6dOhEQEECpUqUYMWIEw4YNw+l00rJlSxITE1mxYgWBgYH06dMn2zWIyF/sHqQkInnjnwOB/278+PGmYsWKJiAgwLRv3958/PHHGQbm/n2wdHJysunevbsJDw83vr6+JiwszAwZMiTDQOjVq1ebm2++2ZQsWdKUKFHCXHvttZkGOv9dbGysqV+/vnnnnXdMWFiY8ff3N3fddZc5ceKE65r09HQzevRoU6lSJePj42Pq169vvvnmG9fz7733nomKijIlSpQwgYGB5qabbjJr1651Pc/fBksbY8yUKVNMeHi48fLyMq1bt77k71F6erqpWLGiAcyuXbsy1b5w4ULTvHlzExAQYAIDA02TJk3Me++9d8nPeqnv4bPPPjMRERHGz8/PNGvWzMybNy/TgO4xY8aYChUqGIfDYfr06WOMMcbpdJoJEyaYWrVqGR8fH1OuXDnTvn1788MPP1yyBhG5NIcxxtgbxUTE04wePZqvvvoq00rPIiL5TesIiYiIiMdSEBIRERGPpa4xERER8VhqERIRERGPpSAkIiIiHktBSERERDyWgpCIiIh4LAUhERER8VgKQiIiIuKxFIRERETEYykIiYiIiMdSEBIRERGP9f/JPV0b417l+AAAAABJRU5ErkJggg==",
|
865 |
+
"text/plain": [
|
866 |
+
"<Figure size 640x480 with 1 Axes>"
|
867 |
+
]
|
868 |
+
},
|
869 |
+
"metadata": {},
|
870 |
+
"output_type": "display_data"
|
871 |
+
}
|
872 |
+
],
|
873 |
+
"source": [
|
874 |
+
"predict_validation=rfc.predict_proba(xtest)[:,1]\n",
|
875 |
+
"fpr,tpr,_=roc_curve(ytest,predict_validation)\n",
|
876 |
+
"roc_auc=auc(fpr,tpr)\n",
|
877 |
+
"pyt.title(\"Roc validation\")\n",
|
878 |
+
"pyt.plot(fpr,tpr,label=\"AUC=%0.4f\" %roc_auc)\n",
|
879 |
+
"pyt.legend(loc='lower right')\n",
|
880 |
+
"pyt.plot([0,1],[0,1],'r--')\n",
|
881 |
+
"pyt.xlim([0,1])\n",
|
882 |
+
"pyt.ylim([0,1])\n",
|
883 |
+
"pyt.ylabel(\"True positive rate\")\n",
|
884 |
+
"pyt.xlabel(\"False positive rate\")\n",
|
885 |
+
"pyt.show()"
|
886 |
+
]
|
887 |
+
},
|
888 |
+
{
|
889 |
+
"cell_type": "code",
|
890 |
+
"execution_count": 19,
|
891 |
+
"id": "bf61bd49",
|
892 |
+
"metadata": {},
|
893 |
+
"outputs": [
|
894 |
+
{
|
895 |
+
"data": {
|
896 |
+
"text/plain": [
|
897 |
+
"{'bootstrap': True,\n",
|
898 |
+
" 'ccp_alpha': 0.0,\n",
|
899 |
+
" 'class_weight': None,\n",
|
900 |
+
" 'criterion': 'gini',\n",
|
901 |
+
" 'max_depth': None,\n",
|
902 |
+
" 'max_features': 'sqrt',\n",
|
903 |
+
" 'max_leaf_nodes': None,\n",
|
904 |
+
" 'max_samples': None,\n",
|
905 |
+
" 'min_impurity_decrease': 0.0,\n",
|
906 |
+
" 'min_samples_leaf': 1,\n",
|
907 |
+
" 'min_samples_split': 2,\n",
|
908 |
+
" 'min_weight_fraction_leaf': 0.0,\n",
|
909 |
+
" 'n_estimators': 100,\n",
|
910 |
+
" 'n_jobs': None,\n",
|
911 |
+
" 'oob_score': False,\n",
|
912 |
+
" 'random_state': None,\n",
|
913 |
+
" 'verbose': 0,\n",
|
914 |
+
" 'warm_start': False}"
|
915 |
+
]
|
916 |
+
},
|
917 |
+
"execution_count": 19,
|
918 |
+
"metadata": {},
|
919 |
+
"output_type": "execute_result"
|
920 |
+
}
|
921 |
+
],
|
922 |
+
"source": [
|
923 |
+
"\n",
|
924 |
+
"rfc.get_params()\n"
|
925 |
+
]
|
926 |
+
},
|
927 |
+
{
|
928 |
+
"cell_type": "code",
|
929 |
+
"execution_count": 20,
|
930 |
+
"id": "fad5d90c",
|
931 |
+
"metadata": {},
|
932 |
+
"outputs": [
|
933 |
+
{
|
934 |
+
"name": "stdout",
|
935 |
+
"output_type": "stream",
|
936 |
+
"text": [
|
937 |
+
"[0.88688017 0.91869835 0.86290491 0.87920585 0.80944865]\n",
|
938 |
+
"0.8714275856791531\n"
|
939 |
+
]
|
940 |
+
}
|
941 |
+
],
|
942 |
+
"source": [
|
943 |
+
"rfc=RandomForestClassifier() #实例化\n",
|
944 |
+
"\n",
|
945 |
+
"\n",
|
946 |
+
"score=cross_val_score(rfc,xtrain,ytrain,scoring='roc_auc',cv=5)\n",
|
947 |
+
"print(score)\n",
|
948 |
+
"print(score.mean())"
|
949 |
+
]
|
950 |
+
},
|
951 |
+
{
|
952 |
+
"cell_type": "code",
|
953 |
+
"execution_count": 21,
|
954 |
+
"id": "959954bb",
|
955 |
+
"metadata": {},
|
956 |
+
"outputs": [
|
957 |
+
{
|
958 |
+
"name": "stdout",
|
959 |
+
"output_type": "stream",
|
960 |
+
"text": [
|
961 |
+
"[0.86956522 0.88086691 0.8565508 0.76604278]\n",
|
962 |
+
"0.843256426568887\n"
|
963 |
+
]
|
964 |
+
},
|
965 |
+
{
|
966 |
+
"name": "stderr",
|
967 |
+
"output_type": "stream",
|
968 |
+
"text": [
|
969 |
+
"c:\\Python\\Python311\\Lib\\site-packages\\sklearn\\linear_model\\_logistic.py:460: ConvergenceWarning: lbfgs failed to converge (status=1):\n",
|
970 |
+
"STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.\n",
|
971 |
+
"\n",
|
972 |
+
"Increase the number of iterations (max_iter) or scale the data as shown in:\n",
|
973 |
+
" https://scikit-learn.org/stable/modules/preprocessing.html\n",
|
974 |
+
"Please also refer to the documentation for alternative solver options:\n",
|
975 |
+
" https://scikit-learn.org/stable/modules/linear_model.html#logistic-regression\n",
|
976 |
+
" n_iter_i = _check_optimize_result(\n"
|
977 |
+
]
|
978 |
+
}
|
979 |
+
],
|
980 |
+
"source": [
|
981 |
+
"rfc1=LogisticRegression() #实例化\n",
|
982 |
+
"score=cross_val_score(rfc1,xtrain,ytrain,scoring='roc_auc',cv=4)\n",
|
983 |
+
"print(score)\n",
|
984 |
+
"print(score.mean())"
|
985 |
+
]
|
986 |
+
},
|
987 |
+
{
|
988 |
+
"cell_type": "code",
|
989 |
+
"execution_count": 22,
|
990 |
+
"id": "901c12e5",
|
991 |
+
"metadata": {},
|
992 |
+
"outputs": [
|
993 |
+
{
|
994 |
+
"name": "stdout",
|
995 |
+
"output_type": "stream",
|
996 |
+
"text": [
|
997 |
+
"{'n_estimators': 450} 0.8753070939277835\n"
|
998 |
+
]
|
999 |
+
}
|
1000 |
+
],
|
1001 |
+
"source": [
|
1002 |
+
"#调整超参数\n",
|
1003 |
+
"params_test1 = {'n_estimators' :range(25,500,25)}\n",
|
1004 |
+
"gsearch1=GridSearchCV(estimator=RandomForestClassifier(min_samples_split=2,\n",
|
1005 |
+
" min_samples_leaf=1,\n",
|
1006 |
+
" max_depth=8,random_state=2),\n",
|
1007 |
+
" param_grid=params_test1,\n",
|
1008 |
+
" scoring='roc_auc',\n",
|
1009 |
+
" cv=5)\n",
|
1010 |
+
"gsearch1.fit(xtrain,ytrain)\n",
|
1011 |
+
"print(gsearch1.best_params_,gsearch1.best_score_)\n",
|
1012 |
+
" \n",
|
1013 |
+
" "
|
1014 |
+
]
|
1015 |
+
},
|
1016 |
+
{
|
1017 |
+
"cell_type": "code",
|
1018 |
+
"execution_count": 23,
|
1019 |
+
"id": "24704a5e",
|
1020 |
+
"metadata": {},
|
1021 |
+
"outputs": [
|
1022 |
+
{
|
1023 |
+
"name": "stdout",
|
1024 |
+
"output_type": "stream",
|
1025 |
+
"text": [
|
1026 |
+
"{'max_depth': 11} 0.8767195729499804\n"
|
1027 |
+
]
|
1028 |
+
}
|
1029 |
+
],
|
1030 |
+
"source": [
|
1031 |
+
"params_test2 = {'max_depth' :range(2,30,3)}\n",
|
1032 |
+
"gsearch2=GridSearchCV(estimator=RandomForestClassifier(n_estimators=225,\n",
|
1033 |
+
" min_samples_split=2,\n",
|
1034 |
+
" min_samples_leaf=1,random_state=2),\n",
|
1035 |
+
" param_grid=params_test2,\n",
|
1036 |
+
" scoring='roc_auc',\n",
|
1037 |
+
" cv=5)\n",
|
1038 |
+
"gsearch2.fit(xtrain,ytrain)\n",
|
1039 |
+
"print(gsearch2.best_params_,gsearch2.best_score_)"
|
1040 |
+
]
|
1041 |
+
},
|
1042 |
+
{
|
1043 |
+
"cell_type": "code",
|
1044 |
+
"execution_count": 24,
|
1045 |
+
"id": "ac90a0e3",
|
1046 |
+
"metadata": {},
|
1047 |
+
"outputs": [
|
1048 |
+
{
|
1049 |
+
"data": {
|
1050 |
+
"text/html": [
|
1051 |
+
"<style>#sk-container-id-2 {color: black;}#sk-container-id-2 pre{padding: 0;}#sk-container-id-2 div.sk-toggleable {background-color: white;}#sk-container-id-2 label.sk-toggleable__label {cursor: pointer;display: block;width: 100%;margin-bottom: 0;padding: 0.3em;box-sizing: border-box;text-align: center;}#sk-container-id-2 label.sk-toggleable__label-arrow:before {content: \"▸\";float: left;margin-right: 0.25em;color: #696969;}#sk-container-id-2 label.sk-toggleable__label-arrow:hover:before {color: black;}#sk-container-id-2 div.sk-estimator:hover label.sk-toggleable__label-arrow:before {color: black;}#sk-container-id-2 div.sk-toggleable__content {max-height: 0;max-width: 0;overflow: hidden;text-align: left;background-color: #f0f8ff;}#sk-container-id-2 div.sk-toggleable__content pre {margin: 0.2em;color: black;border-radius: 0.25em;background-color: #f0f8ff;}#sk-container-id-2 input.sk-toggleable__control:checked~div.sk-toggleable__content {max-height: 200px;max-width: 100%;overflow: auto;}#sk-container-id-2 input.sk-toggleable__control:checked~label.sk-toggleable__label-arrow:before {content: \"▾\";}#sk-container-id-2 div.sk-estimator input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-2 div.sk-label input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-2 input.sk-hidden--visually {border: 0;clip: rect(1px 1px 1px 1px);clip: rect(1px, 1px, 1px, 1px);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;}#sk-container-id-2 div.sk-estimator {font-family: monospace;background-color: #f0f8ff;border: 1px dotted black;border-radius: 0.25em;box-sizing: border-box;margin-bottom: 0.5em;}#sk-container-id-2 div.sk-estimator:hover {background-color: #d4ebff;}#sk-container-id-2 div.sk-parallel-item::after {content: \"\";width: 100%;border-bottom: 1px solid gray;flex-grow: 1;}#sk-container-id-2 div.sk-label:hover label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-2 div.sk-serial::before {content: \"\";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 0;bottom: 0;left: 50%;z-index: 0;}#sk-container-id-2 div.sk-serial {display: flex;flex-direction: column;align-items: center;background-color: white;padding-right: 0.2em;padding-left: 0.2em;position: relative;}#sk-container-id-2 div.sk-item {position: relative;z-index: 1;}#sk-container-id-2 div.sk-parallel {display: flex;align-items: stretch;justify-content: center;background-color: white;position: relative;}#sk-container-id-2 div.sk-item::before, #sk-container-id-2 div.sk-parallel-item::before {content: \"\";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 0;bottom: 0;left: 50%;z-index: -1;}#sk-container-id-2 div.sk-parallel-item {display: flex;flex-direction: column;z-index: 1;position: relative;background-color: white;}#sk-container-id-2 div.sk-parallel-item:first-child::after {align-self: flex-end;width: 50%;}#sk-container-id-2 div.sk-parallel-item:last-child::after {align-self: flex-start;width: 50%;}#sk-container-id-2 div.sk-parallel-item:only-child::after {width: 0;}#sk-container-id-2 div.sk-dashed-wrapped {border: 1px dashed gray;margin: 0 0.4em 0.5em 0.4em;box-sizing: border-box;padding-bottom: 0.4em;background-color: white;}#sk-container-id-2 div.sk-label label {font-family: monospace;font-weight: bold;display: inline-block;line-height: 1.2em;}#sk-container-id-2 div.sk-label-container {text-align: center;}#sk-container-id-2 div.sk-container {/* jupyter's `normalize.less` sets `[hidden] { display: none; }` but bootstrap.min.css set `[hidden] { display: none !important; }` so we also need the `!important` here to be able to override the default hidden behavior on the sphinx rendered scikit-learn.org. See: https://github.com/scikit-learn/scikit-learn/issues/21755 */display: inline-block !important;position: relative;}#sk-container-id-2 div.sk-text-repr-fallback {display: none;}</style><div id=\"sk-container-id-2\" class=\"sk-top-container\"><div class=\"sk-text-repr-fallback\"><pre>RandomForestClassifier(max_depth=11, n_estimators=225, random_state=2)</pre><b>In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. <br />On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.</b></div><div class=\"sk-container\" hidden><div class=\"sk-item\"><div class=\"sk-estimator sk-toggleable\"><input class=\"sk-toggleable__control sk-hidden--visually\" id=\"sk-estimator-id-2\" type=\"checkbox\" checked><label for=\"sk-estimator-id-2\" class=\"sk-toggleable__label sk-toggleable__label-arrow\">RandomForestClassifier</label><div class=\"sk-toggleable__content\"><pre>RandomForestClassifier(max_depth=11, n_estimators=225, random_state=2)</pre></div></div></div></div></div>"
|
1052 |
+
],
|
1053 |
+
"text/plain": [
|
1054 |
+
"RandomForestClassifier(max_depth=11, n_estimators=225, random_state=2)"
|
1055 |
+
]
|
1056 |
+
},
|
1057 |
+
"execution_count": 24,
|
1058 |
+
"metadata": {},
|
1059 |
+
"output_type": "execute_result"
|
1060 |
+
}
|
1061 |
+
],
|
1062 |
+
"source": [
|
1063 |
+
"gsearch2.best_estimator_"
|
1064 |
+
]
|
1065 |
+
},
|
1066 |
+
{
|
1067 |
+
"cell_type": "code",
|
1068 |
+
"execution_count": 25,
|
1069 |
+
"id": "fd6d6a1b",
|
1070 |
+
"metadata": {},
|
1071 |
+
"outputs": [
|
1072 |
+
{
|
1073 |
+
"data": {
|
1074 |
+
"text/plain": [
|
1075 |
+
"0.8657260201377848"
|
1076 |
+
]
|
1077 |
+
},
|
1078 |
+
"execution_count": 25,
|
1079 |
+
"metadata": {},
|
1080 |
+
"output_type": "execute_result"
|
1081 |
+
}
|
1082 |
+
],
|
1083 |
+
"source": [
|
1084 |
+
"#accuracy_score(ytest,gsearch3.best_estimator_.predict_proba(xtest)[:,1])\n",
|
1085 |
+
"roc_auc_score(ytest,gsearch2.best_estimator_.predict_proba(xtest)[:,1])"
|
1086 |
+
]
|
1087 |
+
},
|
1088 |
+
{
|
1089 |
+
"cell_type": "code",
|
1090 |
+
"execution_count": 26,
|
1091 |
+
"id": "d3415abc",
|
1092 |
+
"metadata": {},
|
1093 |
+
"outputs": [
|
1094 |
+
{
|
1095 |
+
"data": {
|
1096 |
+
"text/html": [
|
1097 |
+
"<div>\n",
|
1098 |
+
"<style scoped>\n",
|
1099 |
+
" .dataframe tbody tr th:only-of-type {\n",
|
1100 |
+
" vertical-align: middle;\n",
|
1101 |
+
" }\n",
|
1102 |
+
"\n",
|
1103 |
+
" .dataframe tbody tr th {\n",
|
1104 |
+
" vertical-align: top;\n",
|
1105 |
+
" }\n",
|
1106 |
+
"\n",
|
1107 |
+
" .dataframe thead th {\n",
|
1108 |
+
" text-align: right;\n",
|
1109 |
+
" }\n",
|
1110 |
+
"</style>\n",
|
1111 |
+
"<table border=\"1\" class=\"dataframe\">\n",
|
1112 |
+
" <thead>\n",
|
1113 |
+
" <tr style=\"text-align: right;\">\n",
|
1114 |
+
" <th></th>\n",
|
1115 |
+
" <th>PassengerId</th>\n",
|
1116 |
+
" <th>Pclass</th>\n",
|
1117 |
+
" <th>Name</th>\n",
|
1118 |
+
" <th>Sex</th>\n",
|
1119 |
+
" <th>Age</th>\n",
|
1120 |
+
" <th>SibSp</th>\n",
|
1121 |
+
" <th>Parch</th>\n",
|
1122 |
+
" <th>Ticket</th>\n",
|
1123 |
+
" <th>Fare</th>\n",
|
1124 |
+
" <th>Cabin</th>\n",
|
1125 |
+
" <th>Embarked</th>\n",
|
1126 |
+
" </tr>\n",
|
1127 |
+
" </thead>\n",
|
1128 |
+
" <tbody>\n",
|
1129 |
+
" <tr>\n",
|
1130 |
+
" <th>0</th>\n",
|
1131 |
+
" <td>892</td>\n",
|
1132 |
+
" <td>3</td>\n",
|
1133 |
+
" <td>Kelly, Mr. James</td>\n",
|
1134 |
+
" <td>male</td>\n",
|
1135 |
+
" <td>34.5</td>\n",
|
1136 |
+
" <td>0</td>\n",
|
1137 |
+
" <td>0</td>\n",
|
1138 |
+
" <td>330911</td>\n",
|
1139 |
+
" <td>7.8292</td>\n",
|
1140 |
+
" <td>NaN</td>\n",
|
1141 |
+
" <td>Q</td>\n",
|
1142 |
+
" </tr>\n",
|
1143 |
+
" <tr>\n",
|
1144 |
+
" <th>1</th>\n",
|
1145 |
+
" <td>893</td>\n",
|
1146 |
+
" <td>3</td>\n",
|
1147 |
+
" <td>Wilkes, Mrs. James (Ellen Needs)</td>\n",
|
1148 |
+
" <td>female</td>\n",
|
1149 |
+
" <td>47.0</td>\n",
|
1150 |
+
" <td>1</td>\n",
|
1151 |
+
" <td>0</td>\n",
|
1152 |
+
" <td>363272</td>\n",
|
1153 |
+
" <td>7.0000</td>\n",
|
1154 |
+
" <td>NaN</td>\n",
|
1155 |
+
" <td>S</td>\n",
|
1156 |
+
" </tr>\n",
|
1157 |
+
" <tr>\n",
|
1158 |
+
" <th>2</th>\n",
|
1159 |
+
" <td>894</td>\n",
|
1160 |
+
" <td>2</td>\n",
|
1161 |
+
" <td>Myles, Mr. Thomas Francis</td>\n",
|
1162 |
+
" <td>male</td>\n",
|
1163 |
+
" <td>62.0</td>\n",
|
1164 |
+
" <td>0</td>\n",
|
1165 |
+
" <td>0</td>\n",
|
1166 |
+
" <td>240276</td>\n",
|
1167 |
+
" <td>9.6875</td>\n",
|
1168 |
+
" <td>NaN</td>\n",
|
1169 |
+
" <td>Q</td>\n",
|
1170 |
+
" </tr>\n",
|
1171 |
+
" <tr>\n",
|
1172 |
+
" <th>3</th>\n",
|
1173 |
+
" <td>895</td>\n",
|
1174 |
+
" <td>3</td>\n",
|
1175 |
+
" <td>Wirz, Mr. Albert</td>\n",
|
1176 |
+
" <td>male</td>\n",
|
1177 |
+
" <td>27.0</td>\n",
|
1178 |
+
" <td>0</td>\n",
|
1179 |
+
" <td>0</td>\n",
|
1180 |
+
" <td>315154</td>\n",
|
1181 |
+
" <td>8.6625</td>\n",
|
1182 |
+
" <td>NaN</td>\n",
|
1183 |
+
" <td>S</td>\n",
|
1184 |
+
" </tr>\n",
|
1185 |
+
" <tr>\n",
|
1186 |
+
" <th>4</th>\n",
|
1187 |
+
" <td>896</td>\n",
|
1188 |
+
" <td>3</td>\n",
|
1189 |
+
" <td>Hirvonen, Mrs. Alexander (Helga E Lindqvist)</td>\n",
|
1190 |
+
" <td>female</td>\n",
|
1191 |
+
" <td>22.0</td>\n",
|
1192 |
+
" <td>1</td>\n",
|
1193 |
+
" <td>1</td>\n",
|
1194 |
+
" <td>3101298</td>\n",
|
1195 |
+
" <td>12.2875</td>\n",
|
1196 |
+
" <td>NaN</td>\n",
|
1197 |
+
" <td>S</td>\n",
|
1198 |
+
" </tr>\n",
|
1199 |
+
" </tbody>\n",
|
1200 |
+
"</table>\n",
|
1201 |
+
"</div>"
|
1202 |
+
],
|
1203 |
+
"text/plain": [
|
1204 |
+
" PassengerId Pclass Name Sex \\\n",
|
1205 |
+
"0 892 3 Kelly, Mr. James male \n",
|
1206 |
+
"1 893 3 Wilkes, Mrs. James (Ellen Needs) female \n",
|
1207 |
+
"2 894 2 Myles, Mr. Thomas Francis male \n",
|
1208 |
+
"3 895 3 Wirz, Mr. Albert male \n",
|
1209 |
+
"4 896 3 Hirvonen, Mrs. Alexander (Helga E Lindqvist) female \n",
|
1210 |
+
"\n",
|
1211 |
+
" Age SibSp Parch Ticket Fare Cabin Embarked \n",
|
1212 |
+
"0 34.5 0 0 330911 7.8292 NaN Q \n",
|
1213 |
+
"1 47.0 1 0 363272 7.0000 NaN S \n",
|
1214 |
+
"2 62.0 0 0 240276 9.6875 NaN Q \n",
|
1215 |
+
"3 27.0 0 0 315154 8.6625 NaN S \n",
|
1216 |
+
"4 22.0 1 1 3101298 12.2875 NaN S "
|
1217 |
+
]
|
1218 |
+
},
|
1219 |
+
"execution_count": 26,
|
1220 |
+
"metadata": {},
|
1221 |
+
"output_type": "execute_result"
|
1222 |
+
}
|
1223 |
+
],
|
1224 |
+
"source": [
|
1225 |
+
"df1=pd.read_csv(\"C:\\Learning\\MachineLearning\\RandomForest\\\\test.csv\",header=0)\n",
|
1226 |
+
"df1.head()"
|
1227 |
+
]
|
1228 |
+
},
|
1229 |
+
{
|
1230 |
+
"cell_type": "code",
|
1231 |
+
"execution_count": 27,
|
1232 |
+
"id": "c283c83f",
|
1233 |
+
"metadata": {},
|
1234 |
+
"outputs": [],
|
1235 |
+
"source": [
|
1236 |
+
"from FuncToNumberClass import FuncToNumber\n",
|
1237 |
+
"xtest2=FuncToNumber.ToNumber(df1.loc[:,features])"
|
1238 |
+
]
|
1239 |
+
},
|
1240 |
+
{
|
1241 |
+
"cell_type": "code",
|
1242 |
+
"execution_count": 28,
|
1243 |
+
"id": "371558e8",
|
1244 |
+
"metadata": {},
|
1245 |
+
"outputs": [
|
1246 |
+
{
|
1247 |
+
"data": {
|
1248 |
+
"text/html": [
|
1249 |
+
"<style>#sk-container-id-3 {color: black;}#sk-container-id-3 pre{padding: 0;}#sk-container-id-3 div.sk-toggleable {background-color: white;}#sk-container-id-3 label.sk-toggleable__label {cursor: pointer;display: block;width: 100%;margin-bottom: 0;padding: 0.3em;box-sizing: border-box;text-align: center;}#sk-container-id-3 label.sk-toggleable__label-arrow:before {content: \"▸\";float: left;margin-right: 0.25em;color: #696969;}#sk-container-id-3 label.sk-toggleable__label-arrow:hover:before {color: black;}#sk-container-id-3 div.sk-estimator:hover label.sk-toggleable__label-arrow:before {color: black;}#sk-container-id-3 div.sk-toggleable__content {max-height: 0;max-width: 0;overflow: hidden;text-align: left;background-color: #f0f8ff;}#sk-container-id-3 div.sk-toggleable__content pre {margin: 0.2em;color: black;border-radius: 0.25em;background-color: #f0f8ff;}#sk-container-id-3 input.sk-toggleable__control:checked~div.sk-toggleable__content {max-height: 200px;max-width: 100%;overflow: auto;}#sk-container-id-3 input.sk-toggleable__control:checked~label.sk-toggleable__label-arrow:before {content: \"▾\";}#sk-container-id-3 div.sk-estimator input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-3 div.sk-label input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-3 input.sk-hidden--visually {border: 0;clip: rect(1px 1px 1px 1px);clip: rect(1px, 1px, 1px, 1px);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;}#sk-container-id-3 div.sk-estimator {font-family: monospace;background-color: #f0f8ff;border: 1px dotted black;border-radius: 0.25em;box-sizing: border-box;margin-bottom: 0.5em;}#sk-container-id-3 div.sk-estimator:hover {background-color: #d4ebff;}#sk-container-id-3 div.sk-parallel-item::after {content: \"\";width: 100%;border-bottom: 1px solid gray;flex-grow: 1;}#sk-container-id-3 div.sk-label:hover label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-3 div.sk-serial::before {content: \"\";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 0;bottom: 0;left: 50%;z-index: 0;}#sk-container-id-3 div.sk-serial {display: flex;flex-direction: column;align-items: center;background-color: white;padding-right: 0.2em;padding-left: 0.2em;position: relative;}#sk-container-id-3 div.sk-item {position: relative;z-index: 1;}#sk-container-id-3 div.sk-parallel {display: flex;align-items: stretch;justify-content: center;background-color: white;position: relative;}#sk-container-id-3 div.sk-item::before, #sk-container-id-3 div.sk-parallel-item::before {content: \"\";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 0;bottom: 0;left: 50%;z-index: -1;}#sk-container-id-3 div.sk-parallel-item {display: flex;flex-direction: column;z-index: 1;position: relative;background-color: white;}#sk-container-id-3 div.sk-parallel-item:first-child::after {align-self: flex-end;width: 50%;}#sk-container-id-3 div.sk-parallel-item:last-child::after {align-self: flex-start;width: 50%;}#sk-container-id-3 div.sk-parallel-item:only-child::after {width: 0;}#sk-container-id-3 div.sk-dashed-wrapped {border: 1px dashed gray;margin: 0 0.4em 0.5em 0.4em;box-sizing: border-box;padding-bottom: 0.4em;background-color: white;}#sk-container-id-3 div.sk-label label {font-family: monospace;font-weight: bold;display: inline-block;line-height: 1.2em;}#sk-container-id-3 div.sk-label-container {text-align: center;}#sk-container-id-3 div.sk-container {/* jupyter's `normalize.less` sets `[hidden] { display: none; }` but bootstrap.min.css set `[hidden] { display: none !important; }` so we also need the `!important` here to be able to override the default hidden behavior on the sphinx rendered scikit-learn.org. See: https://github.com/scikit-learn/scikit-learn/issues/21755 */display: inline-block !important;position: relative;}#sk-container-id-3 div.sk-text-repr-fallback {display: none;}</style><div id=\"sk-container-id-3\" class=\"sk-top-container\"><div class=\"sk-text-repr-fallback\"><pre>RandomForestClassifier(max_depth=14, n_estimators=230, random_state=2)</pre><b>In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. <br />On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.</b></div><div class=\"sk-container\" hidden><div class=\"sk-item\"><div class=\"sk-estimator sk-toggleable\"><input class=\"sk-toggleable__control sk-hidden--visually\" id=\"sk-estimator-id-3\" type=\"checkbox\" checked><label for=\"sk-estimator-id-3\" class=\"sk-toggleable__label sk-toggleable__label-arrow\">RandomForestClassifier</label><div class=\"sk-toggleable__content\"><pre>RandomForestClassifier(max_depth=14, n_estimators=230, random_state=2)</pre></div></div></div></div></div>"
|
1250 |
+
],
|
1251 |
+
"text/plain": [
|
1252 |
+
"RandomForestClassifier(max_depth=14, n_estimators=230, random_state=2)"
|
1253 |
+
]
|
1254 |
+
},
|
1255 |
+
"execution_count": 28,
|
1256 |
+
"metadata": {},
|
1257 |
+
"output_type": "execute_result"
|
1258 |
+
}
|
1259 |
+
],
|
1260 |
+
"source": [
|
1261 |
+
"rfc=RandomForestClassifier(max_depth=14, min_samples_leaf=1, min_samples_split=2,\n",
|
1262 |
+
" n_estimators=230, random_state=2) #实例化\n",
|
1263 |
+
"rfc.fit(x,y) "
|
1264 |
+
]
|
1265 |
+
},
|
1266 |
+
{
|
1267 |
+
"cell_type": "code",
|
1268 |
+
"execution_count": 29,
|
1269 |
+
"id": "76baeb7f",
|
1270 |
+
"metadata": {},
|
1271 |
+
"outputs": [],
|
1272 |
+
"source": [
|
1273 |
+
"predictresult=rfc.predict(xtest2)\n",
|
1274 |
+
"row=df1.loc[xtest2.index]\n",
|
1275 |
+
"output = pd.DataFrame({'PassengerId': row.PassengerId,\"Name\":row.Name,'PredictSurvived': predictresult})\n",
|
1276 |
+
"output.to_csv(\"ResultPredict.csv\",index=0)"
|
1277 |
+
]
|
1278 |
+
},
|
1279 |
+
{
|
1280 |
+
"cell_type": "code",
|
1281 |
+
"execution_count": 31,
|
1282 |
+
"id": "2d404f2e",
|
1283 |
+
"metadata": {},
|
1284 |
+
"outputs": [
|
1285 |
+
{
|
1286 |
+
"name": "stdout",
|
1287 |
+
"output_type": "stream",
|
1288 |
+
"text": [
|
1289 |
+
"[0 0 0 0 1 0 1 0 1 0 0 0 1 0 1 1 0 0 1 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1\n",
|
1290 |
+
" 1 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 1 0 0 0 1 0 0 0 1 1 1 1 0 0 1 1 0 1 0\n",
|
1291 |
+
" 1 0 0 1 0 1 1 0 0 0 0 0 1 1 0 1 1 0 1 0 0 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0\n",
|
1292 |
+
" 1 1 1 1 0 0 1 0 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0\n",
|
1293 |
+
" 0 0 1 0 0 0 1 0 1 1 0 0 1 1 1 0 0 1 0 0 1 1 0 0 0 0 0 1 1 0 1 1 0 0 1 0 1\n",
|
1294 |
+
" 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 0 1 0 0 0 0 1 0 0 0 0 1 1 0 1 0 1 0 1 0\n",
|
1295 |
+
" 1 0 1 1 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 1 1 1 0 1 0 0 0 0 0 1\n",
|
1296 |
+
" 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 0 1 1 0 0 1 0 0 0 1 0 0 0 0\n",
|
1297 |
+
" 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0\n",
|
1298 |
+
" 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 1 0 0 0 1 0 1 0 0 0 0 1 1 0 1 0 0 1 1 0\n",
|
1299 |
+
" 0 1 0 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0 1 0 1 0 0 1 0 1 0 0 0 0\n",
|
1300 |
+
" 0 1 1 0 1 1 0 1 0 0 0]\n"
|
1301 |
+
]
|
1302 |
+
}
|
1303 |
+
],
|
1304 |
+
"source": [
|
1305 |
+
"import pickle\n",
|
1306 |
+
"\n",
|
1307 |
+
"# 保存模型\n",
|
1308 |
+
"with open('model.pkl', 'wb') as f:\n",
|
1309 |
+
" pickle.dump(rfc, f)\n",
|
1310 |
+
"\n",
|
1311 |
+
"# 加载模型\n",
|
1312 |
+
"with open('model.pkl', 'rb') as f:\n",
|
1313 |
+
" loaded_model = pickle.load(f)\n",
|
1314 |
+
"\n",
|
1315 |
+
"# 使用加载后的模型进行预测或其他操作\n",
|
1316 |
+
"result = loaded_model.predict(xtest2)\n",
|
1317 |
+
"print(result)"
|
1318 |
+
]
|
1319 |
+
}
|
1320 |
+
],
|
1321 |
+
"metadata": {
|
1322 |
+
"kernelspec": {
|
1323 |
+
"display_name": "Python 3",
|
1324 |
+
"language": "python",
|
1325 |
+
"name": "python3"
|
1326 |
+
},
|
1327 |
+
"language_info": {
|
1328 |
+
"codemirror_mode": {
|
1329 |
+
"name": "ipython",
|
1330 |
+
"version": 3
|
1331 |
+
},
|
1332 |
+
"file_extension": ".py",
|
1333 |
+
"mimetype": "text/x-python",
|
1334 |
+
"name": "python",
|
1335 |
+
"nbconvert_exporter": "python",
|
1336 |
+
"pygments_lexer": "ipython3",
|
1337 |
+
"version": "3.11.5"
|
1338 |
+
}
|
1339 |
+
},
|
1340 |
+
"nbformat": 4,
|
1341 |
+
"nbformat_minor": 5
|
1342 |
+
}
|
ResultPredict.csv
ADDED
@@ -0,0 +1,419 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
PassengerId,Name,PredictSurvived
|
2 |
+
892,"Kelly, Mr. James",0
|
3 |
+
893,"Wilkes, Mrs. James (Ellen Needs)",0
|
4 |
+
894,"Myles, Mr. Thomas Francis",0
|
5 |
+
895,"Wirz, Mr. Albert",0
|
6 |
+
896,"Hirvonen, Mrs. Alexander (Helga E Lindqvist)",1
|
7 |
+
897,"Svensson, Mr. Johan Cervin",0
|
8 |
+
898,"Connolly, Miss. Kate",1
|
9 |
+
899,"Caldwell, Mr. Albert Francis",0
|
10 |
+
900,"Abrahim, Mrs. Joseph (Sophie Halaut Easu)",1
|
11 |
+
901,"Davies, Mr. John Samuel",0
|
12 |
+
902,"Ilieff, Mr. Ylio",0
|
13 |
+
903,"Jones, Mr. Charles Cresson",0
|
14 |
+
904,"Snyder, Mrs. John Pillsbury (Nelle Stevenson)",1
|
15 |
+
905,"Howard, Mr. Benjamin",0
|
16 |
+
906,"Chaffee, Mrs. Herbert Fuller (Carrie Constance Toogood)",1
|
17 |
+
907,"del Carlo, Mrs. Sebastiano (Argenia Genovesi)",1
|
18 |
+
908,"Keane, Mr. Daniel",0
|
19 |
+
909,"Assaf, Mr. Gerios",0
|
20 |
+
910,"Ilmakangas, Miss. Ida Livija",1
|
21 |
+
911,"Assaf Khalil, Mrs. Mariana (Miriam"")""",1
|
22 |
+
912,"Rothschild, Mr. Martin",0
|
23 |
+
913,"Olsen, Master. Artur Karl",0
|
24 |
+
914,"Flegenheim, Mrs. Alfred (Antoinette)",1
|
25 |
+
915,"Williams, Mr. Richard Norris II",0
|
26 |
+
916,"Ryerson, Mrs. Arthur Larned (Emily Maria Borie)",1
|
27 |
+
917,"Robins, Mr. Alexander A",0
|
28 |
+
918,"Ostby, Miss. Helene Ragnhild",1
|
29 |
+
919,"Daher, Mr. Shedid",0
|
30 |
+
920,"Brady, Mr. John Bertram",0
|
31 |
+
921,"Samaan, Mr. Elias",0
|
32 |
+
922,"Louch, Mr. Charles Alexander",0
|
33 |
+
923,"Jefferys, Mr. Clifford Thomas",0
|
34 |
+
924,"Dean, Mrs. Bertram (Eva Georgetta Light)",0
|
35 |
+
925,"Johnston, Mrs. Andrew G (Elizabeth Lily"" Watson)""",0
|
36 |
+
926,"Mock, Mr. Philipp Edmund",0
|
37 |
+
927,"Katavelas, Mr. Vassilios (Catavelas Vassilios"")""",0
|
38 |
+
928,"Roth, Miss. Sarah A",1
|
39 |
+
929,"Cacic, Miss. Manda",1
|
40 |
+
930,"Sap, Mr. Julius",0
|
41 |
+
931,"Hee, Mr. Ling",0
|
42 |
+
932,"Karun, Mr. Franz",0
|
43 |
+
933,"Franklin, Mr. Thomas Parham",0
|
44 |
+
934,"Goldsmith, Mr. Nathan",0
|
45 |
+
935,"Corbett, Mrs. Walter H (Irene Colvin)",1
|
46 |
+
936,"Kimball, Mrs. Edwin Nelson Jr (Gertrude Parsons)",1
|
47 |
+
937,"Peltomaki, Mr. Nikolai Johannes",0
|
48 |
+
938,"Chevre, Mr. Paul Romaine",0
|
49 |
+
939,"Shaughnessy, Mr. Patrick",0
|
50 |
+
940,"Bucknell, Mrs. William Robert (Emma Eliza Ward)",1
|
51 |
+
941,"Coutts, Mrs. William (Winnie Minnie"" Treanor)""",0
|
52 |
+
942,"Smith, Mr. Lucien Philip",0
|
53 |
+
943,"Pulbaum, Mr. Franz",0
|
54 |
+
944,"Hocking, Miss. Ellen Nellie""""",1
|
55 |
+
945,"Fortune, Miss. Ethel Flora",1
|
56 |
+
946,"Mangiavacchi, Mr. Serafino Emilio",0
|
57 |
+
947,"Rice, Master. Albert",1
|
58 |
+
948,"Cor, Mr. Bartol",0
|
59 |
+
949,"Abelseth, Mr. Olaus Jorgensen",0
|
60 |
+
950,"Davison, Mr. Thomas Henry",0
|
61 |
+
951,"Chaudanson, Miss. Victorine",1
|
62 |
+
952,"Dika, Mr. Mirko",0
|
63 |
+
953,"McCrae, Mr. Arthur Gordon",0
|
64 |
+
954,"Bjorklund, Mr. Ernst Herbert",0
|
65 |
+
955,"Bradley, Miss. Bridget Delia",1
|
66 |
+
956,"Ryerson, Master. John Borie",1
|
67 |
+
957,"Corey, Mrs. Percy C (Mary Phyllis Elizabeth Miller)",1
|
68 |
+
958,"Burns, Miss. Mary Delia",1
|
69 |
+
959,"Moore, Mr. Clarence Bloomfield",0
|
70 |
+
960,"Tucker, Mr. Gilbert Milligan Jr",0
|
71 |
+
961,"Fortune, Mrs. Mark (Mary McDougald)",1
|
72 |
+
962,"Mulvihill, Miss. Bertha E",1
|
73 |
+
963,"Minkoff, Mr. Lazar",0
|
74 |
+
964,"Nieminen, Miss. Manta Josefina",1
|
75 |
+
965,"Ovies y Rodriguez, Mr. Servando",0
|
76 |
+
966,"Geiger, Miss. Amalie",1
|
77 |
+
967,"Keeping, Mr. Edwin",0
|
78 |
+
968,"Miles, Mr. Frank",0
|
79 |
+
969,"Cornell, Mrs. Robert Clifford (Malvina Helen Lamson)",1
|
80 |
+
970,"Aldworth, Mr. Charles Augustus",0
|
81 |
+
971,"Doyle, Miss. Elizabeth",1
|
82 |
+
972,"Boulos, Master. Akar",1
|
83 |
+
973,"Straus, Mr. Isidor",0
|
84 |
+
974,"Case, Mr. Howard Brown",0
|
85 |
+
975,"Demetri, Mr. Marinko",0
|
86 |
+
976,"Lamb, Mr. John Joseph",0
|
87 |
+
977,"Khalil, Mr. Betros",0
|
88 |
+
978,"Barry, Miss. Julia",1
|
89 |
+
979,"Badman, Miss. Emily Louisa",1
|
90 |
+
980,"O'Donoghue, Ms. Bridget",0
|
91 |
+
981,"Wells, Master. Ralph Lester",1
|
92 |
+
982,"Dyker, Mrs. Adolf Fredrik (Anna Elisabeth Judith Andersson)",1
|
93 |
+
983,"Pedersen, Mr. Olaf",0
|
94 |
+
984,"Davidson, Mrs. Thornton (Orian Hays)",1
|
95 |
+
985,"Guest, Mr. Robert",0
|
96 |
+
986,"Birnbaum, Mr. Jakob",0
|
97 |
+
987,"Tenglin, Mr. Gunnar Isidor",0
|
98 |
+
988,"Cavendish, Mrs. Tyrell William (Julia Florence Siegel)",1
|
99 |
+
989,"Makinen, Mr. Kalle Edvard",0
|
100 |
+
990,"Braf, Miss. Elin Ester Maria",1
|
101 |
+
991,"Nancarrow, Mr. William Henry",0
|
102 |
+
992,"Stengel, Mrs. Charles Emil Henry (Annie May Morris)",1
|
103 |
+
993,"Weisz, Mr. Leopold",0
|
104 |
+
994,"Foley, Mr. William",0
|
105 |
+
995,"Johansson Palmquist, Mr. Oskar Leander",0
|
106 |
+
996,"Thomas, Mrs. Alexander (Thamine Thelma"")""",1
|
107 |
+
997,"Holthen, Mr. Johan Martin",0
|
108 |
+
998,"Buckley, Mr. Daniel",0
|
109 |
+
999,"Ryan, Mr. Edward",0
|
110 |
+
1000,"Willer, Mr. Aaron (Abi Weller"")""",0
|
111 |
+
1001,"Swane, Mr. George",0
|
112 |
+
1002,"Stanton, Mr. Samuel Ward",0
|
113 |
+
1003,"Shine, Miss. Ellen Natalia",1
|
114 |
+
1004,"Evans, Miss. Edith Corse",1
|
115 |
+
1005,"Buckley, Miss. Katherine",1
|
116 |
+
1006,"Straus, Mrs. Isidor (Rosalie Ida Blun)",1
|
117 |
+
1007,"Chronopoulos, Mr. Demetrios",0
|
118 |
+
1008,"Thomas, Mr. John",0
|
119 |
+
1009,"Sandstrom, Miss. Beatrice Irene",1
|
120 |
+
1010,"Beattie, Mr. Thomson",0
|
121 |
+
1011,"Chapman, Mrs. John Henry (Sara Elizabeth Lawry)",1
|
122 |
+
1012,"Watt, Miss. Bertha J",1
|
123 |
+
1013,"Kiernan, Mr. John",0
|
124 |
+
1014,"Schabert, Mrs. Paul (Emma Mock)",1
|
125 |
+
1015,"Carver, Mr. Alfred John",0
|
126 |
+
1016,"Kennedy, Mr. John",0
|
127 |
+
1017,"Cribb, Miss. Laura Alice",1
|
128 |
+
1018,"Brobeck, Mr. Karl Rudolf",0
|
129 |
+
1019,"McCoy, Miss. Alicia",0
|
130 |
+
1020,"Bowenur, Mr. Solomon",0
|
131 |
+
1021,"Petersen, Mr. Marius",0
|
132 |
+
1022,"Spinner, Mr. Henry John",0
|
133 |
+
1023,"Gracie, Col. Archibald IV",0
|
134 |
+
1024,"Lefebre, Mrs. Frank (Frances)",0
|
135 |
+
1025,"Thomas, Mr. Charles P",0
|
136 |
+
1026,"Dintcheff, Mr. Valtcho",0
|
137 |
+
1027,"Carlsson, Mr. Carl Robert",0
|
138 |
+
1028,"Zakarian, Mr. Mapriededer",0
|
139 |
+
1029,"Schmidt, Mr. August",0
|
140 |
+
1030,"Drapkin, Miss. Jennie",1
|
141 |
+
1031,"Goodwin, Mr. Charles Frederick",0
|
142 |
+
1032,"Goodwin, Miss. Jessie Allis",0
|
143 |
+
1033,"Daniels, Miss. Sarah",1
|
144 |
+
1034,"Ryerson, Mr. Arthur Larned",0
|
145 |
+
1035,"Beauchamp, Mr. Henry James",0
|
146 |
+
1036,"Lindeberg-Lind, Mr. Erik Gustaf (Mr Edward Lingrey"")""",0
|
147 |
+
1037,"Vander Planke, Mr. Julius",0
|
148 |
+
1038,"Hilliard, Mr. Herbert Henry",0
|
149 |
+
1039,"Davies, Mr. Evan",0
|
150 |
+
1040,"Crafton, Mr. John Bertram",0
|
151 |
+
1041,"Lahtinen, Rev. William",0
|
152 |
+
1042,"Earnshaw, Mrs. Boulton (Olive Potter)",1
|
153 |
+
1043,"Matinoff, Mr. Nicola",0
|
154 |
+
1044,"Storey, Mr. Thomas",0
|
155 |
+
1045,"Klasen, Mrs. (Hulda Kristina Eugenia Lofqvist)",0
|
156 |
+
1046,"Asplund, Master. Filip Oscar",1
|
157 |
+
1047,"Duquemin, Mr. Joseph",0
|
158 |
+
1048,"Bird, Miss. Ellen",1
|
159 |
+
1049,"Lundin, Miss. Olga Elida",1
|
160 |
+
1050,"Borebank, Mr. John James",0
|
161 |
+
1051,"Peacock, Mrs. Benjamin (Edith Nile)",0
|
162 |
+
1052,"Smyth, Miss. Julia",1
|
163 |
+
1053,"Touma, Master. Georges Youssef",1
|
164 |
+
1054,"Wright, Miss. Marion",1
|
165 |
+
1055,"Pearce, Mr. Ernest",0
|
166 |
+
1056,"Peruschitz, Rev. Joseph Maria",0
|
167 |
+
1057,"Kink-Heilmann, Mrs. Anton (Luise Heilmann)",1
|
168 |
+
1058,"Brandeis, Mr. Emil",0
|
169 |
+
1059,"Ford, Mr. Edward Watson",0
|
170 |
+
1060,"Cassebeer, Mrs. Henry Arthur Jr (Eleanor Genevieve Fosdick)",1
|
171 |
+
1061,"Hellstrom, Miss. Hilda Maria",1
|
172 |
+
1062,"Lithman, Mr. Simon",0
|
173 |
+
1063,"Zakarian, Mr. Ortin",0
|
174 |
+
1064,"Dyker, Mr. Adolf Fredrik",0
|
175 |
+
1065,"Torfa, Mr. Assad",0
|
176 |
+
1066,"Asplund, Mr. Carl Oscar Vilhelm Gustafsson",0
|
177 |
+
1067,"Brown, Miss. Edith Eileen",1
|
178 |
+
1068,"Sincock, Miss. Maude",1
|
179 |
+
1069,"Stengel, Mr. Charles Emil Henry",0
|
180 |
+
1070,"Becker, Mrs. Allen Oliver (Nellie E Baumgardner)",1
|
181 |
+
1071,"Compton, Mrs. Alexander Taylor (Mary Eliza Ingersoll)",1
|
182 |
+
1072,"McCrie, Mr. James Matthew",0
|
183 |
+
1073,"Compton, Mr. Alexander Taylor Jr",0
|
184 |
+
1074,"Marvin, Mrs. Daniel Warner (Mary Graham Carmichael Farquarson)",1
|
185 |
+
1075,"Lane, Mr. Patrick",0
|
186 |
+
1076,"Douglas, Mrs. Frederick Charles (Mary Helene Baxter)",1
|
187 |
+
1077,"Maybery, Mr. Frank Hubert",0
|
188 |
+
1078,"Phillips, Miss. Alice Frances Louisa",1
|
189 |
+
1079,"Davies, Mr. Joseph",0
|
190 |
+
1080,"Sage, Miss. Ada",0
|
191 |
+
1081,"Veal, Mr. James",0
|
192 |
+
1082,"Angle, Mr. William A",0
|
193 |
+
1083,"Salomon, Mr. Abraham L",0
|
194 |
+
1084,"van Billiard, Master. Walter John",0
|
195 |
+
1085,"Lingane, Mr. John",0
|
196 |
+
1086,"Drew, Master. Marshall Brines",1
|
197 |
+
1087,"Karlsson, Mr. Julius Konrad Eugen",0
|
198 |
+
1088,"Spedden, Master. Robert Douglas",1
|
199 |
+
1089,"Nilsson, Miss. Berta Olivia",1
|
200 |
+
1090,"Baimbrigge, Mr. Charles Robert",0
|
201 |
+
1091,"Rasmussen, Mrs. (Lena Jacobsen Solvang)",0
|
202 |
+
1092,"Murphy, Miss. Nora",0
|
203 |
+
1093,"Danbom, Master. Gilbert Sigvard Emanuel",1
|
204 |
+
1094,"Astor, Col. John Jacob",0
|
205 |
+
1095,"Quick, Miss. Winifred Vera",1
|
206 |
+
1096,"Andrew, Mr. Frank Thomas",0
|
207 |
+
1097,"Omont, Mr. Alfred Fernand",0
|
208 |
+
1098,"McGowan, Miss. Katherine",0
|
209 |
+
1099,"Collett, Mr. Sidney C Stuart",0
|
210 |
+
1100,"Rosenbaum, Miss. Edith Louise",1
|
211 |
+
1101,"Delalic, Mr. Redjo",0
|
212 |
+
1102,"Andersen, Mr. Albert Karvin",0
|
213 |
+
1103,"Finoli, Mr. Luigi",0
|
214 |
+
1104,"Deacon, Mr. Percy William",0
|
215 |
+
1105,"Howard, Mrs. Benjamin (Ellen Truelove Arman)",1
|
216 |
+
1106,"Andersson, Miss. Ida Augusta Margareta",1
|
217 |
+
1107,"Head, Mr. Christopher",0
|
218 |
+
1108,"Mahon, Miss. Bridget Delia",1
|
219 |
+
1109,"Wick, Mr. George Dennick",0
|
220 |
+
1110,"Widener, Mrs. George Dunton (Eleanor Elkins)",1
|
221 |
+
1111,"Thomson, Mr. Alexander Morrison",0
|
222 |
+
1112,"Duran y More, Miss. Florentina",1
|
223 |
+
1113,"Reynolds, Mr. Harold J",0
|
224 |
+
1114,"Cook, Mrs. (Selena Rogers)",1
|
225 |
+
1115,"Karlsson, Mr. Einar Gervasius",0
|
226 |
+
1116,"Candee, Mrs. Edward (Helen Churchill Hungerford)",1
|
227 |
+
1117,"Moubarek, Mrs. George (Omine Amenia"" Alexander)""",1
|
228 |
+
1118,"Asplund, Mr. Johan Charles",0
|
229 |
+
1119,"McNeill, Miss. Bridget",0
|
230 |
+
1120,"Everett, Mr. Thomas James",0
|
231 |
+
1121,"Hocking, Mr. Samuel James Metcalfe",0
|
232 |
+
1122,"Sweet, Mr. George Frederick",1
|
233 |
+
1123,"Willard, Miss. Constance",1
|
234 |
+
1124,"Wiklund, Mr. Karl Johan",0
|
235 |
+
1125,"Linehan, Mr. Michael",0
|
236 |
+
1126,"Cumings, Mr. John Bradley",0
|
237 |
+
1127,"Vendel, Mr. Olof Edvin",0
|
238 |
+
1128,"Warren, Mr. Frank Manley",0
|
239 |
+
1129,"Baccos, Mr. Raffull",0
|
240 |
+
1130,"Hiltunen, Miss. Marta",1
|
241 |
+
1131,"Douglas, Mrs. Walter Donald (Mahala Dutton)",1
|
242 |
+
1132,"Lindstrom, Mrs. Carl Johan (Sigrid Posse)",1
|
243 |
+
1133,"Christy, Mrs. (Alice Frances)",1
|
244 |
+
1134,"Spedden, Mr. Frederic Oakley",0
|
245 |
+
1135,"Hyman, Mr. Abraham",0
|
246 |
+
1136,"Johnston, Master. William Arthur Willie""""",0
|
247 |
+
1137,"Kenyon, Mr. Frederick R",0
|
248 |
+
1138,"Karnes, Mrs. J Frank (Claire Bennett)",1
|
249 |
+
1139,"Drew, Mr. James Vivian",0
|
250 |
+
1140,"Hold, Mrs. Stephen (Annie Margaret Hill)",1
|
251 |
+
1141,"Khalil, Mrs. Betros (Zahie Maria"" Elias)""",1
|
252 |
+
1142,"West, Miss. Barbara J",1
|
253 |
+
1143,"Abrahamsson, Mr. Abraham August Johannes",0
|
254 |
+
1144,"Clark, Mr. Walter Miller",1
|
255 |
+
1145,"Salander, Mr. Karl Johan",0
|
256 |
+
1146,"Wenzel, Mr. Linhart",0
|
257 |
+
1147,"MacKay, Mr. George William",0
|
258 |
+
1148,"Mahon, Mr. John",0
|
259 |
+
1149,"Niklasson, Mr. Samuel",0
|
260 |
+
1150,"Bentham, Miss. Lilian W",1
|
261 |
+
1151,"Midtsjo, Mr. Karl Albert",0
|
262 |
+
1152,"de Messemaeker, Mr. Guillaume Joseph",0
|
263 |
+
1153,"Nilsson, Mr. August Ferdinand",0
|
264 |
+
1154,"Wells, Mrs. Arthur Henry (Addie"" Dart Trevaskis)""",1
|
265 |
+
1155,"Klasen, Miss. Gertrud Emilia",1
|
266 |
+
1156,"Portaluppi, Mr. Emilio Ilario Giuseppe",0
|
267 |
+
1157,"Lyntakoff, Mr. Stanko",0
|
268 |
+
1158,"Chisholm, Mr. Roderick Robert Crispin",0
|
269 |
+
1159,"Warren, Mr. Charles William",0
|
270 |
+
1160,"Howard, Miss. May Elizabeth",0
|
271 |
+
1161,"Pokrnic, Mr. Mate",0
|
272 |
+
1162,"McCaffry, Mr. Thomas Francis",0
|
273 |
+
1163,"Fox, Mr. Patrick",0
|
274 |
+
1164,"Clark, Mrs. Walter Miller (Virginia McDowell)",1
|
275 |
+
1165,"Lennon, Miss. Mary",0
|
276 |
+
1166,"Saade, Mr. Jean Nassr",0
|
277 |
+
1167,"Bryhl, Miss. Dagmar Jenny Ingeborg ",1
|
278 |
+
1168,"Parker, Mr. Clifford Richard",0
|
279 |
+
1169,"Faunthorpe, Mr. Harry",0
|
280 |
+
1170,"Ware, Mr. John James",0
|
281 |
+
1171,"Oxenham, Mr. Percy Thomas",0
|
282 |
+
1172,"Oreskovic, Miss. Jelka",1
|
283 |
+
1173,"Peacock, Master. Alfred Edward",1
|
284 |
+
1174,"Fleming, Miss. Honora",0
|
285 |
+
1175,"Touma, Miss. Maria Youssef",1
|
286 |
+
1176,"Rosblom, Miss. Salli Helena",1
|
287 |
+
1177,"Dennis, Mr. William",0
|
288 |
+
1178,"Franklin, Mr. Charles (Charles Fardon)",0
|
289 |
+
1179,"Snyder, Mr. John Pillsbury",1
|
290 |
+
1180,"Mardirosian, Mr. Sarkis",0
|
291 |
+
1181,"Ford, Mr. Arthur",0
|
292 |
+
1182,"Rheims, Mr. George Alexander Lucien",0
|
293 |
+
1183,"Daly, Miss. Margaret Marcella Maggie""""",1
|
294 |
+
1184,"Nasr, Mr. Mustafa",0
|
295 |
+
1185,"Dodge, Dr. Washington",0
|
296 |
+
1186,"Wittevrongel, Mr. Camille",0
|
297 |
+
1187,"Angheloff, Mr. Minko",0
|
298 |
+
1188,"Laroche, Miss. Louise",1
|
299 |
+
1189,"Samaan, Mr. Hanna",0
|
300 |
+
1190,"Loring, Mr. Joseph Holland",0
|
301 |
+
1191,"Johansson, Mr. Nils",0
|
302 |
+
1192,"Olsson, Mr. Oscar Wilhelm",0
|
303 |
+
1193,"Malachard, Mr. Noel",0
|
304 |
+
1194,"Phillips, Mr. Escott Robert",0
|
305 |
+
1195,"Pokrnic, Mr. Tome",0
|
306 |
+
1196,"McCarthy, Miss. Catherine Katie""""",0
|
307 |
+
1197,"Crosby, Mrs. Edward Gifford (Catherine Elizabeth Halstead)",1
|
308 |
+
1198,"Allison, Mr. Hudson Joshua Creighton",0
|
309 |
+
1199,"Aks, Master. Philip Frank",1
|
310 |
+
1200,"Hays, Mr. Charles Melville",0
|
311 |
+
1201,"Hansen, Mrs. Claus Peter (Jennie L Howard)",0
|
312 |
+
1202,"Cacic, Mr. Jego Grga",0
|
313 |
+
1203,"Vartanian, Mr. David",0
|
314 |
+
1204,"Sadowitz, Mr. Harry",0
|
315 |
+
1205,"Carr, Miss. Jeannie",0
|
316 |
+
1206,"White, Mrs. John Stuart (Ella Holmes)",1
|
317 |
+
1207,"Hagardon, Miss. Kate",1
|
318 |
+
1208,"Spencer, Mr. William Augustus",0
|
319 |
+
1209,"Rogers, Mr. Reginald Harry",0
|
320 |
+
1210,"Jonsson, Mr. Nils Hilding",0
|
321 |
+
1211,"Jefferys, Mr. Ernest Wilfred",0
|
322 |
+
1212,"Andersson, Mr. Johan Samuel",0
|
323 |
+
1213,"Krekorian, Mr. Neshan",0
|
324 |
+
1214,"Nesson, Mr. Israel",0
|
325 |
+
1215,"Rowe, Mr. Alfred G",0
|
326 |
+
1216,"Kreuchen, Miss. Emilie",1
|
327 |
+
1217,"Assam, Mr. Ali",0
|
328 |
+
1218,"Becker, Miss. Ruth Elizabeth",1
|
329 |
+
1219,"Rosenshine, Mr. George (Mr George Thorne"")""",0
|
330 |
+
1220,"Clarke, Mr. Charles Valentine",0
|
331 |
+
1221,"Enander, Mr. Ingvar",0
|
332 |
+
1222,"Davies, Mrs. John Morgan (Elizabeth Agnes Mary White) ",1
|
333 |
+
1223,"Dulles, Mr. William Crothers",0
|
334 |
+
1224,"Thomas, Mr. Tannous",0
|
335 |
+
1225,"Nakid, Mrs. Said (Waika Mary"" Mowad)""",1
|
336 |
+
1226,"Cor, Mr. Ivan",0
|
337 |
+
1227,"Maguire, Mr. John Edward",0
|
338 |
+
1228,"de Brito, Mr. Jose Joaquim",0
|
339 |
+
1229,"Elias, Mr. Joseph",0
|
340 |
+
1230,"Denbury, Mr. Herbert",0
|
341 |
+
1231,"Betros, Master. Seman",0
|
342 |
+
1232,"Fillbrook, Mr. Joseph Charles",0
|
343 |
+
1233,"Lundstrom, Mr. Thure Edvin",0
|
344 |
+
1234,"Sage, Mr. John George",0
|
345 |
+
1235,"Cardeza, Mrs. James Warburton Martinez (Charlotte Wardle Drake)",1
|
346 |
+
1236,"van Billiard, Master. James William",0
|
347 |
+
1237,"Abelseth, Miss. Karen Marie",1
|
348 |
+
1238,"Botsford, Mr. William Hull",0
|
349 |
+
1239,"Whabee, Mrs. George Joseph (Shawneene Abi-Saab)",1
|
350 |
+
1240,"Giles, Mr. Ralph",0
|
351 |
+
1241,"Walcroft, Miss. Nellie",1
|
352 |
+
1242,"Greenfield, Mrs. Leo David (Blanche Strouse)",1
|
353 |
+
1243,"Stokes, Mr. Philip Joseph",0
|
354 |
+
1244,"Dibden, Mr. William",0
|
355 |
+
1245,"Herman, Mr. Samuel",0
|
356 |
+
1246,"Dean, Miss. Elizabeth Gladys Millvina""""",1
|
357 |
+
1247,"Julian, Mr. Henry Forbes",0
|
358 |
+
1248,"Brown, Mrs. John Murray (Caroline Lane Lamson)",1
|
359 |
+
1249,"Lockyer, Mr. Edward",0
|
360 |
+
1250,"O'Keefe, Mr. Patrick",0
|
361 |
+
1251,"Lindell, Mrs. Edvard Bengtsson (Elin Gerda Persson)",0
|
362 |
+
1252,"Sage, Master. William Henry",0
|
363 |
+
1253,"Mallet, Mrs. Albert (Antoinette Magnin)",1
|
364 |
+
1254,"Ware, Mrs. John James (Florence Louise Long)",1
|
365 |
+
1255,"Strilic, Mr. Ivan",0
|
366 |
+
1256,"Harder, Mrs. George Achilles (Dorothy Annan)",1
|
367 |
+
1257,"Sage, Mrs. John (Annie Bullen)",0
|
368 |
+
1258,"Caram, Mr. Joseph",0
|
369 |
+
1259,"Riihivouri, Miss. Susanna Juhantytar Sanni""""",1
|
370 |
+
1260,"Gibson, Mrs. Leonard (Pauline C Boeson)",1
|
371 |
+
1261,"Pallas y Castello, Mr. Emilio",0
|
372 |
+
1262,"Giles, Mr. Edgar",0
|
373 |
+
1263,"Wilson, Miss. Helen Alice",1
|
374 |
+
1264,"Ismay, Mr. Joseph Bruce",0
|
375 |
+
1265,"Harbeck, Mr. William H",0
|
376 |
+
1266,"Dodge, Mrs. Washington (Ruth Vidaver)",1
|
377 |
+
1267,"Bowen, Miss. Grace Scott",1
|
378 |
+
1268,"Kink, Miss. Maria",1
|
379 |
+
1269,"Cotterill, Mr. Henry Harry""""",0
|
380 |
+
1270,"Hipkins, Mr. William Edward",0
|
381 |
+
1271,"Asplund, Master. Carl Edgar",1
|
382 |
+
1272,"O'Connor, Mr. Patrick",0
|
383 |
+
1273,"Foley, Mr. Joseph",0
|
384 |
+
1274,"Risien, Mrs. Samuel (Emma)",0
|
385 |
+
1275,"McNamee, Mrs. Neal (Eileen O'Leary)",0
|
386 |
+
1276,"Wheeler, Mr. Edwin Frederick""""",0
|
387 |
+
1277,"Herman, Miss. Kate",1
|
388 |
+
1278,"Aronsson, Mr. Ernst Axel Algot",0
|
389 |
+
1279,"Ashby, Mr. John",0
|
390 |
+
1280,"Canavan, Mr. Patrick",0
|
391 |
+
1281,"Palsson, Master. Paul Folke",1
|
392 |
+
1282,"Payne, Mr. Vivian Ponsonby",1
|
393 |
+
1283,"Lines, Mrs. Ernest H (Elizabeth Lindsey James)",1
|
394 |
+
1284,"Abbott, Master. Eugene Joseph",0
|
395 |
+
1285,"Gilbert, Mr. William",0
|
396 |
+
1286,"Kink-Heilmann, Mr. Anton",0
|
397 |
+
1287,"Smith, Mrs. Lucien Philip (Mary Eloise Hughes)",1
|
398 |
+
1288,"Colbert, Mr. Patrick",0
|
399 |
+
1289,"Frolicher-Stehli, Mrs. Maxmillian (Margaretha Emerentia Stehli)",1
|
400 |
+
1290,"Larsson-Rondberg, Mr. Edvard A",0
|
401 |
+
1291,"Conlon, Mr. Thomas Henry",0
|
402 |
+
1292,"Bonnell, Miss. Caroline",1
|
403 |
+
1293,"Gale, Mr. Harry",0
|
404 |
+
1294,"Gibson, Miss. Dorothy Winifred",1
|
405 |
+
1295,"Carrau, Mr. Jose Pedro",0
|
406 |
+
1296,"Frauenthal, Mr. Isaac Gerald",0
|
407 |
+
1297,"Nourney, Mr. Alfred (Baron von Drachstedt"")""",0
|
408 |
+
1298,"Ware, Mr. William Jeffery",0
|
409 |
+
1299,"Widener, Mr. George Dunton",0
|
410 |
+
1300,"Riordan, Miss. Johanna Hannah""""",1
|
411 |
+
1301,"Peacock, Miss. Treasteall",1
|
412 |
+
1302,"Naughton, Miss. Hannah",0
|
413 |
+
1303,"Minahan, Mrs. William Edward (Lillian E Thorpe)",1
|
414 |
+
1304,"Henriksson, Miss. Jenny Lovisa",1
|
415 |
+
1305,"Spector, Mr. Woolf",0
|
416 |
+
1306,"Oliva y Ocana, Dona. Fermina",1
|
417 |
+
1307,"Saether, Mr. Simon Sivertsen",0
|
418 |
+
1308,"Ware, Mr. Frederick",0
|
419 |
+
1309,"Peter, Master. Michael J",0
|
final.csv
ADDED
@@ -0,0 +1,892 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
,PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked
|
2 |
+
0,1,0,3,"Braund, Mr. Owen Harris",male,22.0,1,0,A/5 21171,7.25,C85,S
|
3 |
+
1,2,1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38.0,1,0,PC 17599,71.2833,C85,C
|
4 |
+
2,3,1,3,"Heikkinen, Miss. Laina",female,26.0,0,0,STON/O2. 3101282,7.925,C123,S
|
5 |
+
3,4,1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35.0,1,0,113803,53.1,C123,S
|
6 |
+
4,5,0,3,"Allen, Mr. William Henry",male,35.0,0,0,373450,8.05,E46,S
|
7 |
+
5,6,0,3,"Moran, Mr. James",male,28.0,0,0,330877,8.4583,E46,Q
|
8 |
+
6,7,0,1,"McCarthy, Mr. Timothy J",male,54.0,0,0,17463,51.8625,E46,S
|
9 |
+
7,8,0,3,"Palsson, Master. Gosta Leonard",male,2.0,3,1,349909,21.075,G6,S
|
10 |
+
8,9,1,3,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27.0,0,2,347742,11.1333,G6,S
|
11 |
+
9,10,1,2,"Nasser, Mrs. Nicholas (Adele Achem)",female,14.0,1,0,237736,30.0708,G6,C
|
12 |
+
10,11,1,3,"Sandstrom, Miss. Marguerite Rut",female,4.0,1,1,PP 9549,16.7,G6,S
|
13 |
+
11,12,1,1,"Bonnell, Miss. Elizabeth",female,58.0,0,0,113783,26.55,C103,S
|
14 |
+
12,13,0,3,"Saundercock, Mr. William Henry",male,20.0,0,0,A/5. 2151,8.05,D56,S
|
15 |
+
13,14,0,3,"Andersson, Mr. Anders Johan",male,39.0,1,5,347082,31.275,D56,S
|
16 |
+
14,15,0,3,"Vestrom, Miss. Hulda Amanda Adolfina",female,14.0,0,0,350406,7.8542,D56,S
|
17 |
+
15,16,1,2,"Hewlett, Mrs. (Mary D Kingcome) ",female,55.0,0,0,248706,16.0,D56,S
|
18 |
+
16,17,0,3,"Rice, Master. Eugene",male,2.0,4,1,382652,29.125,D56,Q
|
19 |
+
17,18,1,2,"Williams, Mr. Charles Eugene",male,28.0,0,0,244373,13.0,D56,S
|
20 |
+
18,19,0,3,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31.0,1,0,345763,18.0,D56,S
|
21 |
+
19,20,1,3,"Masselmani, Mrs. Fatima",female,28.0,0,0,2649,7.225,D56,C
|
22 |
+
20,21,0,2,"Fynney, Mr. Joseph J",male,35.0,0,0,239865,26.0,D56,S
|
23 |
+
21,22,1,2,"Beesley, Mr. Lawrence",male,34.0,0,0,248698,13.0,D56,S
|
24 |
+
22,23,1,3,"McGowan, Miss. Anna ""Annie""",female,15.0,0,0,330923,8.0292,A6,Q
|
25 |
+
23,24,1,1,"Sloper, Mr. William Thompson",male,28.0,0,0,113788,35.5,A6,S
|
26 |
+
24,25,0,3,"Palsson, Miss. Torborg Danira",female,8.0,3,1,349909,21.075,C23 C25 C27,S
|
27 |
+
25,26,1,3,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38.0,1,5,347077,31.3875,C23 C25 C27,S
|
28 |
+
26,27,0,3,"Emir, Mr. Farred Chehab",male,28.0,0,0,2631,7.225,C23 C25 C27,C
|
29 |
+
27,28,0,1,"Fortune, Mr. Charles Alexander",male,19.0,3,2,19950,263.0,C23 C25 C27,S
|
30 |
+
28,29,1,3,"O'Dwyer, Miss. Ellen ""Nellie""",female,28.0,0,0,330959,7.8792,B78,Q
|
31 |
+
29,30,0,3,"Todoroff, Mr. Lalio",male,28.0,0,0,349216,7.8958,B78,S
|
32 |
+
30,31,0,1,"Uruchurtu, Don. Manuel E",male,40.0,0,0,PC 17601,27.7208,B78,C
|
33 |
+
31,32,1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,28.0,1,0,PC 17569,146.5208,B78,C
|
34 |
+
32,33,1,3,"Glynn, Miss. Mary Agatha",female,28.0,0,0,335677,7.75,D33,Q
|
35 |
+
33,34,0,2,"Wheadon, Mr. Edward H",male,66.0,0,0,C.A. 24579,10.5,D33,S
|
36 |
+
34,35,0,1,"Meyer, Mr. Edgar Joseph",male,28.0,1,0,PC 17604,82.1708,D33,C
|
37 |
+
35,36,0,1,"Holverson, Mr. Alexander Oskar",male,42.0,1,0,113789,52.0,D33,S
|
38 |
+
36,37,1,3,"Mamee, Mr. Hanna",male,28.0,0,0,2677,7.2292,D33,C
|
39 |
+
37,38,0,3,"Cann, Mr. Ernest Charles",male,21.0,0,0,A./5. 2152,8.05,D33,S
|
40 |
+
38,39,0,3,"Vander Planke, Miss. Augusta Maria",female,18.0,2,0,345764,18.0,D33,S
|
41 |
+
39,40,1,3,"Nicola-Yarred, Miss. Jamila",female,14.0,1,0,2651,11.2417,D33,C
|
42 |
+
40,41,0,3,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40.0,1,0,7546,9.475,D33,S
|
43 |
+
41,42,0,2,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27.0,1,0,11668,21.0,D33,S
|
44 |
+
42,43,0,3,"Kraeff, Mr. Theodor",male,28.0,0,0,349253,7.8958,D33,C
|
45 |
+
43,44,1,2,"Laroche, Miss. Simonne Marie Anne Andree",female,3.0,1,2,SC/Paris 2123,41.5792,D33,C
|
46 |
+
44,45,1,3,"Devaney, Miss. Margaret Delia",female,19.0,0,0,330958,7.8792,D33,Q
|
47 |
+
45,46,0,3,"Rogers, Mr. William John",male,28.0,0,0,S.C./A.4. 23567,8.05,D33,S
|
48 |
+
46,47,0,3,"Lennon, Mr. Denis",male,28.0,1,0,370371,15.5,D33,Q
|
49 |
+
47,48,1,3,"O'Driscoll, Miss. Bridget",female,28.0,0,0,14311,7.75,D33,Q
|
50 |
+
48,49,0,3,"Samaan, Mr. Youssef",male,28.0,2,0,2662,21.6792,D33,C
|
51 |
+
49,50,0,3,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18.0,1,0,349237,17.8,D33,S
|
52 |
+
50,51,0,3,"Panula, Master. Juha Niilo",male,7.0,4,1,3101295,39.6875,D33,S
|
53 |
+
51,52,0,3,"Nosworthy, Mr. Richard Cater",male,21.0,0,0,A/4. 39886,7.8,D33,S
|
54 |
+
52,53,1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49.0,1,0,PC 17572,76.7292,D33,C
|
55 |
+
53,54,1,2,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29.0,1,0,2926,26.0,B30,S
|
56 |
+
54,55,0,1,"Ostby, Mr. Engelhart Cornelius",male,65.0,0,1,113509,61.9792,B30,C
|
57 |
+
55,56,1,1,"Woolner, Mr. Hugh",male,28.0,0,0,19947,35.5,C52,S
|
58 |
+
56,57,1,2,"Rugg, Miss. Emily",female,21.0,0,0,C.A. 31026,10.5,B28,S
|
59 |
+
57,58,0,3,"Novel, Mr. Mansouer",male,28.5,0,0,2697,7.2292,B28,C
|
60 |
+
58,59,1,2,"West, Miss. Constance Mirium",female,5.0,1,2,C.A. 34651,27.75,B28,S
|
61 |
+
59,60,0,3,"Goodwin, Master. William Frederick",male,11.0,5,2,CA 2144,46.9,B28,S
|
62 |
+
60,61,0,3,"Sirayanian, Mr. Orsen",male,22.0,0,0,2669,7.2292,B28,C
|
63 |
+
61,62,1,1,"Icard, Miss. Amelie",female,38.0,0,0,113572,80.0,B28,S
|
64 |
+
62,63,0,1,"Harris, Mr. Henry Birkhardt",male,45.0,1,0,36973,83.475,C83,S
|
65 |
+
63,64,0,3,"Skoog, Master. Harald",male,4.0,3,2,347088,27.9,F33,S
|
66 |
+
64,65,0,1,"Stewart, Mr. Albert A",male,28.0,0,0,PC 17605,27.7208,F33,C
|
67 |
+
65,66,1,3,"Moubarek, Master. Gerios",male,28.0,1,1,2661,15.2458,F33,C
|
68 |
+
66,67,1,2,"Nye, Mrs. (Elizabeth Ramell)",female,29.0,0,0,C.A. 29395,10.5,F33,S
|
69 |
+
67,68,0,3,"Crease, Mr. Ernest James",male,19.0,0,0,S.P. 3464,8.1583,F G73,S
|
70 |
+
68,69,1,3,"Andersson, Miss. Erna Alexandra",female,17.0,4,2,3101281,7.925,F G73,S
|
71 |
+
69,70,0,3,"Kink, Mr. Vincenz",male,26.0,2,0,315151,8.6625,F G73,S
|
72 |
+
70,71,0,2,"Jenkin, Mr. Stephen Curnow",male,32.0,0,0,C.A. 33111,10.5,F G73,S
|
73 |
+
71,72,0,3,"Goodwin, Miss. Lillian Amy",female,16.0,5,2,CA 2144,46.9,F G73,S
|
74 |
+
72,73,0,2,"Hood, Mr. Ambrose Jr",male,21.0,0,0,S.O.C. 14879,73.5,F G73,S
|
75 |
+
73,74,0,3,"Chronopoulos, Mr. Apostolos",male,26.0,1,0,2680,14.4542,F G73,C
|
76 |
+
74,75,1,3,"Bing, Mr. Lee",male,32.0,0,0,1601,56.4958,F G73,S
|
77 |
+
75,76,0,3,"Moen, Mr. Sigurd Hansen",male,25.0,0,0,348123,7.65,F G73,S
|
78 |
+
76,77,0,3,"Staneff, Mr. Ivan",male,28.0,0,0,349208,7.8958,C23 C25 C27,S
|
79 |
+
77,78,0,3,"Moutal, Mr. Rahamin Haim",male,28.0,0,0,374746,8.05,C23 C25 C27,S
|
80 |
+
78,79,1,2,"Caldwell, Master. Alden Gates",male,0.83,0,2,248738,29.0,C23 C25 C27,S
|
81 |
+
79,80,1,3,"Dowdell, Miss. Elizabeth",female,30.0,0,0,364516,12.475,C23 C25 C27,S
|
82 |
+
80,81,0,3,"Waelens, Mr. Achille",male,22.0,0,0,345767,9.0,C23 C25 C27,S
|
83 |
+
81,82,1,3,"Sheerlinck, Mr. Jan Baptist",male,29.0,0,0,345779,9.5,C23 C25 C27,S
|
84 |
+
82,83,1,3,"McDermott, Miss. Brigdet Delia",female,28.0,0,0,330932,7.7875,C23 C25 C27,Q
|
85 |
+
83,84,0,1,"Carrau, Mr. Francisco M",male,28.0,0,0,113059,47.1,C23 C25 C27,S
|
86 |
+
84,85,1,2,"Ilett, Miss. Bertha",female,17.0,0,0,SO/C 14885,10.5,C23 C25 C27,S
|
87 |
+
85,86,1,3,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33.0,3,0,3101278,15.85,C23 C25 C27,S
|
88 |
+
86,87,0,3,"Ford, Mr. William Neal",male,16.0,1,3,W./C. 6608,34.375,C23 C25 C27,S
|
89 |
+
87,88,0,3,"Slocovski, Mr. Selman Francis",male,28.0,0,0,SOTON/OQ 392086,8.05,C23 C25 C27,S
|
90 |
+
88,89,1,1,"Fortune, Miss. Mabel Helen",female,23.0,3,2,19950,263.0,C23 C25 C27,S
|
91 |
+
89,90,0,3,"Celotti, Mr. Francesco",male,24.0,0,0,343275,8.05,E31,S
|
92 |
+
90,91,0,3,"Christmann, Mr. Emil",male,29.0,0,0,343276,8.05,E31,S
|
93 |
+
91,92,0,3,"Andreasson, Mr. Paul Edvin",male,20.0,0,0,347466,7.8542,E31,S
|
94 |
+
92,93,0,1,"Chaffee, Mr. Herbert Fuller",male,46.0,1,0,W.E.P. 5734,61.175,E31,S
|
95 |
+
93,94,0,3,"Dean, Mr. Bertram Frank",male,26.0,1,2,C.A. 2315,20.575,A5,S
|
96 |
+
94,95,0,3,"Coxon, Mr. Daniel",male,59.0,0,0,364500,7.25,A5,S
|
97 |
+
95,96,0,3,"Shorney, Mr. Charles Joseph",male,28.0,0,0,374910,8.05,A5,S
|
98 |
+
96,97,0,1,"Goldschmidt, Mr. George B",male,71.0,0,0,PC 17754,34.6542,A5,C
|
99 |
+
97,98,1,1,"Greenfield, Mr. William Bertram",male,23.0,0,1,PC 17759,63.3583,D10 D12,C
|
100 |
+
98,99,1,2,"Doling, Mrs. John T (Ada Julia Bone)",female,34.0,0,1,231919,23.0,D26,S
|
101 |
+
99,100,0,2,"Kantor, Mr. Sinai",male,34.0,1,0,244367,26.0,D26,S
|
102 |
+
100,101,0,3,"Petranec, Miss. Matilda",female,28.0,0,0,349245,7.8958,D26,S
|
103 |
+
101,102,0,3,"Petroff, Mr. Pastcho (""Pentcho"")",male,28.0,0,0,349215,7.8958,D26,S
|
104 |
+
102,103,0,1,"White, Mr. Richard Frasar",male,21.0,0,1,35281,77.2875,D26,S
|
105 |
+
103,104,0,3,"Johansson, Mr. Gustaf Joel",male,33.0,0,0,7540,8.6542,C110,S
|
106 |
+
104,105,0,3,"Gustafsson, Mr. Anders Vilhelm",male,37.0,2,0,3101276,7.925,C110,S
|
107 |
+
105,106,0,3,"Mionoff, Mr. Stoytcho",male,28.0,0,0,349207,7.8958,C110,S
|
108 |
+
106,107,1,3,"Salkjelsvik, Miss. Anna Kristine",female,21.0,0,0,343120,7.65,C110,S
|
109 |
+
107,108,1,3,"Moss, Mr. Albert Johan",male,28.0,0,0,312991,7.775,C110,S
|
110 |
+
108,109,0,3,"Rekic, Mr. Tido",male,38.0,0,0,349249,7.8958,C110,S
|
111 |
+
109,110,1,3,"Moran, Miss. Bertha",female,28.0,1,0,371110,24.15,C110,Q
|
112 |
+
110,111,0,1,"Porter, Mr. Walter Chamberlain",male,47.0,0,0,110465,52.0,C110,S
|
113 |
+
111,112,0,3,"Zabour, Miss. Hileni",female,14.5,1,0,2665,14.4542,B58 B60,C
|
114 |
+
112,113,0,3,"Barton, Mr. David John",male,22.0,0,0,324669,8.05,B58 B60,S
|
115 |
+
113,114,0,3,"Jussila, Miss. Katriina",female,20.0,1,0,4136,9.825,B58 B60,S
|
116 |
+
114,115,0,3,"Attalah, Miss. Malake",female,17.0,0,0,2627,14.4583,B58 B60,C
|
117 |
+
115,116,0,3,"Pekoniemi, Mr. Edvard",male,21.0,0,0,STON/O 2. 3101294,7.925,B58 B60,S
|
118 |
+
116,117,0,3,"Connors, Mr. Patrick",male,70.5,0,0,370369,7.75,B58 B60,Q
|
119 |
+
117,118,0,2,"Turpin, Mr. William John Robert",male,29.0,1,0,11668,21.0,B58 B60,S
|
120 |
+
118,119,0,1,"Baxter, Mr. Quigg Edmond",male,24.0,0,1,PC 17558,247.5208,B58 B60,C
|
121 |
+
119,120,0,3,"Andersson, Miss. Ellis Anna Maria",female,2.0,4,2,347082,31.275,E101,S
|
122 |
+
120,121,0,2,"Hickman, Mr. Stanley George",male,21.0,2,0,S.O.C. 14879,73.5,E101,S
|
123 |
+
121,122,0,3,"Moore, Mr. Leonard Charles",male,28.0,0,0,A4. 54510,8.05,E101,S
|
124 |
+
122,123,0,2,"Nasser, Mr. Nicholas",male,32.5,1,0,237736,30.0708,E101,C
|
125 |
+
123,124,1,2,"Webber, Miss. Susan",female,32.5,0,0,27267,13.0,E101,S
|
126 |
+
124,125,0,1,"White, Mr. Percival Wayland",male,54.0,0,1,35281,77.2875,D26,S
|
127 |
+
125,126,1,3,"Nicola-Yarred, Master. Elias",male,12.0,1,0,2651,11.2417,F E69,C
|
128 |
+
126,127,0,3,"McMahon, Mr. Martin",male,28.0,0,0,370372,7.75,F E69,Q
|
129 |
+
127,128,1,3,"Madsen, Mr. Fridtjof Arne",male,24.0,0,0,C 17369,7.1417,F E69,S
|
130 |
+
128,129,1,3,"Peter, Miss. Anna",female,28.0,1,1,2668,22.3583,F E69,C
|
131 |
+
129,130,0,3,"Ekstrom, Mr. Johan",male,45.0,0,0,347061,6.975,D47,S
|
132 |
+
130,131,0,3,"Drazenoic, Mr. Jozef",male,33.0,0,0,349241,7.8958,D47,C
|
133 |
+
131,132,0,3,"Coelho, Mr. Domingos Fernandeo",male,20.0,0,0,SOTON/O.Q. 3101307,7.05,D47,S
|
134 |
+
132,133,0,3,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47.0,1,0,A/5. 3337,14.5,D47,S
|
135 |
+
133,134,1,2,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29.0,1,0,228414,26.0,D47,S
|
136 |
+
134,135,0,2,"Sobey, Mr. Samuel James Hayden",male,25.0,0,0,C.A. 29178,13.0,D47,S
|
137 |
+
135,136,0,2,"Richard, Mr. Emile",male,23.0,0,0,SC/PARIS 2133,15.0458,D47,C
|
138 |
+
136,137,1,1,"Newsom, Miss. Helen Monypeny",female,19.0,0,2,11752,26.2833,D47,S
|
139 |
+
137,138,0,1,"Futrelle, Mr. Jacques Heath",male,37.0,1,0,113803,53.1,C123,S
|
140 |
+
138,139,0,3,"Osen, Mr. Olaf Elon",male,16.0,0,0,7534,9.2167,B86,S
|
141 |
+
139,140,0,1,"Giglio, Mr. Victor",male,24.0,0,0,PC 17593,79.2,B86,C
|
142 |
+
140,141,0,3,"Boulos, Mrs. Joseph (Sultana)",female,28.0,0,2,2678,15.2458,F2,C
|
143 |
+
141,142,1,3,"Nysten, Miss. Anna Sofia",female,22.0,0,0,347081,7.75,F2,S
|
144 |
+
142,143,1,3,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24.0,1,0,STON/O2. 3101279,15.85,F2,S
|
145 |
+
143,144,0,3,"Burke, Mr. Jeremiah",male,19.0,0,0,365222,6.75,F2,Q
|
146 |
+
144,145,0,2,"Andrew, Mr. Edgardo Samuel",male,18.0,0,0,231945,11.5,F2,S
|
147 |
+
145,146,0,2,"Nicholls, Mr. Joseph Charles",male,19.0,1,1,C.A. 33112,36.75,F2,S
|
148 |
+
146,147,1,3,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27.0,0,0,350043,7.7958,F2,S
|
149 |
+
147,148,0,3,"Ford, Miss. Robina Maggie ""Ruby""",female,9.0,2,2,W./C. 6608,34.375,F2,S
|
150 |
+
148,149,0,2,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36.5,0,2,230080,26.0,F2,S
|
151 |
+
149,150,0,2,"Byles, Rev. Thomas Roussel Davids",male,42.0,0,0,244310,13.0,C2,S
|
152 |
+
150,151,0,2,"Bateman, Rev. Robert James",male,51.0,0,0,S.O.P. 1166,12.525,C2,S
|
153 |
+
151,152,1,1,"Pears, Mrs. Thomas (Edith Wearne)",female,22.0,1,0,113776,66.6,C2,S
|
154 |
+
152,153,0,3,"Meo, Mr. Alfonzo",male,55.5,0,0,A.5. 11206,8.05,E33,S
|
155 |
+
153,154,0,3,"van Billiard, Mr. Austin Blyler",male,40.5,0,2,A/5. 851,14.5,E33,S
|
156 |
+
154,155,0,3,"Olsen, Mr. Ole Martin",male,28.0,0,0,Fa 265302,7.3125,E33,S
|
157 |
+
155,156,0,1,"Williams, Mr. Charles Duane",male,51.0,0,1,PC 17597,61.3792,E33,C
|
158 |
+
156,157,1,3,"Gilnagh, Miss. Katherine ""Katie""",female,16.0,0,0,35851,7.7333,E33,Q
|
159 |
+
157,158,0,3,"Corn, Mr. Harry",male,30.0,0,0,SOTON/OQ 392090,8.05,E33,S
|
160 |
+
158,159,0,3,"Smiljanic, Mr. Mile",male,28.0,0,0,315037,8.6625,E33,S
|
161 |
+
159,160,0,3,"Sage, Master. Thomas Henry",male,28.0,8,2,CA. 2343,69.55,E33,S
|
162 |
+
160,161,0,3,"Cribb, Mr. John Hatfield",male,44.0,0,1,371362,16.1,E33,S
|
163 |
+
161,162,1,2,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40.0,0,0,C.A. 33595,15.75,E33,S
|
164 |
+
162,163,0,3,"Bengtsson, Mr. John Viktor",male,26.0,0,0,347068,7.775,E33,S
|
165 |
+
163,164,0,3,"Calic, Mr. Jovo",male,17.0,0,0,315093,8.6625,E33,S
|
166 |
+
164,165,0,3,"Panula, Master. Eino Viljami",male,1.0,4,1,3101295,39.6875,E33,S
|
167 |
+
165,166,1,3,"Goldsmith, Master. Frank John William ""Frankie""",male,9.0,0,2,363291,20.525,E33,S
|
168 |
+
166,167,1,1,"Chibnall, Mrs. (Edith Martha Bowerman)",female,28.0,0,1,113505,55.0,E33,S
|
169 |
+
167,168,0,3,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45.0,1,4,347088,27.9,B19,S
|
170 |
+
168,169,0,1,"Baumann, Mr. John D",male,28.0,0,0,PC 17318,25.925,B19,S
|
171 |
+
169,170,0,3,"Ling, Mr. Lee",male,28.0,0,0,1601,56.4958,B19,S
|
172 |
+
170,171,0,1,"Van der hoef, Mr. Wyckoff",male,61.0,0,0,111240,33.5,B19,S
|
173 |
+
171,172,0,3,"Rice, Master. Arthur",male,4.0,4,1,382652,29.125,A7,Q
|
174 |
+
172,173,1,3,"Johnson, Miss. Eleanor Ileen",female,1.0,1,1,347742,11.1333,A7,S
|
175 |
+
173,174,0,3,"Sivola, Mr. Antti Wilhelm",male,21.0,0,0,STON/O 2. 3101280,7.925,A7,S
|
176 |
+
174,175,0,1,"Smith, Mr. James Clinch",male,56.0,0,0,17764,30.6958,A7,C
|
177 |
+
175,176,0,3,"Klasen, Mr. Klas Albin",male,18.0,1,1,350404,7.8542,C49,S
|
178 |
+
176,177,0,3,"Lefebre, Master. Henry Forbes",male,28.0,3,1,4133,25.4667,C49,S
|
179 |
+
177,178,0,1,"Isham, Miss. Ann Elizabeth",female,50.0,0,0,PC 17595,28.7125,C49,C
|
180 |
+
178,179,0,2,"Hale, Mr. Reginald",male,30.0,0,0,250653,13.0,F4,S
|
181 |
+
179,180,0,3,"Leonard, Mr. Lionel",male,36.0,0,0,LINE,0.0,F4,S
|
182 |
+
180,181,0,3,"Sage, Miss. Constance Gladys",female,28.0,8,2,CA. 2343,69.55,F4,S
|
183 |
+
181,182,0,2,"Pernot, Mr. Rene",male,28.0,0,0,SC/PARIS 2131,15.05,F4,C
|
184 |
+
182,183,0,3,"Asplund, Master. Clarence Gustaf Hugo",male,9.0,4,2,347077,31.3875,F4,S
|
185 |
+
183,184,1,2,"Becker, Master. Richard F",male,1.0,2,1,230136,39.0,F4,S
|
186 |
+
184,185,1,3,"Kink-Heilmann, Miss. Luise Gretchen",female,4.0,0,2,315153,22.025,A32,S
|
187 |
+
185,186,0,1,"Rood, Mr. Hugh Roscoe",male,28.0,0,0,113767,50.0,A32,S
|
188 |
+
186,187,1,3,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,28.0,1,0,370365,15.5,F2,Q
|
189 |
+
187,188,1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45.0,0,0,111428,26.55,F2,S
|
190 |
+
188,189,0,3,"Bourke, Mr. John",male,40.0,1,1,364849,15.5,F2,Q
|
191 |
+
189,190,0,3,"Turcin, Mr. Stjepan",male,36.0,0,0,349247,7.8958,F2,S
|
192 |
+
190,191,1,2,"Pinsky, Mrs. (Rosa)",female,32.0,0,0,234604,13.0,F2,S
|
193 |
+
191,192,0,2,"Carbines, Mr. William",male,19.0,0,0,28424,13.0,F2,S
|
194 |
+
192,193,1,3,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19.0,1,0,350046,7.8542,F2,S
|
195 |
+
193,194,1,2,"Navratil, Master. Michel M",male,3.0,1,1,230080,26.0,F2,S
|
196 |
+
194,195,1,1,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44.0,0,0,PC 17610,27.7208,B4,C
|
197 |
+
195,196,1,1,"Lurette, Miss. Elise",female,58.0,0,0,PC 17569,146.5208,B80,C
|
198 |
+
196,197,0,3,"Mernagh, Mr. Robert",male,28.0,0,0,368703,7.75,G6,Q
|
199 |
+
197,198,0,3,"Olsen, Mr. Karl Siegwart Andreas",male,42.0,0,1,4579,8.4042,G6,S
|
200 |
+
198,199,1,3,"Madigan, Miss. Margaret ""Maggie""",female,28.0,0,0,370370,7.75,G6,Q
|
201 |
+
199,200,0,2,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24.0,0,0,248747,13.0,G6,S
|
202 |
+
200,201,0,3,"Vande Walle, Mr. Nestor Cyriel",male,28.0,0,0,345770,9.5,G6,S
|
203 |
+
201,202,0,3,"Sage, Mr. Frederick",male,28.0,8,2,CA. 2343,69.55,G6,S
|
204 |
+
202,203,0,3,"Johanson, Mr. Jakob Alfred",male,34.0,0,0,3101264,6.4958,G6,S
|
205 |
+
203,204,0,3,"Youseff, Mr. Gerious",male,45.5,0,0,2628,7.225,G6,C
|
206 |
+
204,205,1,3,"Cohen, Mr. Gurshon ""Gus""",male,18.0,0,0,A/5 3540,8.05,G6,S
|
207 |
+
205,206,0,3,"Strom, Miss. Telma Matilda",female,2.0,0,1,347054,10.4625,G6,S
|
208 |
+
206,207,0,3,"Backstrom, Mr. Karl Alfred",male,32.0,1,0,3101278,15.85,A31,S
|
209 |
+
207,208,1,3,"Albimona, Mr. Nassef Cassem",male,26.0,0,0,2699,18.7875,A31,C
|
210 |
+
208,209,1,3,"Carr, Miss. Helen ""Ellen""",female,16.0,0,0,367231,7.75,A31,Q
|
211 |
+
209,210,1,1,"Blank, Mr. Henry",male,40.0,0,0,112277,31.0,A31,C
|
212 |
+
210,211,0,3,"Ali, Mr. Ahmed",male,24.0,0,0,SOTON/O.Q. 3101311,7.05,D36,S
|
213 |
+
211,212,1,2,"Cameron, Miss. Clear Annie",female,35.0,0,0,F.C.C. 13528,21.0,D36,S
|
214 |
+
212,213,0,3,"Perkin, Mr. John Henry",male,22.0,0,0,A/5 21174,7.25,D36,S
|
215 |
+
213,214,0,2,"Givard, Mr. Hans Kristensen",male,30.0,0,0,250646,13.0,D36,S
|
216 |
+
214,215,0,3,"Kiernan, Mr. Philip",male,28.0,1,0,367229,7.75,D36,Q
|
217 |
+
215,216,1,1,"Newell, Miss. Madeleine",female,31.0,1,0,35273,113.275,D36,C
|
218 |
+
216,217,1,3,"Honkanen, Miss. Eliina",female,27.0,0,0,STON/O2. 3101283,7.925,D15,S
|
219 |
+
217,218,0,2,"Jacobsohn, Mr. Sidney Samuel",male,42.0,1,0,243847,27.0,D15,S
|
220 |
+
218,219,1,1,"Bazzani, Miss. Albina",female,32.0,0,0,11813,76.2917,D15,C
|
221 |
+
219,220,0,2,"Harris, Mr. Walter",male,30.0,0,0,W/C 14208,10.5,C93,S
|
222 |
+
220,221,1,3,"Sunderland, Mr. Victor Francis",male,16.0,0,0,SOTON/OQ 392089,8.05,C93,S
|
223 |
+
221,222,0,2,"Bracken, Mr. James H",male,27.0,0,0,220367,13.0,C93,S
|
224 |
+
222,223,0,3,"Green, Mr. George Henry",male,51.0,0,0,21440,8.05,C93,S
|
225 |
+
223,224,0,3,"Nenkoff, Mr. Christo",male,28.0,0,0,349234,7.8958,C93,S
|
226 |
+
224,225,1,1,"Hoyt, Mr. Frederick Maxfield",male,38.0,1,0,19943,90.0,C93,S
|
227 |
+
225,226,0,3,"Berglund, Mr. Karl Ivar Sven",male,22.0,0,0,PP 4348,9.35,C83,S
|
228 |
+
226,227,1,2,"Mellors, Mr. William John",male,19.0,0,0,SW/PP 751,10.5,C83,S
|
229 |
+
227,228,0,3,"Lovell, Mr. John Hall (""Henry"")",male,20.5,0,0,A/5 21173,7.25,C83,S
|
230 |
+
228,229,0,2,"Fahlstrom, Mr. Arne Jonas",male,18.0,0,0,236171,13.0,C83,S
|
231 |
+
229,230,0,3,"Lefebre, Miss. Mathilde",female,28.0,3,1,4133,25.4667,C83,S
|
232 |
+
230,231,1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35.0,1,0,36973,83.475,C83,S
|
233 |
+
231,232,0,3,"Larsson, Mr. Bengt Edvin",male,29.0,0,0,347067,7.775,C78,S
|
234 |
+
232,233,0,2,"Sjostedt, Mr. Ernst Adolf",male,59.0,0,0,237442,13.5,C78,S
|
235 |
+
233,234,1,3,"Asplund, Miss. Lillian Gertrud",female,5.0,4,2,347077,31.3875,C78,S
|
236 |
+
234,235,0,2,"Leyson, Mr. Robert William Norman",male,24.0,0,0,C.A. 29566,10.5,C78,S
|
237 |
+
235,236,0,3,"Harknett, Miss. Alice Phoebe",female,28.0,0,0,W./C. 6609,7.55,C78,S
|
238 |
+
236,237,0,2,"Hold, Mr. Stephen",male,44.0,1,0,26707,26.0,C78,S
|
239 |
+
237,238,1,2,"Collyer, Miss. Marjorie ""Lottie""",female,8.0,0,2,C.A. 31921,26.25,C78,S
|
240 |
+
238,239,0,2,"Pengelly, Mr. Frederick William",male,19.0,0,0,28665,10.5,C78,S
|
241 |
+
239,240,0,2,"Hunt, Mr. George Henry",male,33.0,0,0,SCO/W 1585,12.275,C78,S
|
242 |
+
240,241,0,3,"Zabour, Miss. Thamine",female,28.0,1,0,2665,14.4542,C78,C
|
243 |
+
241,242,1,3,"Murphy, Miss. Katherine ""Kate""",female,28.0,1,0,367230,15.5,C78,Q
|
244 |
+
242,243,0,2,"Coleridge, Mr. Reginald Charles",male,29.0,0,0,W./C. 14263,10.5,C78,S
|
245 |
+
243,244,0,3,"Maenpaa, Mr. Matti Alexanteri",male,22.0,0,0,STON/O 2. 3101275,7.125,C78,S
|
246 |
+
244,245,0,3,"Attalah, Mr. Sleiman",male,30.0,0,0,2694,7.225,C78,C
|
247 |
+
245,246,0,1,"Minahan, Dr. William Edward",male,44.0,2,0,19928,90.0,C78,Q
|
248 |
+
246,247,0,3,"Lindahl, Miss. Agda Thorilda Viktoria",female,25.0,0,0,347071,7.775,D35,S
|
249 |
+
247,248,1,2,"Hamalainen, Mrs. William (Anna)",female,24.0,0,2,250649,14.5,D35,S
|
250 |
+
248,249,1,1,"Beckwith, Mr. Richard Leonard",male,37.0,1,1,11751,52.5542,D35,S
|
251 |
+
249,250,0,2,"Carter, Rev. Ernest Courtenay",male,54.0,1,0,244252,26.0,G6,S
|
252 |
+
250,251,0,3,"Reed, Mr. James George",male,28.0,0,0,362316,7.25,G6,S
|
253 |
+
251,252,0,3,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29.0,1,1,347054,10.4625,G6,S
|
254 |
+
252,253,0,1,"Stead, Mr. William Thomas",male,62.0,0,0,113514,26.55,C87,S
|
255 |
+
253,254,0,3,"Lobb, Mr. William Arthur",male,30.0,1,0,A/5. 3336,16.1,B77,S
|
256 |
+
254,255,0,3,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41.0,0,2,370129,20.2125,B77,S
|
257 |
+
255,256,1,3,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29.0,0,2,2650,15.2458,B77,C
|
258 |
+
256,257,1,1,"Thorne, Mrs. Gertrude Maybelle",female,28.0,0,0,PC 17585,79.2,B77,C
|
259 |
+
257,258,1,1,"Cherry, Miss. Gladys",female,30.0,0,0,110152,86.5,B77,S
|
260 |
+
258,259,1,1,"Ward, Miss. Anna",female,35.0,0,0,PC 17755,512.3292,E67,C
|
261 |
+
259,260,1,2,"Parrish, Mrs. (Lutie Davis)",female,50.0,0,1,230433,26.0,E67,S
|
262 |
+
260,261,0,3,"Smith, Mr. Thomas",male,28.0,0,0,384461,7.75,E67,Q
|
263 |
+
261,262,1,3,"Asplund, Master. Edvin Rojj Felix",male,3.0,4,2,347077,31.3875,E67,S
|
264 |
+
262,263,0,1,"Taussig, Mr. Emil",male,52.0,1,1,110413,79.65,E67,S
|
265 |
+
263,264,0,1,"Harrison, Mr. William",male,40.0,0,0,112059,0.0,B94,S
|
266 |
+
264,265,0,3,"Henry, Miss. Delia",female,28.0,0,0,382649,7.75,C125,Q
|
267 |
+
265,266,0,2,"Reeves, Mr. David",male,36.0,0,0,C.A. 17248,10.5,C125,S
|
268 |
+
266,267,0,3,"Panula, Mr. Ernesti Arvid",male,16.0,4,1,3101295,39.6875,C125,S
|
269 |
+
267,268,1,3,"Persson, Mr. Ernst Ulrik",male,25.0,1,0,347083,7.775,C125,S
|
270 |
+
268,269,1,1,"Graham, Mrs. William Thompson (Edith Junkins)",female,58.0,0,1,PC 17582,153.4625,C125,S
|
271 |
+
269,270,1,1,"Bissette, Miss. Amelia",female,35.0,0,0,PC 17760,135.6333,C99,S
|
272 |
+
270,271,0,1,"Cairns, Mr. Alexander",male,28.0,0,0,113798,31.0,C118,S
|
273 |
+
271,272,1,3,"Tornquist, Mr. William Henry",male,25.0,0,0,LINE,0.0,C118,S
|
274 |
+
272,273,1,2,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41.0,0,1,250644,19.5,C118,S
|
275 |
+
273,274,0,1,"Natsch, Mr. Charles H",male,37.0,0,1,PC 17596,29.7,C118,C
|
276 |
+
274,275,1,3,"Healy, Miss. Hanora ""Nora""",female,28.0,0,0,370375,7.75,D7,Q
|
277 |
+
275,276,1,1,"Andrews, Miss. Kornelia Theodosia",female,63.0,1,0,13502,77.9583,D7,S
|
278 |
+
276,277,0,3,"Lindblom, Miss. Augusta Charlotta",female,45.0,0,0,347073,7.75,A19,S
|
279 |
+
277,278,0,2,"Parkes, Mr. Francis ""Frank""",male,28.0,0,0,239853,0.0,A19,S
|
280 |
+
278,279,0,3,"Rice, Master. Eric",male,7.0,4,1,382652,29.125,A19,Q
|
281 |
+
279,280,1,3,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35.0,1,1,C.A. 2673,20.25,A19,S
|
282 |
+
280,281,0,3,"Duane, Mr. Frank",male,65.0,0,0,336439,7.75,A19,Q
|
283 |
+
281,282,0,3,"Olsson, Mr. Nils Johan Goransson",male,28.0,0,0,347464,7.8542,A19,S
|
284 |
+
282,283,0,3,"de Pelsmaeker, Mr. Alfons",male,16.0,0,0,345778,9.5,A19,S
|
285 |
+
283,284,1,3,"Dorking, Mr. Edward Arthur",male,19.0,0,0,A/5. 10482,8.05,A19,S
|
286 |
+
284,285,0,1,"Smith, Mr. Richard William",male,28.0,0,0,113056,26.0,A19,S
|
287 |
+
285,286,0,3,"Stankovic, Mr. Ivan",male,33.0,0,0,349239,8.6625,B49,C
|
288 |
+
286,287,1,3,"de Mulder, Mr. Theodore",male,30.0,0,0,345774,9.5,B49,S
|
289 |
+
287,288,0,3,"Naidenoff, Mr. Penko",male,22.0,0,0,349206,7.8958,B49,S
|
290 |
+
288,289,1,2,"Hosono, Mr. Masabumi",male,42.0,0,0,237798,13.0,B49,S
|
291 |
+
289,290,1,3,"Connolly, Miss. Kate",female,22.0,0,0,370373,7.75,B49,Q
|
292 |
+
290,291,1,1,"Barber, Miss. Ellen ""Nellie""",female,26.0,0,0,19877,78.85,B49,S
|
293 |
+
291,292,1,1,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19.0,1,0,11967,91.0792,B49,C
|
294 |
+
292,293,0,2,"Levy, Mr. Rene Jacques",male,36.0,0,0,SC/Paris 2163,12.875,D,C
|
295 |
+
293,294,0,3,"Haas, Miss. Aloisia",female,24.0,0,0,349236,8.85,C22 C26,S
|
296 |
+
294,295,0,3,"Mineff, Mr. Ivan",male,24.0,0,0,349233,7.8958,C22 C26,S
|
297 |
+
295,296,0,1,"Lewy, Mr. Ervin G",male,28.0,0,0,PC 17612,27.7208,C22 C26,C
|
298 |
+
296,297,0,3,"Hanna, Mr. Mansour",male,23.5,0,0,2693,7.2292,C22 C26,C
|
299 |
+
297,298,0,1,"Allison, Miss. Helen Loraine",female,2.0,1,2,113781,151.55,C22 C26,S
|
300 |
+
298,299,1,1,"Saalfeld, Mr. Adolphe",male,28.0,0,0,19988,30.5,C106,S
|
301 |
+
299,300,1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50.0,0,1,PC 17558,247.5208,B58 B60,C
|
302 |
+
300,301,1,3,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,28.0,0,0,9234,7.75,E101,Q
|
303 |
+
301,302,1,3,"McCoy, Mr. Bernard",male,28.0,2,0,367226,23.25,E101,Q
|
304 |
+
302,303,0,3,"Johnson, Mr. William Cahoone Jr",male,19.0,0,0,LINE,0.0,E101,S
|
305 |
+
303,304,1,2,"Keane, Miss. Nora A",female,28.0,0,0,226593,12.35,E101,Q
|
306 |
+
304,305,0,3,"Williams, Mr. Howard Hugh ""Harry""",male,28.0,0,0,A/5 2466,8.05,C22 C26,S
|
307 |
+
305,306,1,1,"Allison, Master. Hudson Trevor",male,0.92,1,2,113781,151.55,C22 C26,S
|
308 |
+
306,307,1,1,"Fleming, Miss. Margaret",female,28.0,0,0,17421,110.8833,C65,C
|
309 |
+
307,308,1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17.0,1,0,PC 17758,108.9,C65,C
|
310 |
+
308,309,0,2,"Abelson, Mr. Samuel",male,30.0,1,0,P/PP 3381,24.0,E36,C
|
311 |
+
309,310,1,1,"Francatelli, Miss. Laura Mabel",female,30.0,0,0,PC 17485,56.9292,E36,C
|
312 |
+
310,311,1,1,"Hays, Miss. Margaret Bechstein",female,24.0,0,0,11767,83.1583,C54,C
|
313 |
+
311,312,1,1,"Ryerson, Miss. Emily Borie",female,18.0,2,2,PC 17608,262.375,B57 B59 B63 B66,C
|
314 |
+
312,313,0,2,"Lahtinen, Mrs. William (Anna Sylfven)",female,26.0,1,1,250651,26.0,C7,S
|
315 |
+
313,314,0,3,"Hendekovic, Mr. Ignjac",male,28.0,0,0,349243,7.8958,C7,S
|
316 |
+
314,315,0,2,"Hart, Mr. Benjamin",male,43.0,1,1,F.C.C. 13529,26.25,C7,S
|
317 |
+
315,316,1,3,"Nilsson, Miss. Helmina Josefina",female,26.0,0,0,347470,7.8542,C7,S
|
318 |
+
316,317,1,2,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24.0,1,0,244367,26.0,C7,S
|
319 |
+
317,318,0,2,"Moraweck, Dr. Ernest",male,54.0,0,0,29011,14.0,C7,S
|
320 |
+
318,319,1,1,"Wick, Miss. Mary Natalie",female,31.0,0,2,36928,164.8667,C7,S
|
321 |
+
319,320,1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40.0,1,1,16966,134.5,E34,C
|
322 |
+
320,321,0,3,"Dennis, Mr. Samuel",male,22.0,0,0,A/5 21172,7.25,C32,S
|
323 |
+
321,322,0,3,"Danoff, Mr. Yoto",male,27.0,0,0,349219,7.8958,C32,S
|
324 |
+
322,323,1,2,"Slayter, Miss. Hilda Mary",female,30.0,0,0,234818,12.35,C32,Q
|
325 |
+
323,324,1,2,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22.0,1,1,248738,29.0,C32,S
|
326 |
+
324,325,0,3,"Sage, Mr. George John Jr",male,28.0,8,2,CA. 2343,69.55,C32,S
|
327 |
+
325,326,1,1,"Young, Miss. Marie Grice",female,36.0,0,0,PC 17760,135.6333,C32,C
|
328 |
+
326,327,0,3,"Nysveen, Mr. Johan Hansen",male,61.0,0,0,345364,6.2375,D,S
|
329 |
+
327,328,1,2,"Ball, Mrs. (Ada E Hall)",female,36.0,0,0,28551,13.0,D,S
|
330 |
+
328,329,1,3,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31.0,1,1,363291,20.525,B18,S
|
331 |
+
329,330,1,1,"Hippach, Miss. Jean Gertrude",female,16.0,0,1,111361,57.9792,B18,C
|
332 |
+
330,331,1,3,"McCoy, Miss. Agnes",female,28.0,2,0,367226,23.25,C124,Q
|
333 |
+
331,332,0,1,"Partner, Mr. Austen",male,45.5,0,0,113043,28.5,C124,S
|
334 |
+
332,333,0,1,"Graham, Mr. George Edward",male,38.0,0,1,PC 17582,153.4625,C91,S
|
335 |
+
333,334,0,3,"Vander Planke, Mr. Leo Edmondus",male,16.0,2,0,345764,18.0,C2,S
|
336 |
+
334,335,1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,28.0,1,0,PC 17611,133.65,C2,S
|
337 |
+
335,336,0,3,"Denkoff, Mr. Mitto",male,28.0,0,0,349225,7.8958,C2,S
|
338 |
+
336,337,0,1,"Pears, Mr. Thomas Clinton",male,29.0,1,0,113776,66.6,C2,S
|
339 |
+
337,338,1,1,"Burns, Miss. Elizabeth Margaret",female,41.0,0,0,16966,134.5,E40,C
|
340 |
+
338,339,1,3,"Dahl, Mr. Karl Edwart",male,45.0,0,0,7598,8.05,T,S
|
341 |
+
339,340,0,1,"Blackwell, Mr. Stephen Weart",male,45.0,0,0,113784,35.5,T,S
|
342 |
+
340,341,1,2,"Navratil, Master. Edmond Roger",male,2.0,1,1,230080,26.0,F2,S
|
343 |
+
341,342,1,1,"Fortune, Miss. Alice Elizabeth",female,24.0,3,2,19950,263.0,C23 C25 C27,S
|
344 |
+
342,343,0,2,"Collander, Mr. Erik Gustaf",male,28.0,0,0,248740,13.0,F33,S
|
345 |
+
343,344,0,2,"Sedgwick, Mr. Charles Frederick Waddington",male,25.0,0,0,244361,13.0,F33,S
|
346 |
+
344,345,0,2,"Fox, Mr. Stanley Hubert",male,36.0,0,0,229236,13.0,F33,S
|
347 |
+
345,346,1,2,"Brown, Miss. Amelia ""Mildred""",female,24.0,0,0,248733,13.0,F33,S
|
348 |
+
346,347,1,2,"Smith, Miss. Marion Elsie",female,40.0,0,0,31418,13.0,C128,S
|
349 |
+
347,348,1,3,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,28.0,1,0,386525,16.1,C128,S
|
350 |
+
348,349,1,3,"Coutts, Master. William Loch ""William""",male,3.0,1,1,C.A. 37671,15.9,C128,S
|
351 |
+
349,350,0,3,"Dimic, Mr. Jovan",male,42.0,0,0,315088,8.6625,C128,S
|
352 |
+
350,351,0,3,"Odahl, Mr. Nils Martin",male,23.0,0,0,7267,9.225,C128,S
|
353 |
+
351,352,0,1,"Williams-Lambert, Mr. Fletcher Fellows",male,28.0,0,0,113510,35.0,C128,S
|
354 |
+
352,353,0,3,"Elias, Mr. Tannous",male,15.0,1,1,2695,7.2292,E33,C
|
355 |
+
353,354,0,3,"Arnold-Franchi, Mr. Josef",male,25.0,1,0,349237,17.8,E33,S
|
356 |
+
354,355,0,3,"Yousif, Mr. Wazli",male,28.0,0,0,2647,7.225,E33,C
|
357 |
+
355,356,0,3,"Vanden Steen, Mr. Leo Peter",male,28.0,0,0,345783,9.5,E33,S
|
358 |
+
356,357,1,1,"Bowerman, Miss. Elsie Edith",female,22.0,0,1,113505,55.0,E33,S
|
359 |
+
357,358,0,2,"Funk, Miss. Annie Clemmer",female,38.0,0,0,237671,13.0,D37,S
|
360 |
+
358,359,1,3,"McGovern, Miss. Mary",female,28.0,0,0,330931,7.8792,D37,Q
|
361 |
+
359,360,1,3,"Mockler, Miss. Helen Mary ""Ellie""",female,28.0,0,0,330980,7.8792,D37,Q
|
362 |
+
360,361,0,3,"Skoog, Mr. Wilhelm",male,40.0,1,4,347088,27.9,D37,S
|
363 |
+
361,362,0,2,"del Carlo, Mr. Sebastiano",male,29.0,1,0,SC/PARIS 2167,27.7208,D37,C
|
364 |
+
362,363,0,3,"Barbara, Mrs. (Catherine David)",female,45.0,0,1,2691,14.4542,D37,C
|
365 |
+
363,364,0,3,"Asim, Mr. Adola",male,35.0,0,0,SOTON/O.Q. 3101310,7.05,D37,S
|
366 |
+
364,365,0,3,"O'Brien, Mr. Thomas",male,28.0,1,0,370365,15.5,D37,Q
|
367 |
+
365,366,0,3,"Adahl, Mr. Mauritz Nils Martin",male,30.0,0,0,C 7076,7.25,D37,S
|
368 |
+
366,367,1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60.0,1,0,110813,75.25,D37,C
|
369 |
+
367,368,1,3,"Moussa, Mrs. (Mantoura Boulos)",female,28.0,0,0,2626,7.2292,B35,C
|
370 |
+
368,369,1,3,"Jermyn, Miss. Annie",female,28.0,0,0,14313,7.75,B35,Q
|
371 |
+
369,370,1,1,"Aubart, Mme. Leontine Pauline",female,24.0,0,0,PC 17477,69.3,B35,C
|
372 |
+
370,371,1,1,"Harder, Mr. George Achilles",male,25.0,1,0,11765,55.4417,E50,C
|
373 |
+
371,372,0,3,"Wiklund, Mr. Jakob Alfred",male,18.0,1,0,3101267,6.4958,C82,S
|
374 |
+
372,373,0,3,"Beavan, Mr. William Thomas",male,19.0,0,0,323951,8.05,C82,S
|
375 |
+
373,374,0,1,"Ringhini, Mr. Sante",male,22.0,0,0,PC 17760,135.6333,C82,C
|
376 |
+
374,375,0,3,"Palsson, Miss. Stina Viola",female,3.0,3,1,349909,21.075,C82,S
|
377 |
+
375,376,1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,28.0,1,0,PC 17604,82.1708,C82,C
|
378 |
+
376,377,1,3,"Landergren, Miss. Aurora Adelia",female,22.0,0,0,C 7077,7.25,C82,S
|
379 |
+
377,378,0,1,"Widener, Mr. Harry Elkins",male,27.0,0,2,113503,211.5,C82,C
|
380 |
+
378,379,0,3,"Betros, Mr. Tannous",male,20.0,0,0,2648,4.0125,B96 B98,C
|
381 |
+
379,380,0,3,"Gustafsson, Mr. Karl Gideon",male,19.0,0,0,347069,7.775,B96 B98,S
|
382 |
+
380,381,1,1,"Bidois, Miss. Rosalie",female,42.0,0,0,PC 17757,227.525,B96 B98,C
|
383 |
+
381,382,1,3,"Nakid, Miss. Maria (""Mary"")",female,1.0,0,2,2653,15.7417,B96 B98,C
|
384 |
+
382,383,0,3,"Tikkanen, Mr. Juho",male,32.0,0,0,STON/O 2. 3101293,7.925,B96 B98,S
|
385 |
+
383,384,1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35.0,1,0,113789,52.0,B96 B98,S
|
386 |
+
384,385,0,3,"Plotcharsky, Mr. Vasil",male,28.0,0,0,349227,7.8958,B96 B98,S
|
387 |
+
385,386,0,2,"Davies, Mr. Charles Henry",male,18.0,0,0,S.O.C. 14879,73.5,B96 B98,S
|
388 |
+
386,387,0,3,"Goodwin, Master. Sidney Leonard",male,1.0,5,2,CA 2144,46.9,B96 B98,S
|
389 |
+
387,388,1,2,"Buss, Miss. Kate",female,36.0,0,0,27849,13.0,B96 B98,S
|
390 |
+
388,389,0,3,"Sadlier, Mr. Matthew",male,28.0,0,0,367655,7.7292,B96 B98,Q
|
391 |
+
389,390,1,2,"Lehmann, Miss. Bertha",female,17.0,0,0,SC 1748,12.0,B96 B98,C
|
392 |
+
390,391,1,1,"Carter, Mr. William Ernest",male,36.0,1,2,113760,120.0,B96 B98,S
|
393 |
+
391,392,1,3,"Jansson, Mr. Carl Olof",male,21.0,0,0,350034,7.7958,D36,S
|
394 |
+
392,393,0,3,"Gustafsson, Mr. Johan Birger",male,28.0,2,0,3101277,7.925,D36,S
|
395 |
+
393,394,1,1,"Newell, Miss. Marjorie",female,23.0,1,0,35273,113.275,D36,C
|
396 |
+
394,395,1,3,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24.0,0,2,PP 9549,16.7,G6,S
|
397 |
+
395,396,0,3,"Johansson, Mr. Erik",male,22.0,0,0,350052,7.7958,C78,S
|
398 |
+
396,397,0,3,"Olsson, Miss. Elina",female,31.0,0,0,350407,7.8542,C78,S
|
399 |
+
397,398,0,2,"McKane, Mr. Peter David",male,46.0,0,0,28403,26.0,C78,S
|
400 |
+
398,399,0,2,"Pain, Dr. Alfred",male,23.0,0,0,244278,10.5,C78,S
|
401 |
+
399,400,1,2,"Trout, Mrs. William H (Jessie L)",female,28.0,0,0,240929,12.65,C78,S
|
402 |
+
400,401,1,3,"Niskanen, Mr. Juha",male,39.0,0,0,STON/O 2. 3101289,7.925,C78,S
|
403 |
+
401,402,0,3,"Adams, Mr. John",male,26.0,0,0,341826,8.05,C78,S
|
404 |
+
402,403,0,3,"Jussila, Miss. Mari Aina",female,21.0,1,0,4137,9.825,C78,S
|
405 |
+
403,404,0,3,"Hakkarainen, Mr. Pekka Pietari",male,28.0,1,0,STON/O2. 3101279,15.85,C78,S
|
406 |
+
404,405,0,3,"Oreskovic, Miss. Marija",female,20.0,0,0,315096,8.6625,C78,S
|
407 |
+
405,406,0,2,"Gale, Mr. Shadrach",male,34.0,1,0,28664,21.0,C78,S
|
408 |
+
406,407,0,3,"Widegren, Mr. Carl/Charles Peter",male,51.0,0,0,347064,7.75,C78,S
|
409 |
+
407,408,1,2,"Richards, Master. William Rowe",male,3.0,1,1,29106,18.75,C78,S
|
410 |
+
408,409,0,3,"Birkeland, Mr. Hans Martin Monsen",male,21.0,0,0,312992,7.775,C78,S
|
411 |
+
409,410,0,3,"Lefebre, Miss. Ida",female,28.0,3,1,4133,25.4667,C78,S
|
412 |
+
410,411,0,3,"Sdycoff, Mr. Todor",male,28.0,0,0,349222,7.8958,C78,S
|
413 |
+
411,412,0,3,"Hart, Mr. Henry",male,28.0,0,0,394140,6.8583,C78,Q
|
414 |
+
412,413,1,1,"Minahan, Miss. Daisy E",female,33.0,1,0,19928,90.0,C78,Q
|
415 |
+
413,414,0,2,"Cunningham, Mr. Alfred Fleming",male,28.0,0,0,239853,0.0,E10,S
|
416 |
+
414,415,1,3,"Sundman, Mr. Johan Julian",male,44.0,0,0,STON/O 2. 3101269,7.925,E10,S
|
417 |
+
415,416,0,3,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,28.0,0,0,343095,8.05,E10,S
|
418 |
+
416,417,1,2,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34.0,1,1,28220,32.5,E10,S
|
419 |
+
417,418,1,2,"Silven, Miss. Lyyli Karoliina",female,18.0,0,2,250652,13.0,E10,S
|
420 |
+
418,419,0,2,"Matthews, Mr. William John",male,30.0,0,0,28228,13.0,E10,S
|
421 |
+
419,420,0,3,"Van Impe, Miss. Catharina",female,10.0,0,2,345773,24.15,E10,S
|
422 |
+
420,421,0,3,"Gheorgheff, Mr. Stanio",male,28.0,0,0,349254,7.8958,E10,C
|
423 |
+
421,422,0,3,"Charters, Mr. David",male,21.0,0,0,A/5. 13032,7.7333,E10,Q
|
424 |
+
422,423,0,3,"Zimmerman, Mr. Leo",male,29.0,0,0,315082,7.875,E10,S
|
425 |
+
423,424,0,3,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28.0,1,1,347080,14.4,E10,S
|
426 |
+
424,425,0,3,"Rosblom, Mr. Viktor Richard",male,18.0,1,1,370129,20.2125,E10,S
|
427 |
+
425,426,0,3,"Wiseman, Mr. Phillippe",male,28.0,0,0,A/4. 34244,7.25,E10,S
|
428 |
+
426,427,1,2,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28.0,1,0,2003,26.0,E10,S
|
429 |
+
427,428,1,2,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19.0,0,0,250655,26.0,E10,S
|
430 |
+
428,429,0,3,"Flynn, Mr. James",male,28.0,0,0,364851,7.75,E10,Q
|
431 |
+
429,430,1,3,"Pickard, Mr. Berk (Berk Trembisky)",male,32.0,0,0,SOTON/O.Q. 392078,8.05,E10,S
|
432 |
+
430,431,1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28.0,0,0,110564,26.55,C52,S
|
433 |
+
431,432,1,3,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,28.0,1,0,376564,16.1,E44,S
|
434 |
+
432,433,1,2,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42.0,1,0,SC/AH 3085,26.0,E44,S
|
435 |
+
433,434,0,3,"Kallio, Mr. Nikolai Erland",male,17.0,0,0,STON/O 2. 3101274,7.125,E44,S
|
436 |
+
434,435,0,1,"Silvey, Mr. William Baird",male,50.0,1,0,13507,55.9,E44,S
|
437 |
+
435,436,1,1,"Carter, Miss. Lucile Polk",female,14.0,1,2,113760,120.0,B96 B98,S
|
438 |
+
436,437,0,3,"Ford, Miss. Doolina Margaret ""Daisy""",female,21.0,2,2,W./C. 6608,34.375,C23 C25 C27,S
|
439 |
+
437,438,1,2,"Richards, Mrs. Sidney (Emily Hocking)",female,24.0,2,3,29106,18.75,C23 C25 C27,S
|
440 |
+
438,439,0,1,"Fortune, Mr. Mark",male,64.0,1,4,19950,263.0,C23 C25 C27,S
|
441 |
+
439,440,0,2,"Kvillner, Mr. Johan Henrik Johannesson",male,31.0,0,0,C.A. 18723,10.5,A34,S
|
442 |
+
440,441,1,2,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45.0,1,1,F.C.C. 13529,26.25,A34,S
|
443 |
+
441,442,0,3,"Hampe, Mr. Leon",male,20.0,0,0,345769,9.5,A34,S
|
444 |
+
442,443,0,3,"Petterson, Mr. Johan Emil",male,25.0,1,0,347076,7.775,A34,S
|
445 |
+
443,444,1,2,"Reynaldo, Ms. Encarnacion",female,28.0,0,0,230434,13.0,A34,S
|
446 |
+
444,445,1,3,"Johannesen-Bratthammer, Mr. Bernt",male,28.0,0,0,65306,8.1125,A34,S
|
447 |
+
445,446,1,1,"Dodge, Master. Washington",male,4.0,0,2,33638,81.8583,A34,S
|
448 |
+
446,447,1,2,"Mellinger, Miss. Madeleine Violet",female,13.0,0,1,250644,19.5,C104,S
|
449 |
+
447,448,1,1,"Seward, Mr. Frederic Kimber",male,34.0,0,0,113794,26.55,C104,S
|
450 |
+
448,449,1,3,"Baclini, Miss. Marie Catherine",female,5.0,2,1,2666,19.2583,C104,C
|
451 |
+
449,450,1,1,"Peuchen, Major. Arthur Godfrey",male,52.0,0,0,113786,30.5,C104,S
|
452 |
+
450,451,0,2,"West, Mr. Edwy Arthur",male,36.0,1,2,C.A. 34651,27.75,C111,S
|
453 |
+
451,452,0,3,"Hagland, Mr. Ingvald Olai Olsen",male,28.0,1,0,65303,19.9667,C111,S
|
454 |
+
452,453,0,1,"Foreman, Mr. Benjamin Laventall",male,30.0,0,0,113051,27.75,C111,C
|
455 |
+
453,454,1,1,"Goldenberg, Mr. Samuel L",male,49.0,1,0,17453,89.1042,C92,C
|
456 |
+
454,455,0,3,"Peduzzi, Mr. Joseph",male,28.0,0,0,A/5 2817,8.05,E38,S
|
457 |
+
455,456,1,3,"Jalsevac, Mr. Ivan",male,29.0,0,0,349240,7.8958,E38,C
|
458 |
+
456,457,0,1,"Millet, Mr. Francis Davis",male,65.0,0,0,13509,26.55,E38,S
|
459 |
+
457,458,1,1,"Kenyon, Mrs. Frederick R (Marion)",female,28.0,1,0,17464,51.8625,D21,S
|
460 |
+
458,459,1,2,"Toomey, Miss. Ellen",female,50.0,0,0,F.C.C. 13531,10.5,E12,S
|
461 |
+
459,460,0,3,"O'Connor, Mr. Maurice",male,28.0,0,0,371060,7.75,E12,Q
|
462 |
+
460,461,1,1,"Anderson, Mr. Harry",male,48.0,0,0,19952,26.55,E12,S
|
463 |
+
461,462,0,3,"Morley, Mr. William",male,34.0,0,0,364506,8.05,E63,S
|
464 |
+
462,463,0,1,"Gee, Mr. Arthur H",male,47.0,0,0,111320,38.5,E63,S
|
465 |
+
463,464,0,2,"Milling, Mr. Jacob Christian",male,48.0,0,0,234360,13.0,D,S
|
466 |
+
464,465,0,3,"Maisner, Mr. Simon",male,28.0,0,0,A/S 2816,8.05,D,S
|
467 |
+
465,466,0,3,"Goncalves, Mr. Manuel Estanslas",male,38.0,0,0,SOTON/O.Q. 3101306,7.05,D,S
|
468 |
+
466,467,0,2,"Campbell, Mr. William",male,28.0,0,0,239853,0.0,D,S
|
469 |
+
467,468,0,1,"Smart, Mr. John Montgomery",male,56.0,0,0,113792,26.55,D,S
|
470 |
+
468,469,0,3,"Scanlan, Mr. James",male,28.0,0,0,36209,7.725,D,Q
|
471 |
+
469,470,1,3,"Baclini, Miss. Helene Barbara",female,0.75,2,1,2666,19.2583,D,C
|
472 |
+
470,471,0,3,"Keefe, Mr. Arthur",male,28.0,0,0,323592,7.25,D,S
|
473 |
+
471,472,0,3,"Cacic, Mr. Luka",male,38.0,0,0,315089,8.6625,D,S
|
474 |
+
472,473,1,2,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33.0,1,2,C.A. 34651,27.75,D,S
|
475 |
+
473,474,1,2,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23.0,0,0,SC/AH Basle 541,13.7917,D,C
|
476 |
+
474,475,0,3,"Strandberg, Miss. Ida Sofia",female,22.0,0,0,7553,9.8375,A14,S
|
477 |
+
475,476,0,1,"Clifford, Mr. George Quincy",male,28.0,0,0,110465,52.0,A14,S
|
478 |
+
476,477,0,2,"Renouf, Mr. Peter Henry",male,34.0,1,0,31027,21.0,B49,S
|
479 |
+
477,478,0,3,"Braund, Mr. Lewis Richard",male,29.0,1,0,3460,7.0458,B49,S
|
480 |
+
478,479,0,3,"Karlsson, Mr. Nils August",male,22.0,0,0,350060,7.5208,B49,S
|
481 |
+
479,480,1,3,"Hirvonen, Miss. Hildur E",female,2.0,0,1,3101298,12.2875,B49,S
|
482 |
+
480,481,0,3,"Goodwin, Master. Harold Victor",male,9.0,5,2,CA 2144,46.9,B49,S
|
483 |
+
481,482,0,2,"Frost, Mr. Anthony Wood ""Archie""",male,28.0,0,0,239854,0.0,B49,S
|
484 |
+
482,483,0,3,"Rouse, Mr. Richard Henry",male,50.0,0,0,A/5 3594,8.05,B49,S
|
485 |
+
483,484,1,3,"Turkula, Mrs. (Hedwig)",female,63.0,0,0,4134,9.5875,B49,S
|
486 |
+
484,485,1,1,"Bishop, Mr. Dickinson H",male,25.0,1,0,11967,91.0792,B49,C
|
487 |
+
485,486,0,3,"Lefebre, Miss. Jeannie",female,28.0,3,1,4133,25.4667,C93,S
|
488 |
+
486,487,1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35.0,1,0,19943,90.0,C93,S
|
489 |
+
487,488,0,1,"Kent, Mr. Edward Austin",male,58.0,0,0,11771,29.7,B37,C
|
490 |
+
488,489,0,3,"Somerton, Mr. Francis William",male,30.0,0,0,A.5. 18509,8.05,C30,S
|
491 |
+
489,490,1,3,"Coutts, Master. Eden Leslie ""Neville""",male,9.0,1,1,C.A. 37671,15.9,C30,S
|
492 |
+
490,491,0,3,"Hagland, Mr. Konrad Mathias Reiersen",male,28.0,1,0,65304,19.9667,C30,S
|
493 |
+
491,492,0,3,"Windelov, Mr. Einar",male,21.0,0,0,SOTON/OQ 3101317,7.25,C30,S
|
494 |
+
492,493,0,1,"Molson, Mr. Harry Markland",male,55.0,0,0,113787,30.5,C30,S
|
495 |
+
493,494,0,1,"Artagaveytia, Mr. Ramon",male,71.0,0,0,PC 17609,49.5042,D20,C
|
496 |
+
494,495,0,3,"Stanley, Mr. Edward Roland",male,21.0,0,0,A/4 45380,8.05,D20,S
|
497 |
+
495,496,0,3,"Yousseff, Mr. Gerious",male,28.0,0,0,2627,14.4583,D20,C
|
498 |
+
496,497,1,1,"Eustis, Miss. Elizabeth Mussey",female,54.0,1,0,36947,78.2667,D20,C
|
499 |
+
497,498,0,3,"Shellard, Mr. Frederick William",male,28.0,0,0,C.A. 6212,15.1,C22 C26,S
|
500 |
+
498,499,0,1,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25.0,1,2,113781,151.55,C22 C26,S
|
501 |
+
499,500,0,3,"Svensson, Mr. Olof",male,24.0,0,0,350035,7.7958,B79,S
|
502 |
+
500,501,0,3,"Calic, Mr. Petar",male,17.0,0,0,315086,8.6625,B79,S
|
503 |
+
501,502,0,3,"Canavan, Miss. Mary",female,21.0,0,0,364846,7.75,B79,Q
|
504 |
+
502,503,0,3,"O'Sullivan, Miss. Bridget Mary",female,28.0,0,0,330909,7.6292,B79,Q
|
505 |
+
503,504,0,3,"Laitinen, Miss. Kristina Sofia",female,37.0,0,0,4135,9.5875,B79,S
|
506 |
+
504,505,1,1,"Maioni, Miss. Roberta",female,16.0,0,0,110152,86.5,B79,S
|
507 |
+
505,506,0,1,"Penasco y Castellana, Mr. Victor de Satode",male,18.0,1,0,PC 17758,108.9,C65,C
|
508 |
+
506,507,1,2,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33.0,0,2,26360,26.0,E25,S
|
509 |
+
507,508,1,1,"Bradley, Mr. George (""George Arthur Brayton"")",male,28.0,0,0,111427,26.55,E25,S
|
510 |
+
508,509,0,3,"Olsen, Mr. Henry Margido",male,28.0,0,0,C 4001,22.525,E25,S
|
511 |
+
509,510,1,3,"Lang, Mr. Fang",male,26.0,0,0,1601,56.4958,E25,S
|
512 |
+
510,511,1,3,"Daly, Mr. Eugene Patrick",male,29.0,0,0,382651,7.75,E25,Q
|
513 |
+
511,512,0,3,"Webber, Mr. James",male,28.0,0,0,SOTON/OQ 3101316,8.05,E25,S
|
514 |
+
512,513,1,1,"McGough, Mr. James Robert",male,36.0,0,0,PC 17473,26.2875,E25,S
|
515 |
+
513,514,1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54.0,1,0,PC 17603,59.4,D46,C
|
516 |
+
514,515,0,3,"Coleff, Mr. Satio",male,24.0,0,0,349209,7.4958,D46,S
|
517 |
+
515,516,0,1,"Walker, Mr. William Anderson",male,47.0,0,0,36967,34.0208,D46,S
|
518 |
+
516,517,1,2,"Lemore, Mrs. (Amelia Milley)",female,34.0,0,0,C.A. 34260,10.5,F33,S
|
519 |
+
517,518,0,3,"Ryan, Mr. Patrick",male,28.0,0,0,371110,24.15,B73,Q
|
520 |
+
518,519,1,2,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36.0,1,0,226875,26.0,B73,S
|
521 |
+
519,520,0,3,"Pavlovic, Mr. Stefo",male,32.0,0,0,349242,7.8958,B73,S
|
522 |
+
520,521,1,1,"Perreault, Miss. Anne",female,30.0,0,0,12749,93.5,B73,S
|
523 |
+
521,522,0,3,"Vovk, Mr. Janko",male,22.0,0,0,349252,7.8958,B18,S
|
524 |
+
522,523,0,3,"Lahoud, Mr. Sarkis",male,28.0,0,0,2624,7.225,B18,C
|
525 |
+
523,524,1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44.0,0,1,111361,57.9792,B18,C
|
526 |
+
524,525,0,3,"Kassem, Mr. Fared",male,28.0,0,0,2700,7.2292,C95,C
|
527 |
+
525,526,0,3,"Farrell, Mr. James",male,40.5,0,0,367232,7.75,C95,Q
|
528 |
+
526,527,1,2,"Ridsdale, Miss. Lucy",female,50.0,0,0,W./C. 14258,10.5,C95,S
|
529 |
+
527,528,0,1,"Farthing, Mr. John",male,28.0,0,0,PC 17483,221.7792,C95,S
|
530 |
+
528,529,0,3,"Salonen, Mr. Johan Werner",male,39.0,0,0,3101296,7.925,B38,S
|
531 |
+
529,530,0,2,"Hocking, Mr. Richard George",male,23.0,2,1,29104,11.5,B38,S
|
532 |
+
530,531,1,2,"Quick, Miss. Phyllis May",female,2.0,1,1,26360,26.0,B38,S
|
533 |
+
531,532,0,3,"Toufik, Mr. Nakli",male,28.0,0,0,2641,7.2292,B38,C
|
534 |
+
532,533,0,3,"Elias, Mr. Joseph Jr",male,17.0,1,1,2690,7.2292,B38,C
|
535 |
+
533,534,1,3,"Peter, Mrs. Catherine (Catherine Rizk)",female,28.0,0,2,2668,22.3583,B38,C
|
536 |
+
534,535,0,3,"Cacic, Miss. Marija",female,30.0,0,0,315084,8.6625,B38,S
|
537 |
+
535,536,1,2,"Hart, Miss. Eva Miriam",female,7.0,0,2,F.C.C. 13529,26.25,B38,S
|
538 |
+
536,537,0,1,"Butt, Major. Archibald Willingham",male,45.0,0,0,113050,26.55,B38,S
|
539 |
+
537,538,1,1,"LeRoy, Miss. Bertha",female,30.0,0,0,PC 17761,106.425,B39,C
|
540 |
+
538,539,0,3,"Risien, Mr. Samuel Beard",male,28.0,0,0,364498,14.5,B39,S
|
541 |
+
539,540,1,1,"Frolicher, Miss. Hedwig Margaritha",female,22.0,0,2,13568,49.5,B39,C
|
542 |
+
540,541,1,1,"Crosby, Miss. Harriet R",female,36.0,0,2,WE/P 5735,71.0,B22,S
|
543 |
+
541,542,0,3,"Andersson, Miss. Ingeborg Constanzia",female,9.0,4,2,347082,31.275,C86,S
|
544 |
+
542,543,0,3,"Andersson, Miss. Sigrid Elisabeth",female,11.0,4,2,347082,31.275,C86,S
|
545 |
+
543,544,1,2,"Beane, Mr. Edward",male,32.0,1,0,2908,26.0,C86,S
|
546 |
+
544,545,0,1,"Douglas, Mr. Walter Donald",male,50.0,1,0,PC 17761,106.425,C86,C
|
547 |
+
545,546,0,1,"Nicholson, Mr. Arthur Ernest",male,64.0,0,0,693,26.0,C70,S
|
548 |
+
546,547,1,2,"Beane, Mrs. Edward (Ethel Clarke)",female,19.0,1,0,2908,26.0,C70,S
|
549 |
+
547,548,1,2,"Padro y Manent, Mr. Julian",male,28.0,0,0,SC/PARIS 2146,13.8625,C70,C
|
550 |
+
548,549,0,3,"Goldsmith, Mr. Frank John",male,33.0,1,1,363291,20.525,C70,S
|
551 |
+
549,550,1,2,"Davies, Master. John Morgan Jr",male,8.0,1,1,C.A. 33112,36.75,C70,S
|
552 |
+
550,551,1,1,"Thayer, Mr. John Borland Jr",male,17.0,0,2,17421,110.8833,C70,C
|
553 |
+
551,552,0,2,"Sharp, Mr. Percival James R",male,27.0,0,0,244358,26.0,A16,S
|
554 |
+
552,553,0,3,"O'Brien, Mr. Timothy",male,28.0,0,0,330979,7.8292,A16,Q
|
555 |
+
553,554,1,3,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22.0,0,0,2620,7.225,A16,C
|
556 |
+
554,555,1,3,"Ohman, Miss. Velin",female,22.0,0,0,347085,7.775,A16,S
|
557 |
+
555,556,0,1,"Wright, Mr. George",male,62.0,0,0,113807,26.55,A16,S
|
558 |
+
556,557,1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48.0,1,0,11755,39.6,A16,C
|
559 |
+
557,558,0,1,"Robbins, Mr. Victor",male,28.0,0,0,PC 17757,227.525,E67,C
|
560 |
+
558,559,1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39.0,1,1,110413,79.65,E67,S
|
561 |
+
559,560,1,3,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36.0,1,0,345572,17.4,C101,S
|
562 |
+
560,561,0,3,"Morrow, Mr. Thomas Rowan",male,28.0,0,0,372622,7.75,C101,Q
|
563 |
+
561,562,0,3,"Sivic, Mr. Husein",male,40.0,0,0,349251,7.8958,C101,S
|
564 |
+
562,563,0,2,"Norman, Mr. Robert Douglas",male,28.0,0,0,218629,13.5,C101,S
|
565 |
+
563,564,0,3,"Simmons, Mr. John",male,28.0,0,0,SOTON/OQ 392082,8.05,C101,S
|
566 |
+
564,565,0,3,"Meanwell, Miss. (Marion Ogden)",female,28.0,0,0,SOTON/O.Q. 392087,8.05,C101,S
|
567 |
+
565,566,0,3,"Davies, Mr. Alfred J",male,24.0,2,0,A/4 48871,24.15,C101,S
|
568 |
+
566,567,0,3,"Stoytcheff, Mr. Ilia",male,19.0,0,0,349205,7.8958,C101,S
|
569 |
+
567,568,0,3,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29.0,0,4,349909,21.075,C101,S
|
570 |
+
568,569,0,3,"Doharr, Mr. Tannous",male,28.0,0,0,2686,7.2292,C101,C
|
571 |
+
569,570,1,3,"Jonsson, Mr. Carl",male,32.0,0,0,350417,7.8542,C101,S
|
572 |
+
570,571,1,2,"Harris, Mr. George",male,62.0,0,0,S.W./PP 752,10.5,C101,S
|
573 |
+
571,572,1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53.0,2,0,11769,51.4792,C101,S
|
574 |
+
572,573,1,1,"Flynn, Mr. John Irwin (""Irving"")",male,36.0,0,0,PC 17474,26.3875,E25,S
|
575 |
+
573,574,1,3,"Kelly, Miss. Mary",female,28.0,0,0,14312,7.75,E44,Q
|
576 |
+
574,575,0,3,"Rush, Mr. Alfred George John",male,16.0,0,0,A/4. 20589,8.05,E44,S
|
577 |
+
575,576,0,3,"Patchett, Mr. George",male,19.0,0,0,358585,14.5,E44,S
|
578 |
+
576,577,1,2,"Garside, Miss. Ethel",female,34.0,0,0,243880,13.0,E44,S
|
579 |
+
577,578,1,1,"Silvey, Mrs. William Baird (Alice Munger)",female,39.0,1,0,13507,55.9,E44,S
|
580 |
+
578,579,0,3,"Caram, Mrs. Joseph (Maria Elias)",female,28.0,1,0,2689,14.4583,C68,C
|
581 |
+
579,580,1,3,"Jussila, Mr. Eiriik",male,32.0,0,0,STON/O 2. 3101286,7.925,C68,S
|
582 |
+
580,581,1,2,"Christy, Miss. Julie Rachel",female,25.0,1,1,237789,30.0,C68,S
|
583 |
+
581,582,1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39.0,1,1,17421,110.8833,C68,C
|
584 |
+
582,583,0,2,"Downton, Mr. William James",male,54.0,0,0,28403,26.0,A10,S
|
585 |
+
583,584,0,1,"Ross, Mr. John Hugo",male,36.0,0,0,13049,40.125,A10,C
|
586 |
+
584,585,0,3,"Paulner, Mr. Uscher",male,28.0,0,0,3411,8.7125,E68,C
|
587 |
+
585,586,1,1,"Taussig, Miss. Ruth",female,18.0,0,2,110413,79.65,E68,S
|
588 |
+
586,587,0,2,"Jarvis, Mr. John Denzil",male,47.0,0,0,237565,15.0,B41,S
|
589 |
+
587,588,1,1,"Frolicher-Stehli, Mr. Maxmillian",male,60.0,1,1,13567,79.2,B41,C
|
590 |
+
588,589,0,3,"Gilinski, Mr. Eliezer",male,22.0,0,0,14973,8.05,D20,S
|
591 |
+
589,590,0,3,"Murdlin, Mr. Joseph",male,28.0,0,0,A./5. 3235,8.05,D20,S
|
592 |
+
590,591,0,3,"Rintamaki, Mr. Matti",male,35.0,0,0,STON/O 2. 3101273,7.125,D20,S
|
593 |
+
591,592,1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52.0,1,0,36947,78.2667,D20,C
|
594 |
+
592,593,0,3,"Elsbury, Mr. William James",male,47.0,0,0,A/5 3902,7.25,A20,S
|
595 |
+
593,594,0,3,"Bourke, Miss. Mary",female,28.0,0,2,364848,7.75,A20,Q
|
596 |
+
594,595,0,2,"Chapman, Mr. John Henry",male,37.0,1,0,SC/AH 29037,26.0,A20,S
|
597 |
+
595,596,0,3,"Van Impe, Mr. Jean Baptiste",male,36.0,1,1,345773,24.15,A20,S
|
598 |
+
596,597,1,2,"Leitch, Miss. Jessie Wills",female,28.0,0,0,248727,33.0,A20,S
|
599 |
+
597,598,0,3,"Johnson, Mr. Alfred",male,49.0,0,0,LINE,0.0,A20,S
|
600 |
+
598,599,0,3,"Boulos, Mr. Hanna",male,28.0,0,0,2664,7.225,A20,C
|
601 |
+
599,600,1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49.0,1,0,PC 17485,56.9292,A20,C
|
602 |
+
600,601,1,2,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24.0,2,1,243847,27.0,C125,S
|
603 |
+
601,602,0,3,"Slabenoff, Mr. Petco",male,28.0,0,0,349214,7.8958,C125,S
|
604 |
+
602,603,0,1,"Harrington, Mr. Charles H",male,28.0,0,0,113796,42.4,C125,S
|
605 |
+
603,604,0,3,"Torber, Mr. Ernst William",male,44.0,0,0,364511,8.05,C125,S
|
606 |
+
604,605,1,1,"Homer, Mr. Harry (""Mr E Haven"")",male,35.0,0,0,111426,26.55,C125,C
|
607 |
+
605,606,0,3,"Lindell, Mr. Edvard Bengtsson",male,36.0,1,0,349910,15.55,C125,S
|
608 |
+
606,607,0,3,"Karaic, Mr. Milan",male,30.0,0,0,349246,7.8958,C125,S
|
609 |
+
607,608,1,1,"Daniel, Mr. Robert Williams",male,27.0,0,0,113804,30.5,C125,S
|
610 |
+
608,609,1,2,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22.0,1,2,SC/Paris 2123,41.5792,C125,C
|
611 |
+
609,610,1,1,"Shutes, Miss. Elizabeth W",female,40.0,0,0,PC 17582,153.4625,C125,S
|
612 |
+
610,611,0,3,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39.0,1,5,347082,31.275,F4,S
|
613 |
+
611,612,0,3,"Jardin, Mr. Jose Neto",male,28.0,0,0,SOTON/O.Q. 3101305,7.05,F4,S
|
614 |
+
612,613,1,3,"Murphy, Miss. Margaret Jane",female,28.0,1,0,367230,15.5,F4,Q
|
615 |
+
613,614,0,3,"Horgan, Mr. John",male,28.0,0,0,370377,7.75,F4,Q
|
616 |
+
614,615,0,3,"Brocklebank, Mr. William Alfred",male,35.0,0,0,364512,8.05,F4,S
|
617 |
+
615,616,1,2,"Herman, Miss. Alice",female,24.0,1,2,220845,65.0,F4,S
|
618 |
+
616,617,0,3,"Danbom, Mr. Ernst Gilbert",male,34.0,1,1,347080,14.4,F4,S
|
619 |
+
617,618,0,3,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26.0,1,0,A/5. 3336,16.1,F4,S
|
620 |
+
618,619,1,2,"Becker, Miss. Marion Louise",female,4.0,2,1,230136,39.0,F4,S
|
621 |
+
619,620,0,2,"Gavey, Mr. Lawrence",male,26.0,0,0,31028,10.5,D19,S
|
622 |
+
620,621,0,3,"Yasbeck, Mr. Antoni",male,27.0,1,0,2659,14.4542,D19,C
|
623 |
+
621,622,1,1,"Kimball, Mr. Edwin Nelson Jr",male,42.0,1,0,11753,52.5542,D19,S
|
624 |
+
622,623,1,3,"Nakid, Mr. Sahid",male,20.0,1,1,2653,15.7417,D50,C
|
625 |
+
623,624,0,3,"Hansen, Mr. Henry Damsgaard",male,21.0,0,0,350029,7.8542,D50,S
|
626 |
+
624,625,0,3,"Bowen, Mr. David John ""Dai""",male,21.0,0,0,54636,16.1,D50,S
|
627 |
+
625,626,0,1,"Sutton, Mr. Frederick",male,61.0,0,0,36963,32.3208,D50,S
|
628 |
+
626,627,0,2,"Kirkland, Rev. Charles Leonard",male,57.0,0,0,219533,12.35,D9,Q
|
629 |
+
627,628,1,1,"Longley, Miss. Gretchen Fiske",female,21.0,0,0,13502,77.9583,D9,S
|
630 |
+
628,629,0,3,"Bostandyeff, Mr. Guentcho",male,26.0,0,0,349224,7.8958,A23,S
|
631 |
+
629,630,0,3,"O'Connell, Mr. Patrick D",male,28.0,0,0,334912,7.7333,A23,Q
|
632 |
+
630,631,1,1,"Barkworth, Mr. Algernon Henry Wilson",male,80.0,0,0,27042,30.0,A23,S
|
633 |
+
631,632,0,3,"Lundahl, Mr. Johan Svensson",male,51.0,0,0,347743,7.0542,B50,S
|
634 |
+
632,633,1,1,"Stahelin-Maeglin, Dr. Max",male,32.0,0,0,13214,30.5,B50,C
|
635 |
+
633,634,0,1,"Parr, Mr. William Henry Marsh",male,28.0,0,0,112052,0.0,B35,S
|
636 |
+
634,635,0,3,"Skoog, Miss. Mabel",female,9.0,3,2,347088,27.9,B35,S
|
637 |
+
635,636,1,2,"Davis, Miss. Mary",female,28.0,0,0,237668,13.0,B35,S
|
638 |
+
636,637,0,3,"Leinonen, Mr. Antti Gustaf",male,32.0,0,0,STON/O 2. 3101292,7.925,B35,S
|
639 |
+
637,638,0,2,"Collyer, Mr. Harvey",male,31.0,1,1,C.A. 31921,26.25,B35,S
|
640 |
+
638,639,0,3,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41.0,0,5,3101295,39.6875,B35,S
|
641 |
+
639,640,0,3,"Thorneycroft, Mr. Percival",male,28.0,1,0,376564,16.1,B35,S
|
642 |
+
640,641,0,3,"Jensen, Mr. Hans Peder",male,20.0,0,0,350050,7.8542,B35,S
|
643 |
+
641,642,1,1,"Sagesser, Mlle. Emma",female,24.0,0,0,PC 17477,69.3,B35,C
|
644 |
+
642,643,0,3,"Skoog, Miss. Margit Elizabeth",female,2.0,3,2,347088,27.9,D33,S
|
645 |
+
643,644,1,3,"Foo, Mr. Choong",male,28.0,0,0,1601,56.4958,D33,S
|
646 |
+
644,645,1,3,"Baclini, Miss. Eugenie",female,0.75,2,1,2666,19.2583,D33,C
|
647 |
+
645,646,1,1,"Harper, Mr. Henry Sleeper",male,48.0,1,0,PC 17572,76.7292,D33,C
|
648 |
+
646,647,0,3,"Cor, Mr. Liudevit",male,19.0,0,0,349231,7.8958,A26,S
|
649 |
+
647,648,1,1,"Simonius-Blumer, Col. Oberst Alfons",male,56.0,0,0,13213,35.5,A26,C
|
650 |
+
648,649,0,3,"Willey, Mr. Edward",male,28.0,0,0,S.O./P.P. 751,7.55,D48,S
|
651 |
+
649,650,1,3,"Stanley, Miss. Amy Zillah Elsie",female,23.0,0,0,CA. 2314,7.55,D48,S
|
652 |
+
650,651,0,3,"Mitkoff, Mr. Mito",male,28.0,0,0,349221,7.8958,D48,S
|
653 |
+
651,652,1,2,"Doling, Miss. Elsie",female,18.0,0,1,231919,23.0,D48,S
|
654 |
+
652,653,0,3,"Kalvik, Mr. Johannes Halvorsen",male,21.0,0,0,8475,8.4333,D48,S
|
655 |
+
653,654,1,3,"O'Leary, Miss. Hanora ""Norah""",female,28.0,0,0,330919,7.8292,D48,Q
|
656 |
+
654,655,0,3,"Hegarty, Miss. Hanora ""Nora""",female,18.0,0,0,365226,6.75,D48,Q
|
657 |
+
655,656,0,2,"Hickman, Mr. Leonard Mark",male,24.0,2,0,S.O.C. 14879,73.5,D48,S
|
658 |
+
656,657,0,3,"Radeff, Mr. Alexander",male,28.0,0,0,349223,7.8958,D48,S
|
659 |
+
657,658,0,3,"Bourke, Mrs. John (Catherine)",female,32.0,1,1,364849,15.5,D48,Q
|
660 |
+
658,659,0,2,"Eitemiller, Mr. George Floyd",male,23.0,0,0,29751,13.0,D48,S
|
661 |
+
659,660,0,1,"Newell, Mr. Arthur Webster",male,58.0,0,2,35273,113.275,D48,C
|
662 |
+
660,661,1,1,"Frauenthal, Dr. Henry William",male,50.0,2,0,PC 17611,133.65,E58,S
|
663 |
+
661,662,0,3,"Badt, Mr. Mohamed",male,40.0,0,0,2623,7.225,E58,C
|
664 |
+
662,663,0,1,"Colley, Mr. Edward Pomeroy",male,47.0,0,0,5727,25.5875,E58,S
|
665 |
+
663,664,0,3,"Coleff, Mr. Peju",male,36.0,0,0,349210,7.4958,C126,S
|
666 |
+
664,665,1,3,"Lindqvist, Mr. Eino William",male,20.0,1,0,STON/O 2. 3101285,7.925,C126,S
|
667 |
+
665,666,0,2,"Hickman, Mr. Lewis",male,32.0,2,0,S.O.C. 14879,73.5,C126,S
|
668 |
+
666,667,0,2,"Butler, Mr. Reginald Fenton",male,25.0,0,0,234686,13.0,C126,S
|
669 |
+
667,668,0,3,"Rommetvedt, Mr. Knud Paust",male,28.0,0,0,312993,7.775,C126,S
|
670 |
+
668,669,0,3,"Cook, Mr. Jacob",male,43.0,0,0,A/5 3536,8.05,C126,S
|
671 |
+
669,670,1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,28.0,1,0,19996,52.0,C126,S
|
672 |
+
670,671,1,2,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40.0,1,1,29750,39.0,B71,S
|
673 |
+
671,672,0,1,"Davidson, Mr. Thornton",male,31.0,1,0,F.C. 12750,52.0,B71,S
|
674 |
+
672,673,0,2,"Mitchell, Mr. Henry Michael",male,70.0,0,0,C.A. 24580,10.5,B51 B53 B55,S
|
675 |
+
673,674,1,2,"Wilhelms, Mr. Charles",male,31.0,0,0,244270,13.0,B51 B53 B55,S
|
676 |
+
674,675,0,2,"Watson, Mr. Ennis Hastings",male,28.0,0,0,239856,0.0,B51 B53 B55,S
|
677 |
+
675,676,0,3,"Edvardsson, Mr. Gustaf Hjalmar",male,18.0,0,0,349912,7.775,B51 B53 B55,S
|
678 |
+
676,677,0,3,"Sawyer, Mr. Frederick Charles",male,24.5,0,0,342826,8.05,B51 B53 B55,S
|
679 |
+
677,678,1,3,"Turja, Miss. Anna Sofia",female,18.0,0,0,4138,9.8417,B51 B53 B55,S
|
680 |
+
678,679,0,3,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43.0,1,6,CA 2144,46.9,B51 B53 B55,S
|
681 |
+
679,680,1,1,"Cardeza, Mr. Thomas Drake Martinez",male,36.0,0,1,PC 17755,512.3292,B51 B53 B55,C
|
682 |
+
680,681,0,3,"Peters, Miss. Katie",female,28.0,0,0,330935,8.1375,D49,Q
|
683 |
+
681,682,1,1,"Hassab, Mr. Hammad",male,27.0,0,0,PC 17572,76.7292,D49,C
|
684 |
+
682,683,0,3,"Olsvigen, Mr. Thor Anderson",male,20.0,0,0,6563,9.225,B5,S
|
685 |
+
683,684,0,3,"Goodwin, Mr. Charles Edward",male,14.0,5,2,CA 2144,46.9,B5,S
|
686 |
+
684,685,0,2,"Brown, Mr. Thomas William Solomon",male,60.0,1,1,29750,39.0,B5,S
|
687 |
+
685,686,0,2,"Laroche, Mr. Joseph Philippe Lemercier",male,25.0,1,2,SC/Paris 2123,41.5792,B5,C
|
688 |
+
686,687,0,3,"Panula, Mr. Jaako Arnold",male,14.0,4,1,3101295,39.6875,B5,S
|
689 |
+
687,688,0,3,"Dakic, Mr. Branko",male,19.0,0,0,349228,10.1708,B5,S
|
690 |
+
688,689,0,3,"Fischer, Mr. Eberhard Thelander",male,18.0,0,0,350036,7.7958,B5,S
|
691 |
+
689,690,1,1,"Madill, Miss. Georgette Alexandra",female,15.0,0,1,24160,211.3375,B5,S
|
692 |
+
690,691,1,1,"Dick, Mr. Albert Adrian",male,31.0,1,0,17474,57.0,B20,S
|
693 |
+
691,692,1,3,"Karun, Miss. Manca",female,4.0,0,1,349256,13.4167,C68,C
|
694 |
+
692,693,1,3,"Lam, Mr. Ali",male,28.0,0,0,1601,56.4958,C68,S
|
695 |
+
693,694,0,3,"Saad, Mr. Khalil",male,25.0,0,0,2672,7.225,C68,C
|
696 |
+
694,695,0,1,"Weir, Col. John",male,60.0,0,0,113800,26.55,C68,S
|
697 |
+
695,696,0,2,"Chapman, Mr. Charles Henry",male,52.0,0,0,248731,13.5,C68,S
|
698 |
+
696,697,0,3,"Kelly, Mr. James",male,44.0,0,0,363592,8.05,C68,S
|
699 |
+
697,698,1,3,"Mullens, Miss. Katherine ""Katie""",female,28.0,0,0,35852,7.7333,C68,Q
|
700 |
+
698,699,0,1,"Thayer, Mr. John Borland",male,49.0,1,1,17421,110.8833,C68,C
|
701 |
+
699,700,0,3,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42.0,0,0,348121,7.65,F G63,S
|
702 |
+
700,701,1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18.0,1,0,PC 17757,227.525,C62 C64,C
|
703 |
+
701,702,1,1,"Silverthorne, Mr. Spencer Victor",male,35.0,0,0,PC 17475,26.2875,E24,S
|
704 |
+
702,703,0,3,"Barbara, Miss. Saiide",female,18.0,0,1,2691,14.4542,E24,C
|
705 |
+
703,704,0,3,"Gallagher, Mr. Martin",male,25.0,0,0,36864,7.7417,E24,Q
|
706 |
+
704,705,0,3,"Hansen, Mr. Henrik Juul",male,26.0,1,0,350025,7.8542,E24,S
|
707 |
+
705,706,0,2,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39.0,0,0,250655,26.0,E24,S
|
708 |
+
706,707,1,2,"Kelly, Mrs. Florence ""Fannie""",female,45.0,0,0,223596,13.5,E24,S
|
709 |
+
707,708,1,1,"Calderhead, Mr. Edward Pennington",male,42.0,0,0,PC 17476,26.2875,E24,S
|
710 |
+
708,709,1,1,"Cleaver, Miss. Alice",female,22.0,0,0,113781,151.55,C90,S
|
711 |
+
709,710,1,3,"Moubarek, Master. Halim Gonios (""William George"")",male,28.0,1,1,2661,15.2458,C90,C
|
712 |
+
710,711,1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24.0,0,0,PC 17482,49.5042,C90,C
|
713 |
+
711,712,0,1,"Klaber, Mr. Herman",male,28.0,0,0,113028,26.55,C124,S
|
714 |
+
712,713,1,1,"Taylor, Mr. Elmer Zebley",male,48.0,1,0,19996,52.0,C126,S
|
715 |
+
713,714,0,3,"Larsson, Mr. August Viktor",male,29.0,0,0,7545,9.4833,F G73,S
|
716 |
+
714,715,0,2,"Greenberg, Mr. Samuel",male,52.0,0,0,250647,13.0,F G73,S
|
717 |
+
715,716,0,3,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19.0,0,0,348124,7.65,F G73,S
|
718 |
+
716,717,1,1,"Endres, Miss. Caroline Louise",female,38.0,0,0,PC 17757,227.525,C45,C
|
719 |
+
717,718,1,2,"Troutt, Miss. Edwina Celia ""Winnie""",female,27.0,0,0,34218,10.5,E101,S
|
720 |
+
718,719,0,3,"McEvoy, Mr. Michael",male,28.0,0,0,36568,15.5,E8,Q
|
721 |
+
719,720,0,3,"Johnson, Mr. Malkolm Joackim",male,33.0,0,0,347062,7.775,E8,S
|
722 |
+
720,721,1,2,"Harper, Miss. Annie Jessie ""Nina""",female,6.0,0,1,248727,33.0,E8,S
|
723 |
+
721,722,0,3,"Jensen, Mr. Svend Lauritz",male,17.0,1,0,350048,7.0542,E8,S
|
724 |
+
722,723,0,2,"Gillespie, Mr. William Henry",male,34.0,0,0,12233,13.0,E8,S
|
725 |
+
723,724,0,2,"Hodges, Mr. Henry Price",male,50.0,0,0,250643,13.0,E8,S
|
726 |
+
724,725,1,1,"Chambers, Mr. Norman Campbell",male,27.0,1,0,113806,53.1,E8,S
|
727 |
+
725,726,0,3,"Oreskovic, Mr. Luka",male,20.0,0,0,315094,8.6625,B5,S
|
728 |
+
726,727,1,2,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30.0,3,0,31027,21.0,B5,S
|
729 |
+
727,728,1,3,"Mannion, Miss. Margareth",female,28.0,0,0,36866,7.7375,B5,Q
|
730 |
+
728,729,0,2,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25.0,1,0,236853,26.0,B5,S
|
731 |
+
729,730,0,3,"Ilmakangas, Miss. Pieta Sofia",female,25.0,1,0,STON/O2. 3101271,7.925,B5,S
|
732 |
+
730,731,1,1,"Allen, Miss. Elisabeth Walton",female,29.0,0,0,24160,211.3375,B5,S
|
733 |
+
731,732,0,3,"Hassan, Mr. Houssein G N",male,11.0,0,0,2699,18.7875,B101,C
|
734 |
+
732,733,0,2,"Knight, Mr. Robert J",male,28.0,0,0,239855,0.0,B101,S
|
735 |
+
733,734,0,2,"Berriman, Mr. William John",male,23.0,0,0,28425,13.0,B101,S
|
736 |
+
734,735,0,2,"Troupiansky, Mr. Moses Aaron",male,23.0,0,0,233639,13.0,B101,S
|
737 |
+
735,736,0,3,"Williams, Mr. Leslie",male,28.5,0,0,54636,16.1,B101,S
|
738 |
+
736,737,0,3,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48.0,1,3,W./C. 6608,34.375,B101,S
|
739 |
+
737,738,1,1,"Lesurer, Mr. Gustave J",male,35.0,0,0,PC 17755,512.3292,B101,C
|
740 |
+
738,739,0,3,"Ivanoff, Mr. Kanio",male,28.0,0,0,349201,7.8958,D45,S
|
741 |
+
739,740,0,3,"Nankoff, Mr. Minko",male,28.0,0,0,349218,7.8958,D45,S
|
742 |
+
740,741,1,1,"Hawksford, Mr. Walter James",male,28.0,0,0,16988,30.0,D45,S
|
743 |
+
741,742,0,1,"Cavendish, Mr. Tyrell William",male,36.0,1,0,19877,78.85,C46,S
|
744 |
+
742,743,1,1,"Ryerson, Miss. Susan Parker ""Suzette""",female,21.0,2,2,PC 17608,262.375,B57 B59 B63 B66,C
|
745 |
+
743,744,0,3,"McNamee, Mr. Neal",male,24.0,1,0,376566,16.1,B22,S
|
746 |
+
744,745,1,3,"Stranden, Mr. Juho",male,31.0,0,0,STON/O 2. 3101288,7.925,B22,S
|
747 |
+
745,746,0,1,"Crosby, Capt. Edward Gifford",male,70.0,1,1,WE/P 5735,71.0,B22,S
|
748 |
+
746,747,0,3,"Abbott, Mr. Rossmore Edward",male,16.0,1,1,C.A. 2673,20.25,D30,S
|
749 |
+
747,748,1,2,"Sinkkonen, Miss. Anna",female,30.0,0,0,250648,13.0,D30,S
|
750 |
+
748,749,0,1,"Marvin, Mr. Daniel Warner",male,19.0,1,0,113773,53.1,D30,S
|
751 |
+
749,750,0,3,"Connaghton, Mr. Michael",male,31.0,0,0,335097,7.75,E121,Q
|
752 |
+
750,751,1,2,"Wells, Miss. Joan",female,4.0,1,1,29103,23.0,E121,S
|
753 |
+
751,752,1,3,"Moor, Master. Meier",male,6.0,0,1,392096,12.475,E121,S
|
754 |
+
752,753,0,3,"Vande Velde, Mr. Johannes Joseph",male,33.0,0,0,345780,9.5,B77,S
|
755 |
+
753,754,0,3,"Jonkoff, Mr. Lalio",male,23.0,0,0,349204,7.8958,B77,S
|
756 |
+
754,755,1,2,"Herman, Mrs. Samuel (Jane Laver)",female,48.0,1,2,220845,65.0,B77,S
|
757 |
+
755,756,1,2,"Hamalainen, Master. Viljo",male,0.67,1,1,250649,14.5,B77,S
|
758 |
+
756,757,0,3,"Carlsson, Mr. August Sigfrid",male,28.0,0,0,350042,7.7958,B77,S
|
759 |
+
757,758,0,2,"Bailey, Mr. Percy Andrew",male,18.0,0,0,29108,11.5,B77,S
|
760 |
+
758,759,0,3,"Theobald, Mr. Thomas Leonard",male,34.0,0,0,363294,8.05,B77,S
|
761 |
+
759,760,1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33.0,0,0,110152,86.5,B77,S
|
762 |
+
760,761,0,3,"Garfirth, Mr. John",male,28.0,0,0,358585,14.5,B96 B98,S
|
763 |
+
761,762,0,3,"Nirva, Mr. Iisakki Antino Aijo",male,41.0,0,0,SOTON/O2 3101272,7.125,B96 B98,S
|
764 |
+
762,763,1,3,"Barah, Mr. Hanna Assi",male,20.0,0,0,2663,7.2292,B96 B98,C
|
765 |
+
763,764,1,1,"Carter, Mrs. William Ernest (Lucile Polk)",female,36.0,1,2,113760,120.0,B96 B98,S
|
766 |
+
764,765,0,3,"Eklund, Mr. Hans Linus",male,16.0,0,0,347074,7.775,D11,S
|
767 |
+
765,766,1,1,"Hogeboom, Mrs. John C (Anna Andrews)",female,51.0,1,0,13502,77.9583,D11,S
|
768 |
+
766,767,0,1,"Brewe, Dr. Arthur Jackson",male,28.0,0,0,112379,39.6,E77,C
|
769 |
+
767,768,0,3,"Mangan, Miss. Mary",female,30.5,0,0,364850,7.75,E77,Q
|
770 |
+
768,769,0,3,"Moran, Mr. Daniel J",male,28.0,1,0,371110,24.15,E77,Q
|
771 |
+
769,770,0,3,"Gronnestad, Mr. Daniel Danielsen",male,32.0,0,0,8471,8.3625,E77,S
|
772 |
+
770,771,0,3,"Lievens, Mr. Rene Aime",male,24.0,0,0,345781,9.5,E77,S
|
773 |
+
771,772,0,3,"Jensen, Mr. Niels Peder",male,48.0,0,0,350047,7.8542,E77,S
|
774 |
+
772,773,0,2,"Mack, Mrs. (Mary)",female,57.0,0,0,S.O./P.P. 3,10.5,E77,S
|
775 |
+
773,774,0,3,"Elias, Mr. Dibo",male,28.0,0,0,2674,7.225,F38,C
|
776 |
+
774,775,1,2,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54.0,1,3,29105,23.0,F38,S
|
777 |
+
775,776,0,3,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18.0,0,0,347078,7.75,F38,S
|
778 |
+
776,777,0,3,"Tobin, Mr. Roger",male,28.0,0,0,383121,7.75,F38,Q
|
779 |
+
777,778,1,3,"Emanuel, Miss. Virginia Ethel",female,5.0,0,0,364516,12.475,B3,S
|
780 |
+
778,779,0,3,"Kilgannon, Mr. Thomas J",male,28.0,0,0,36865,7.7375,B3,Q
|
781 |
+
779,780,1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43.0,0,1,24160,211.3375,B3,S
|
782 |
+
780,781,1,3,"Ayoub, Miss. Banoura",female,13.0,0,0,2687,7.2292,B20,C
|
783 |
+
781,782,1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17.0,1,0,17474,57.0,B20,S
|
784 |
+
782,783,0,1,"Long, Mr. Milton Clyde",male,29.0,0,0,113501,30.0,D6,S
|
785 |
+
783,784,0,3,"Johnston, Mr. Andrew G",male,28.0,1,2,W./C. 6607,23.45,B82 B84,S
|
786 |
+
784,785,0,3,"Ali, Mr. William",male,25.0,0,0,SOTON/O.Q. 3101312,7.05,B82 B84,S
|
787 |
+
785,786,0,3,"Harmer, Mr. Abraham (David Lishin)",male,25.0,0,0,374887,7.25,B82 B84,S
|
788 |
+
786,787,1,3,"Sjoblom, Miss. Anna Sofia",female,18.0,0,0,3101265,7.4958,B82 B84,S
|
789 |
+
787,788,0,3,"Rice, Master. George Hugh",male,8.0,4,1,382652,29.125,B82 B84,Q
|
790 |
+
788,789,1,3,"Dean, Master. Bertram Vere",male,1.0,1,2,C.A. 2315,20.575,B82 B84,S
|
791 |
+
789,790,0,1,"Guggenheim, Mr. Benjamin",male,46.0,0,0,PC 17593,79.2,B82 B84,C
|
792 |
+
790,791,0,3,"Keane, Mr. Andrew ""Andy""",male,28.0,0,0,12460,7.75,D17,Q
|
793 |
+
791,792,0,2,"Gaskell, Mr. Alfred",male,16.0,0,0,239865,26.0,D17,S
|
794 |
+
792,793,0,3,"Sage, Miss. Stella Anna",female,28.0,8,2,CA. 2343,69.55,D17,S
|
795 |
+
793,794,0,1,"Hoyt, Mr. William Fisher",male,28.0,0,0,PC 17600,30.6958,D17,C
|
796 |
+
794,795,0,3,"Dantcheff, Mr. Ristiu",male,25.0,0,0,349203,7.8958,D17,S
|
797 |
+
795,796,0,2,"Otter, Mr. Richard",male,39.0,0,0,28213,13.0,D17,S
|
798 |
+
796,797,1,1,"Leader, Dr. Alice (Farnham)",female,49.0,0,0,17465,25.9292,D17,S
|
799 |
+
797,798,1,3,"Osman, Mrs. Mara",female,31.0,0,0,349244,8.6833,B96 B98,S
|
800 |
+
798,799,0,3,"Ibrahim Shawah, Mr. Yousseff",male,30.0,0,0,2685,7.2292,B96 B98,C
|
801 |
+
799,800,0,3,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30.0,1,1,345773,24.15,B96 B98,S
|
802 |
+
800,801,0,2,"Ponesell, Mr. Martin",male,34.0,0,0,250647,13.0,B96 B98,S
|
803 |
+
801,802,1,2,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31.0,1,1,C.A. 31921,26.25,B96 B98,S
|
804 |
+
802,803,1,1,"Carter, Master. William Thornton II",male,11.0,1,2,113760,120.0,B96 B98,S
|
805 |
+
803,804,1,3,"Thomas, Master. Assad Alexander",male,0.42,0,1,2625,8.5167,A36,C
|
806 |
+
804,805,1,3,"Hedman, Mr. Oskar Arvid",male,27.0,0,0,347089,6.975,A36,S
|
807 |
+
805,806,0,3,"Johansson, Mr. Karl Johan",male,31.0,0,0,347063,7.775,A36,S
|
808 |
+
806,807,0,1,"Andrews, Mr. Thomas Jr",male,39.0,0,0,112050,0.0,A36,S
|
809 |
+
807,808,0,3,"Pettersson, Miss. Ellen Natalia",female,18.0,0,0,347087,7.775,E8,S
|
810 |
+
808,809,0,2,"Meyer, Mr. August",male,39.0,0,0,248723,13.0,E8,S
|
811 |
+
809,810,1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33.0,1,0,113806,53.1,E8,S
|
812 |
+
810,811,0,3,"Alexander, Mr. William",male,26.0,0,0,3474,7.8875,B102,S
|
813 |
+
811,812,0,3,"Lester, Mr. James",male,39.0,0,0,A/4 48871,24.15,B102,S
|
814 |
+
812,813,0,2,"Slemen, Mr. Richard James",male,35.0,0,0,28206,10.5,B102,S
|
815 |
+
813,814,0,3,"Andersson, Miss. Ebba Iris Alfrida",female,6.0,4,2,347082,31.275,B102,S
|
816 |
+
814,815,0,3,"Tomlin, Mr. Ernest Portage",male,30.5,0,0,364499,8.05,B102,S
|
817 |
+
815,816,0,1,"Fry, Mr. Richard",male,28.0,0,0,112058,0.0,B102,S
|
818 |
+
816,817,0,3,"Heininen, Miss. Wendla Maria",female,23.0,0,0,STON/O2. 3101290,7.925,B69,S
|
819 |
+
817,818,0,2,"Mallet, Mr. Albert",male,31.0,1,1,S.C./PARIS 2079,37.0042,B69,C
|
820 |
+
818,819,0,3,"Holm, Mr. John Fredrik Alexander",male,43.0,0,0,C 7075,6.45,B69,S
|
821 |
+
819,820,0,3,"Skoog, Master. Karl Thorsten",male,10.0,3,2,347088,27.9,B69,S
|
822 |
+
820,821,1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52.0,1,1,12749,93.5,B69,S
|
823 |
+
821,822,1,3,"Lulic, Mr. Nikola",male,27.0,0,0,315098,8.6625,E121,S
|
824 |
+
822,823,0,1,"Reuchlin, Jonkheer. John George",male,38.0,0,0,19972,0.0,E121,S
|
825 |
+
823,824,1,3,"Moor, Mrs. (Beila)",female,27.0,0,1,392096,12.475,E121,S
|
826 |
+
824,825,0,3,"Panula, Master. Urho Abraham",male,2.0,4,1,3101295,39.6875,B28,S
|
827 |
+
825,826,0,3,"Flynn, Mr. John",male,28.0,0,0,368323,6.95,B28,Q
|
828 |
+
826,827,0,3,"Lam, Mr. Len",male,28.0,0,0,1601,56.4958,B28,S
|
829 |
+
827,828,1,2,"Mallet, Master. Andre",male,1.0,0,2,S.C./PARIS 2079,37.0042,B28,C
|
830 |
+
828,829,1,3,"McCormack, Mr. Thomas Joseph",male,28.0,0,0,367228,7.75,B28,Q
|
831 |
+
829,830,1,1,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62.0,0,0,113572,80.0,B28,S
|
832 |
+
830,831,1,3,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15.0,1,0,2659,14.4542,E49,C
|
833 |
+
831,832,1,2,"Richards, Master. George Sibley",male,0.83,1,1,29106,18.75,E49,S
|
834 |
+
832,833,0,3,"Saad, Mr. Amin",male,28.0,0,0,2671,7.2292,E49,C
|
835 |
+
833,834,0,3,"Augustsson, Mr. Albert",male,23.0,0,0,347468,7.8542,E49,S
|
836 |
+
834,835,0,3,"Allum, Mr. Owen George",male,18.0,0,0,2223,8.3,E49,S
|
837 |
+
835,836,1,1,"Compton, Miss. Sara Rebecca",female,39.0,1,1,PC 17756,83.1583,E49,C
|
838 |
+
836,837,0,3,"Pasic, Mr. Jakob",male,21.0,0,0,315097,8.6625,C47,S
|
839 |
+
837,838,0,3,"Sirota, Mr. Maurice",male,28.0,0,0,392092,8.05,C47,S
|
840 |
+
838,839,1,3,"Chip, Mr. Chang",male,32.0,0,0,1601,56.4958,C47,S
|
841 |
+
839,840,1,1,"Marechal, Mr. Pierre",male,28.0,0,0,11774,29.7,C47,C
|
842 |
+
840,841,0,3,"Alhomaki, Mr. Ilmari Rudolf",male,20.0,0,0,SOTON/O2 3101287,7.925,C92,S
|
843 |
+
841,842,0,2,"Mudd, Mr. Thomas Charles",male,16.0,0,0,S.O./P.P. 3,10.5,C92,S
|
844 |
+
842,843,1,1,"Serepeca, Miss. Augusta",female,30.0,0,0,113798,31.0,C92,C
|
845 |
+
843,844,0,3,"Lemberopolous, Mr. Peter L",male,34.5,0,0,2683,6.4375,C92,C
|
846 |
+
844,845,0,3,"Culumovic, Mr. Jeso",male,17.0,0,0,315090,8.6625,C92,S
|
847 |
+
845,846,0,3,"Abbing, Mr. Anthony",male,42.0,0,0,C.A. 5547,7.55,C92,S
|
848 |
+
846,847,0,3,"Sage, Mr. Douglas Bullen",male,28.0,8,2,CA. 2343,69.55,C92,S
|
849 |
+
847,848,0,3,"Markoff, Mr. Marin",male,35.0,0,0,349213,7.8958,C92,C
|
850 |
+
848,849,0,2,"Harper, Rev. John",male,28.0,0,1,248727,33.0,C92,S
|
851 |
+
849,850,1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,28.0,1,0,17453,89.1042,C92,C
|
852 |
+
850,851,0,3,"Andersson, Master. Sigvard Harald Elias",male,4.0,4,2,347082,31.275,D28,S
|
853 |
+
851,852,0,3,"Svensson, Mr. Johan",male,74.0,0,0,347060,7.775,D28,S
|
854 |
+
852,853,0,3,"Boulos, Miss. Nourelain",female,9.0,1,1,2678,15.2458,D28,C
|
855 |
+
853,854,1,1,"Lines, Miss. Mary Conover",female,16.0,0,1,PC 17592,39.4,D28,S
|
856 |
+
854,855,0,2,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44.0,1,0,244252,26.0,E17,S
|
857 |
+
855,856,1,3,"Aks, Mrs. Sam (Leah Rosen)",female,18.0,0,1,392091,9.35,E17,S
|
858 |
+
856,857,1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45.0,1,1,36928,164.8667,E17,S
|
859 |
+
857,858,1,1,"Daly, Mr. Peter Denis ",male,51.0,0,0,113055,26.55,E17,S
|
860 |
+
858,859,1,3,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24.0,0,3,2666,19.2583,D17,C
|
861 |
+
859,860,0,3,"Razi, Mr. Raihed",male,28.0,0,0,2629,7.2292,D17,C
|
862 |
+
860,861,0,3,"Hansen, Mr. Claus Peter",male,41.0,2,0,350026,14.1083,D17,S
|
863 |
+
861,862,0,2,"Giles, Mr. Frederick Edward",male,21.0,1,0,28134,11.5,D17,S
|
864 |
+
862,863,1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48.0,0,0,17466,25.9292,D17,S
|
865 |
+
863,864,0,3,"Sage, Miss. Dorothy Edith ""Dolly""",female,28.0,8,2,CA. 2343,69.55,A24,S
|
866 |
+
864,865,0,2,"Gill, Mr. John William",male,24.0,0,0,233866,13.0,A24,S
|
867 |
+
865,866,1,2,"Bystrom, Mrs. (Karolina)",female,42.0,0,0,236852,13.0,A24,S
|
868 |
+
866,867,1,2,"Duran y More, Miss. Asuncion",female,27.0,1,0,SC/PARIS 2149,13.8583,A24,C
|
869 |
+
867,868,0,1,"Roebling, Mr. Washington Augustus II",male,31.0,0,0,PC 17590,50.4958,A24,S
|
870 |
+
868,869,0,3,"van Melkebeke, Mr. Philemon",male,28.0,0,0,345777,9.5,D35,S
|
871 |
+
869,870,1,3,"Johnson, Master. Harold Theodor",male,4.0,1,1,347742,11.1333,D35,S
|
872 |
+
870,871,0,3,"Balkic, Mr. Cerin",male,26.0,0,0,349248,7.8958,D35,S
|
873 |
+
871,872,1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47.0,1,1,11751,52.5542,D35,S
|
874 |
+
872,873,0,1,"Carlsson, Mr. Frans Olof",male,33.0,0,0,695,5.0,B51 B53 B55,S
|
875 |
+
873,874,0,3,"Vander Cruyssen, Mr. Victor",male,47.0,0,0,345765,9.0,C50,S
|
876 |
+
874,875,1,2,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28.0,1,0,P/PP 3381,24.0,C50,C
|
877 |
+
875,876,1,3,"Najib, Miss. Adele Kiamie ""Jane""",female,15.0,0,0,2667,7.225,C50,C
|
878 |
+
876,877,0,3,"Gustafsson, Mr. Alfred Ossian",male,20.0,0,0,7534,9.8458,C50,S
|
879 |
+
877,878,0,3,"Petroff, Mr. Nedelio",male,19.0,0,0,349212,7.8958,C50,S
|
880 |
+
878,879,0,3,"Laleff, Mr. Kristo",male,28.0,0,0,349217,7.8958,C50,S
|
881 |
+
879,880,1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56.0,0,1,11767,83.1583,C50,C
|
882 |
+
880,881,1,2,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25.0,0,1,230433,26.0,B42,S
|
883 |
+
881,882,0,3,"Markun, Mr. Johann",male,33.0,0,0,349257,7.8958,B42,S
|
884 |
+
882,883,0,3,"Dahlberg, Miss. Gerda Ulrika",female,22.0,0,0,7552,10.5167,B42,S
|
885 |
+
883,884,0,2,"Banfield, Mr. Frederick James",male,28.0,0,0,C.A./SOTON 34068,10.5,B42,S
|
886 |
+
884,885,0,3,"Sutehall, Mr. Henry Jr",male,25.0,0,0,SOTON/OQ 392076,7.05,B42,S
|
887 |
+
885,886,0,3,"Rice, Mrs. William (Margaret Norton)",female,39.0,0,5,382652,29.125,B42,Q
|
888 |
+
886,887,0,2,"Montvila, Rev. Juozas",male,27.0,0,0,211536,13.0,B42,S
|
889 |
+
887,888,1,1,"Graham, Miss. Margaret Edith",female,19.0,0,0,112053,30.0,B42,S
|
890 |
+
888,889,0,3,"Johnston, Miss. Catherine Helen ""Carrie""",female,28.0,1,2,W./C. 6607,23.45,C148,S
|
891 |
+
889,890,1,1,"Behr, Mr. Karl Howell",male,26.0,0,0,111369,30.0,C148,C
|
892 |
+
890,891,0,3,"Dooley, Mr. Patrick",male,32.0,0,0,370376,7.75,,Q
|
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c7872cb716606afecef57bd1ff229ddf3e87d83812e5b80db48cc0f6c2678ef0
|
3 |
+
size 5118614
|
result.csv
ADDED
@@ -0,0 +1,180 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
PassengerId,Name,ActualSurvived,PredictSurvived
|
2 |
+
127,"McMahon, Mr. Martin",0,0
|
3 |
+
355,"Yousif, Mr. Wazli",0,0
|
4 |
+
591,"Rintamaki, Mr. Matti",0,0
|
5 |
+
510,"Lang, Mr. Fang",1,1
|
6 |
+
770,"Gronnestad, Mr. Daniel Danielsen",0,0
|
7 |
+
546,"Nicholson, Mr. Arthur Ernest",0,0
|
8 |
+
760,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",1,1
|
9 |
+
262,"Asplund, Master. Edvin Rojj Felix",1,0
|
10 |
+
330,"Hippach, Miss. Jean Gertrude",1,1
|
11 |
+
350,"Dimic, Mr. Jovan",0,0
|
12 |
+
61,"Sirayanian, Mr. Orsen",0,0
|
13 |
+
476,"Clifford, Mr. George Quincy",0,0
|
14 |
+
693,"Lam, Mr. Ali",1,1
|
15 |
+
766,"Hogeboom, Mrs. John C (Anna Andrews)",1,1
|
16 |
+
878,"Petroff, Mr. Nedelio",0,0
|
17 |
+
748,"Sinkkonen, Miss. Anna",1,1
|
18 |
+
268,"Persson, Mr. Ernst Ulrik",1,0
|
19 |
+
294,"Haas, Miss. Aloisia",0,1
|
20 |
+
380,"Gustafsson, Mr. Karl Gideon",0,0
|
21 |
+
482,"Frost, Mr. Anthony Wood ""Archie""",0,0
|
22 |
+
439,"Fortune, Mr. Mark",0,0
|
23 |
+
29,"O'Dwyer, Miss. Ellen ""Nellie""",1,1
|
24 |
+
592,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",1,1
|
25 |
+
441,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",1,1
|
26 |
+
296,"Lewy, Mr. Ervin G",0,0
|
27 |
+
637,"Leinonen, Mr. Antti Gustaf",0,0
|
28 |
+
680,"Cardeza, Mr. Thomas Drake Martinez",1,0
|
29 |
+
858,"Daly, Mr. Peter Denis ",1,0
|
30 |
+
841,"Alhomaki, Mr. Ilmari Rudolf",0,0
|
31 |
+
362,"del Carlo, Mr. Sebastiano",0,0
|
32 |
+
696,"Chapman, Mr. Charles Henry",0,0
|
33 |
+
446,"Dodge, Master. Washington",1,0
|
34 |
+
12,"Bonnell, Miss. Elizabeth",1,1
|
35 |
+
829,"McCormack, Mr. Thomas Joseph",1,0
|
36 |
+
259,"Ward, Miss. Anna",1,1
|
37 |
+
828,"Mallet, Master. Andre",1,1
|
38 |
+
734,"Berriman, Mr. William John",0,0
|
39 |
+
738,"Lesurer, Mr. Gustave J",1,0
|
40 |
+
13,"Saundercock, Mr. William Henry",0,0
|
41 |
+
122,"Moore, Mr. Leonard Charles",0,0
|
42 |
+
60,"Goodwin, Master. William Frederick",0,0
|
43 |
+
418,"Silven, Miss. Lyyli Karoliina",1,1
|
44 |
+
287,"de Mulder, Mr. Theodore",1,0
|
45 |
+
674,"Wilhelms, Mr. Charles",1,0
|
46 |
+
846,"Abbing, Mr. Anthony",0,0
|
47 |
+
736,"Williams, Mr. Leslie",0,0
|
48 |
+
323,"Slayter, Miss. Hilda Mary",1,1
|
49 |
+
276,"Andrews, Miss. Kornelia Theodosia",1,1
|
50 |
+
545,"Douglas, Mr. Walter Donald",0,0
|
51 |
+
177,"Lefebre, Master. Henry Forbes",0,0
|
52 |
+
410,"Lefebre, Miss. Ida",0,0
|
53 |
+
313,"Lahtinen, Mrs. William (Anna Sylfven)",0,1
|
54 |
+
384,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",1,1
|
55 |
+
425,"Rosblom, Mr. Viktor Richard",0,0
|
56 |
+
208,"Albimona, Mr. Nassef Cassem",1,0
|
57 |
+
364,"Asim, Mr. Adola",0,0
|
58 |
+
435,"Silvey, Mr. William Baird",0,1
|
59 |
+
684,"Goodwin, Mr. Charles Edward",0,0
|
60 |
+
569,"Doharr, Mr. Tannous",0,0
|
61 |
+
577,"Garside, Miss. Ethel",1,1
|
62 |
+
873,"Carlsson, Mr. Frans Olof",0,0
|
63 |
+
611,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",0,0
|
64 |
+
453,"Foreman, Mr. Benjamin Laventall",0,0
|
65 |
+
245,"Attalah, Mr. Sleiman",0,0
|
66 |
+
728,"Mannion, Miss. Margareth",1,1
|
67 |
+
434,"Kallio, Mr. Nikolai Erland",0,0
|
68 |
+
471,"Keefe, Mr. Arthur",0,0
|
69 |
+
149,"Navratil, Mr. Michel (""Louis M Hoffman"")",0,0
|
70 |
+
24,"Sloper, Mr. William Thompson",1,0
|
71 |
+
387,"Goodwin, Master. Sidney Leonard",0,0
|
72 |
+
444,"Reynaldo, Ms. Encarnacion",1,1
|
73 |
+
564,"Simmons, Mr. John",0,0
|
74 |
+
200,"Yrois, Miss. Henriette (""Mrs Harbeck"")",0,1
|
75 |
+
844,"Lemberopolous, Mr. Peter L",0,0
|
76 |
+
808,"Pettersson, Miss. Ellen Natalia",0,1
|
77 |
+
353,"Elias, Mr. Tannous",0,0
|
78 |
+
213,"Perkin, Mr. John Henry",0,0
|
79 |
+
420,"Van Impe, Miss. Catharina",0,0
|
80 |
+
231,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",1,1
|
81 |
+
645,"Baclini, Miss. Eugenie",1,1
|
82 |
+
139,"Osen, Mr. Olaf Elon",0,0
|
83 |
+
887,"Montvila, Rev. Juozas",0,0
|
84 |
+
683,"Olsvigen, Mr. Thor Anderson",0,0
|
85 |
+
452,"Hagland, Mr. Ingvald Olai Olsen",0,0
|
86 |
+
134,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",1,1
|
87 |
+
317,"Kantor, Mrs. Sinai (Miriam Sternin)",1,1
|
88 |
+
793,"Sage, Miss. Stella Anna",0,0
|
89 |
+
248,"Hamalainen, Mrs. William (Anna)",1,1
|
90 |
+
758,"Bailey, Mr. Percy Andrew",0,0
|
91 |
+
725,"Chambers, Mr. Norman Campbell",1,1
|
92 |
+
818,"Mallet, Mr. Albert",0,0
|
93 |
+
726,"Oreskovic, Mr. Luka",0,0
|
94 |
+
670,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",1,1
|
95 |
+
612,"Jardin, Mr. Jose Neto",0,0
|
96 |
+
310,"Francatelli, Miss. Laura Mabel",1,1
|
97 |
+
442,"Hampe, Mr. Leon",0,0
|
98 |
+
836,"Compton, Miss. Sara Rebecca",1,1
|
99 |
+
422,"Charters, Mr. David",0,0
|
100 |
+
282,"Olsson, Mr. Nils Johan Goransson",0,0
|
101 |
+
630,"O'Connell, Mr. Patrick D",0,0
|
102 |
+
600,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",1,0
|
103 |
+
499,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",0,1
|
104 |
+
593,"Elsbury, Mr. William James",0,0
|
105 |
+
118,"Turpin, Mr. William John Robert",0,0
|
106 |
+
636,"Davis, Miss. Mary",1,1
|
107 |
+
359,"McGovern, Miss. Mary",1,1
|
108 |
+
465,"Maisner, Mr. Simon",0,0
|
109 |
+
685,"Brown, Mr. Thomas William Solomon",0,0
|
110 |
+
664,"Coleff, Mr. Peju",0,0
|
111 |
+
856,"Aks, Mrs. Sam (Leah Rosen)",1,0
|
112 |
+
786,"Harmer, Mr. Abraham (David Lishin)",0,0
|
113 |
+
809,"Meyer, Mr. August",0,0
|
114 |
+
643,"Skoog, Miss. Margit Elizabeth",0,0
|
115 |
+
289,"Hosono, Mr. Masabumi",1,0
|
116 |
+
797,"Leader, Dr. Alice (Farnham)",1,1
|
117 |
+
348,"Davison, Mrs. Thomas Henry (Mary E Finck)",1,1
|
118 |
+
209,"Carr, Miss. Helen ""Ellen""",1,1
|
119 |
+
166,"Goldsmith, Master. Frank John William ""Frankie""",1,0
|
120 |
+
270,"Bissette, Miss. Amelia",1,1
|
121 |
+
560,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",1,0
|
122 |
+
831,"Yasbeck, Mrs. Antoni (Selini Alexander)",1,1
|
123 |
+
490,"Coutts, Master. Eden Leslie ""Neville""",1,0
|
124 |
+
750,"Connaghton, Mr. Michael",0,0
|
125 |
+
601,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",1,1
|
126 |
+
204,"Youseff, Mr. Gerious",0,0
|
127 |
+
342,"Fortune, Miss. Alice Elizabeth",1,1
|
128 |
+
284,"Dorking, Mr. Edward Arthur",1,0
|
129 |
+
73,"Hood, Mr. Ambrose Jr",0,0
|
130 |
+
72,"Goodwin, Miss. Lillian Amy",0,0
|
131 |
+
862,"Giles, Mr. Frederick Edward",0,0
|
132 |
+
788,"Rice, Master. George Hugh",0,0
|
133 |
+
483,"Rouse, Mr. Richard Henry",0,0
|
134 |
+
38,"Cann, Mr. Ernest Charles",0,0
|
135 |
+
214,"Givard, Mr. Hans Kristensen",0,0
|
136 |
+
85,"Ilett, Miss. Bertha",1,1
|
137 |
+
724,"Hodges, Mr. Henry Price",0,0
|
138 |
+
407,"Widegren, Mr. Carl/Charles Peter",0,0
|
139 |
+
776,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",0,0
|
140 |
+
629,"Bostandyeff, Mr. Guentcho",0,0
|
141 |
+
179,"Hale, Mr. Reginald",0,0
|
142 |
+
440,"Kvillner, Mr. Johan Henrik Johannesson",0,0
|
143 |
+
649,"Willey, Mr. Edward",0,0
|
144 |
+
865,"Gill, Mr. John William",0,0
|
145 |
+
681,"Peters, Miss. Katie",0,0
|
146 |
+
584,"Ross, Mr. John Hugo",0,1
|
147 |
+
152,"Pears, Mrs. Thomas (Edith Wearne)",1,1
|
148 |
+
666,"Hickman, Mr. Lewis",0,0
|
149 |
+
357,"Bowerman, Miss. Elsie Edith",1,1
|
150 |
+
366,"Adahl, Mr. Mauritz Nils Martin",0,0
|
151 |
+
803,"Carter, Master. William Thornton II",1,1
|
152 |
+
863,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",1,1
|
153 |
+
386,"Davies, Mr. Charles Henry",0,0
|
154 |
+
842,"Mudd, Mr. Thomas Charles",0,0
|
155 |
+
229,"Fahlstrom, Mr. Arne Jonas",0,0
|
156 |
+
704,"Gallagher, Mr. Martin",0,0
|
157 |
+
502,"Canavan, Miss. Mary",0,1
|
158 |
+
194,"Navratil, Master. Michel M",1,1
|
159 |
+
722,"Jensen, Mr. Svend Lauritz",0,0
|
160 |
+
845,"Culumovic, Mr. Jeso",0,0
|
161 |
+
237,"Hold, Mr. Stephen",0,0
|
162 |
+
345,"Fox, Mr. Stanley Hubert",0,0
|
163 |
+
805,"Hedman, Mr. Oskar Arvid",1,0
|
164 |
+
694,"Saad, Mr. Khalil",0,0
|
165 |
+
8,"Palsson, Master. Gosta Leonard",0,0
|
166 |
+
866,"Bystrom, Mrs. (Karolina)",1,1
|
167 |
+
41,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",0,0
|
168 |
+
449,"Baclini, Miss. Marie Catherine",1,1
|
169 |
+
251,"Reed, Mr. James George",0,0
|
170 |
+
267,"Panula, Mr. Ernesti Arvid",0,0
|
171 |
+
426,"Wiseman, Mr. Phillippe",0,0
|
172 |
+
335,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",1,1
|
173 |
+
489,"Somerton, Mr. Francis William",0,0
|
174 |
+
459,"Toomey, Miss. Ellen",1,1
|
175 |
+
711,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",1,1
|
176 |
+
733,"Knight, Mr. Robert J",0,0
|
177 |
+
43,"Kraeff, Mr. Theodor",0,0
|
178 |
+
180,"Leonard, Mr. Lionel",0,0
|
179 |
+
124,"Webber, Miss. Susan",1,1
|
180 |
+
891,"Dooley, Mr. Patrick",0,0
|
test.csv
ADDED
@@ -0,0 +1,419 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
PassengerId,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked
|
2 |
+
892,3,"Kelly, Mr. James",male,34.5,0,0,330911,7.8292,,Q
|
3 |
+
893,3,"Wilkes, Mrs. James (Ellen Needs)",female,47,1,0,363272,7,,S
|
4 |
+
894,2,"Myles, Mr. Thomas Francis",male,62,0,0,240276,9.6875,,Q
|
5 |
+
895,3,"Wirz, Mr. Albert",male,27,0,0,315154,8.6625,,S
|
6 |
+
896,3,"Hirvonen, Mrs. Alexander (Helga E Lindqvist)",female,22,1,1,3101298,12.2875,,S
|
7 |
+
897,3,"Svensson, Mr. Johan Cervin",male,14,0,0,7538,9.225,,S
|
8 |
+
898,3,"Connolly, Miss. Kate",female,30,0,0,330972,7.6292,,Q
|
9 |
+
899,2,"Caldwell, Mr. Albert Francis",male,26,1,1,248738,29,,S
|
10 |
+
900,3,"Abrahim, Mrs. Joseph (Sophie Halaut Easu)",female,18,0,0,2657,7.2292,,C
|
11 |
+
901,3,"Davies, Mr. John Samuel",male,21,2,0,A/4 48871,24.15,,S
|
12 |
+
902,3,"Ilieff, Mr. Ylio",male,,0,0,349220,7.8958,,S
|
13 |
+
903,1,"Jones, Mr. Charles Cresson",male,46,0,0,694,26,,S
|
14 |
+
904,1,"Snyder, Mrs. John Pillsbury (Nelle Stevenson)",female,23,1,0,21228,82.2667,B45,S
|
15 |
+
905,2,"Howard, Mr. Benjamin",male,63,1,0,24065,26,,S
|
16 |
+
906,1,"Chaffee, Mrs. Herbert Fuller (Carrie Constance Toogood)",female,47,1,0,W.E.P. 5734,61.175,E31,S
|
17 |
+
907,2,"del Carlo, Mrs. Sebastiano (Argenia Genovesi)",female,24,1,0,SC/PARIS 2167,27.7208,,C
|
18 |
+
908,2,"Keane, Mr. Daniel",male,35,0,0,233734,12.35,,Q
|
19 |
+
909,3,"Assaf, Mr. Gerios",male,21,0,0,2692,7.225,,C
|
20 |
+
910,3,"Ilmakangas, Miss. Ida Livija",female,27,1,0,STON/O2. 3101270,7.925,,S
|
21 |
+
911,3,"Assaf Khalil, Mrs. Mariana (Miriam"")""",female,45,0,0,2696,7.225,,C
|
22 |
+
912,1,"Rothschild, Mr. Martin",male,55,1,0,PC 17603,59.4,,C
|
23 |
+
913,3,"Olsen, Master. Artur Karl",male,9,0,1,C 17368,3.1708,,S
|
24 |
+
914,1,"Flegenheim, Mrs. Alfred (Antoinette)",female,,0,0,PC 17598,31.6833,,S
|
25 |
+
915,1,"Williams, Mr. Richard Norris II",male,21,0,1,PC 17597,61.3792,,C
|
26 |
+
916,1,"Ryerson, Mrs. Arthur Larned (Emily Maria Borie)",female,48,1,3,PC 17608,262.375,B57 B59 B63 B66,C
|
27 |
+
917,3,"Robins, Mr. Alexander A",male,50,1,0,A/5. 3337,14.5,,S
|
28 |
+
918,1,"Ostby, Miss. Helene Ragnhild",female,22,0,1,113509,61.9792,B36,C
|
29 |
+
919,3,"Daher, Mr. Shedid",male,22.5,0,0,2698,7.225,,C
|
30 |
+
920,1,"Brady, Mr. John Bertram",male,41,0,0,113054,30.5,A21,S
|
31 |
+
921,3,"Samaan, Mr. Elias",male,,2,0,2662,21.6792,,C
|
32 |
+
922,2,"Louch, Mr. Charles Alexander",male,50,1,0,SC/AH 3085,26,,S
|
33 |
+
923,2,"Jefferys, Mr. Clifford Thomas",male,24,2,0,C.A. 31029,31.5,,S
|
34 |
+
924,3,"Dean, Mrs. Bertram (Eva Georgetta Light)",female,33,1,2,C.A. 2315,20.575,,S
|
35 |
+
925,3,"Johnston, Mrs. Andrew G (Elizabeth Lily"" Watson)""",female,,1,2,W./C. 6607,23.45,,S
|
36 |
+
926,1,"Mock, Mr. Philipp Edmund",male,30,1,0,13236,57.75,C78,C
|
37 |
+
927,3,"Katavelas, Mr. Vassilios (Catavelas Vassilios"")""",male,18.5,0,0,2682,7.2292,,C
|
38 |
+
928,3,"Roth, Miss. Sarah A",female,,0,0,342712,8.05,,S
|
39 |
+
929,3,"Cacic, Miss. Manda",female,21,0,0,315087,8.6625,,S
|
40 |
+
930,3,"Sap, Mr. Julius",male,25,0,0,345768,9.5,,S
|
41 |
+
931,3,"Hee, Mr. Ling",male,,0,0,1601,56.4958,,S
|
42 |
+
932,3,"Karun, Mr. Franz",male,39,0,1,349256,13.4167,,C
|
43 |
+
933,1,"Franklin, Mr. Thomas Parham",male,,0,0,113778,26.55,D34,S
|
44 |
+
934,3,"Goldsmith, Mr. Nathan",male,41,0,0,SOTON/O.Q. 3101263,7.85,,S
|
45 |
+
935,2,"Corbett, Mrs. Walter H (Irene Colvin)",female,30,0,0,237249,13,,S
|
46 |
+
936,1,"Kimball, Mrs. Edwin Nelson Jr (Gertrude Parsons)",female,45,1,0,11753,52.5542,D19,S
|
47 |
+
937,3,"Peltomaki, Mr. Nikolai Johannes",male,25,0,0,STON/O 2. 3101291,7.925,,S
|
48 |
+
938,1,"Chevre, Mr. Paul Romaine",male,45,0,0,PC 17594,29.7,A9,C
|
49 |
+
939,3,"Shaughnessy, Mr. Patrick",male,,0,0,370374,7.75,,Q
|
50 |
+
940,1,"Bucknell, Mrs. William Robert (Emma Eliza Ward)",female,60,0,0,11813,76.2917,D15,C
|
51 |
+
941,3,"Coutts, Mrs. William (Winnie Minnie"" Treanor)""",female,36,0,2,C.A. 37671,15.9,,S
|
52 |
+
942,1,"Smith, Mr. Lucien Philip",male,24,1,0,13695,60,C31,S
|
53 |
+
943,2,"Pulbaum, Mr. Franz",male,27,0,0,SC/PARIS 2168,15.0333,,C
|
54 |
+
944,2,"Hocking, Miss. Ellen Nellie""""",female,20,2,1,29105,23,,S
|
55 |
+
945,1,"Fortune, Miss. Ethel Flora",female,28,3,2,19950,263,C23 C25 C27,S
|
56 |
+
946,2,"Mangiavacchi, Mr. Serafino Emilio",male,,0,0,SC/A.3 2861,15.5792,,C
|
57 |
+
947,3,"Rice, Master. Albert",male,10,4,1,382652,29.125,,Q
|
58 |
+
948,3,"Cor, Mr. Bartol",male,35,0,0,349230,7.8958,,S
|
59 |
+
949,3,"Abelseth, Mr. Olaus Jorgensen",male,25,0,0,348122,7.65,F G63,S
|
60 |
+
950,3,"Davison, Mr. Thomas Henry",male,,1,0,386525,16.1,,S
|
61 |
+
951,1,"Chaudanson, Miss. Victorine",female,36,0,0,PC 17608,262.375,B61,C
|
62 |
+
952,3,"Dika, Mr. Mirko",male,17,0,0,349232,7.8958,,S
|
63 |
+
953,2,"McCrae, Mr. Arthur Gordon",male,32,0,0,237216,13.5,,S
|
64 |
+
954,3,"Bjorklund, Mr. Ernst Herbert",male,18,0,0,347090,7.75,,S
|
65 |
+
955,3,"Bradley, Miss. Bridget Delia",female,22,0,0,334914,7.725,,Q
|
66 |
+
956,1,"Ryerson, Master. John Borie",male,13,2,2,PC 17608,262.375,B57 B59 B63 B66,C
|
67 |
+
957,2,"Corey, Mrs. Percy C (Mary Phyllis Elizabeth Miller)",female,,0,0,F.C.C. 13534,21,,S
|
68 |
+
958,3,"Burns, Miss. Mary Delia",female,18,0,0,330963,7.8792,,Q
|
69 |
+
959,1,"Moore, Mr. Clarence Bloomfield",male,47,0,0,113796,42.4,,S
|
70 |
+
960,1,"Tucker, Mr. Gilbert Milligan Jr",male,31,0,0,2543,28.5375,C53,C
|
71 |
+
961,1,"Fortune, Mrs. Mark (Mary McDougald)",female,60,1,4,19950,263,C23 C25 C27,S
|
72 |
+
962,3,"Mulvihill, Miss. Bertha E",female,24,0,0,382653,7.75,,Q
|
73 |
+
963,3,"Minkoff, Mr. Lazar",male,21,0,0,349211,7.8958,,S
|
74 |
+
964,3,"Nieminen, Miss. Manta Josefina",female,29,0,0,3101297,7.925,,S
|
75 |
+
965,1,"Ovies y Rodriguez, Mr. Servando",male,28.5,0,0,PC 17562,27.7208,D43,C
|
76 |
+
966,1,"Geiger, Miss. Amalie",female,35,0,0,113503,211.5,C130,C
|
77 |
+
967,1,"Keeping, Mr. Edwin",male,32.5,0,0,113503,211.5,C132,C
|
78 |
+
968,3,"Miles, Mr. Frank",male,,0,0,359306,8.05,,S
|
79 |
+
969,1,"Cornell, Mrs. Robert Clifford (Malvina Helen Lamson)",female,55,2,0,11770,25.7,C101,S
|
80 |
+
970,2,"Aldworth, Mr. Charles Augustus",male,30,0,0,248744,13,,S
|
81 |
+
971,3,"Doyle, Miss. Elizabeth",female,24,0,0,368702,7.75,,Q
|
82 |
+
972,3,"Boulos, Master. Akar",male,6,1,1,2678,15.2458,,C
|
83 |
+
973,1,"Straus, Mr. Isidor",male,67,1,0,PC 17483,221.7792,C55 C57,S
|
84 |
+
974,1,"Case, Mr. Howard Brown",male,49,0,0,19924,26,,S
|
85 |
+
975,3,"Demetri, Mr. Marinko",male,,0,0,349238,7.8958,,S
|
86 |
+
976,2,"Lamb, Mr. John Joseph",male,,0,0,240261,10.7083,,Q
|
87 |
+
977,3,"Khalil, Mr. Betros",male,,1,0,2660,14.4542,,C
|
88 |
+
978,3,"Barry, Miss. Julia",female,27,0,0,330844,7.8792,,Q
|
89 |
+
979,3,"Badman, Miss. Emily Louisa",female,18,0,0,A/4 31416,8.05,,S
|
90 |
+
980,3,"O'Donoghue, Ms. Bridget",female,,0,0,364856,7.75,,Q
|
91 |
+
981,2,"Wells, Master. Ralph Lester",male,2,1,1,29103,23,,S
|
92 |
+
982,3,"Dyker, Mrs. Adolf Fredrik (Anna Elisabeth Judith Andersson)",female,22,1,0,347072,13.9,,S
|
93 |
+
983,3,"Pedersen, Mr. Olaf",male,,0,0,345498,7.775,,S
|
94 |
+
984,1,"Davidson, Mrs. Thornton (Orian Hays)",female,27,1,2,F.C. 12750,52,B71,S
|
95 |
+
985,3,"Guest, Mr. Robert",male,,0,0,376563,8.05,,S
|
96 |
+
986,1,"Birnbaum, Mr. Jakob",male,25,0,0,13905,26,,C
|
97 |
+
987,3,"Tenglin, Mr. Gunnar Isidor",male,25,0,0,350033,7.7958,,S
|
98 |
+
988,1,"Cavendish, Mrs. Tyrell William (Julia Florence Siegel)",female,76,1,0,19877,78.85,C46,S
|
99 |
+
989,3,"Makinen, Mr. Kalle Edvard",male,29,0,0,STON/O 2. 3101268,7.925,,S
|
100 |
+
990,3,"Braf, Miss. Elin Ester Maria",female,20,0,0,347471,7.8542,,S
|
101 |
+
991,3,"Nancarrow, Mr. William Henry",male,33,0,0,A./5. 3338,8.05,,S
|
102 |
+
992,1,"Stengel, Mrs. Charles Emil Henry (Annie May Morris)",female,43,1,0,11778,55.4417,C116,C
|
103 |
+
993,2,"Weisz, Mr. Leopold",male,27,1,0,228414,26,,S
|
104 |
+
994,3,"Foley, Mr. William",male,,0,0,365235,7.75,,Q
|
105 |
+
995,3,"Johansson Palmquist, Mr. Oskar Leander",male,26,0,0,347070,7.775,,S
|
106 |
+
996,3,"Thomas, Mrs. Alexander (Thamine Thelma"")""",female,16,1,1,2625,8.5167,,C
|
107 |
+
997,3,"Holthen, Mr. Johan Martin",male,28,0,0,C 4001,22.525,,S
|
108 |
+
998,3,"Buckley, Mr. Daniel",male,21,0,0,330920,7.8208,,Q
|
109 |
+
999,3,"Ryan, Mr. Edward",male,,0,0,383162,7.75,,Q
|
110 |
+
1000,3,"Willer, Mr. Aaron (Abi Weller"")""",male,,0,0,3410,8.7125,,S
|
111 |
+
1001,2,"Swane, Mr. George",male,18.5,0,0,248734,13,F,S
|
112 |
+
1002,2,"Stanton, Mr. Samuel Ward",male,41,0,0,237734,15.0458,,C
|
113 |
+
1003,3,"Shine, Miss. Ellen Natalia",female,,0,0,330968,7.7792,,Q
|
114 |
+
1004,1,"Evans, Miss. Edith Corse",female,36,0,0,PC 17531,31.6792,A29,C
|
115 |
+
1005,3,"Buckley, Miss. Katherine",female,18.5,0,0,329944,7.2833,,Q
|
116 |
+
1006,1,"Straus, Mrs. Isidor (Rosalie Ida Blun)",female,63,1,0,PC 17483,221.7792,C55 C57,S
|
117 |
+
1007,3,"Chronopoulos, Mr. Demetrios",male,18,1,0,2680,14.4542,,C
|
118 |
+
1008,3,"Thomas, Mr. John",male,,0,0,2681,6.4375,,C
|
119 |
+
1009,3,"Sandstrom, Miss. Beatrice Irene",female,1,1,1,PP 9549,16.7,G6,S
|
120 |
+
1010,1,"Beattie, Mr. Thomson",male,36,0,0,13050,75.2417,C6,C
|
121 |
+
1011,2,"Chapman, Mrs. John Henry (Sara Elizabeth Lawry)",female,29,1,0,SC/AH 29037,26,,S
|
122 |
+
1012,2,"Watt, Miss. Bertha J",female,12,0,0,C.A. 33595,15.75,,S
|
123 |
+
1013,3,"Kiernan, Mr. John",male,,1,0,367227,7.75,,Q
|
124 |
+
1014,1,"Schabert, Mrs. Paul (Emma Mock)",female,35,1,0,13236,57.75,C28,C
|
125 |
+
1015,3,"Carver, Mr. Alfred John",male,28,0,0,392095,7.25,,S
|
126 |
+
1016,3,"Kennedy, Mr. John",male,,0,0,368783,7.75,,Q
|
127 |
+
1017,3,"Cribb, Miss. Laura Alice",female,17,0,1,371362,16.1,,S
|
128 |
+
1018,3,"Brobeck, Mr. Karl Rudolf",male,22,0,0,350045,7.7958,,S
|
129 |
+
1019,3,"McCoy, Miss. Alicia",female,,2,0,367226,23.25,,Q
|
130 |
+
1020,2,"Bowenur, Mr. Solomon",male,42,0,0,211535,13,,S
|
131 |
+
1021,3,"Petersen, Mr. Marius",male,24,0,0,342441,8.05,,S
|
132 |
+
1022,3,"Spinner, Mr. Henry John",male,32,0,0,STON/OQ. 369943,8.05,,S
|
133 |
+
1023,1,"Gracie, Col. Archibald IV",male,53,0,0,113780,28.5,C51,C
|
134 |
+
1024,3,"Lefebre, Mrs. Frank (Frances)",female,,0,4,4133,25.4667,,S
|
135 |
+
1025,3,"Thomas, Mr. Charles P",male,,1,0,2621,6.4375,,C
|
136 |
+
1026,3,"Dintcheff, Mr. Valtcho",male,43,0,0,349226,7.8958,,S
|
137 |
+
1027,3,"Carlsson, Mr. Carl Robert",male,24,0,0,350409,7.8542,,S
|
138 |
+
1028,3,"Zakarian, Mr. Mapriededer",male,26.5,0,0,2656,7.225,,C
|
139 |
+
1029,2,"Schmidt, Mr. August",male,26,0,0,248659,13,,S
|
140 |
+
1030,3,"Drapkin, Miss. Jennie",female,23,0,0,SOTON/OQ 392083,8.05,,S
|
141 |
+
1031,3,"Goodwin, Mr. Charles Frederick",male,40,1,6,CA 2144,46.9,,S
|
142 |
+
1032,3,"Goodwin, Miss. Jessie Allis",female,10,5,2,CA 2144,46.9,,S
|
143 |
+
1033,1,"Daniels, Miss. Sarah",female,33,0,0,113781,151.55,,S
|
144 |
+
1034,1,"Ryerson, Mr. Arthur Larned",male,61,1,3,PC 17608,262.375,B57 B59 B63 B66,C
|
145 |
+
1035,2,"Beauchamp, Mr. Henry James",male,28,0,0,244358,26,,S
|
146 |
+
1036,1,"Lindeberg-Lind, Mr. Erik Gustaf (Mr Edward Lingrey"")""",male,42,0,0,17475,26.55,,S
|
147 |
+
1037,3,"Vander Planke, Mr. Julius",male,31,3,0,345763,18,,S
|
148 |
+
1038,1,"Hilliard, Mr. Herbert Henry",male,,0,0,17463,51.8625,E46,S
|
149 |
+
1039,3,"Davies, Mr. Evan",male,22,0,0,SC/A4 23568,8.05,,S
|
150 |
+
1040,1,"Crafton, Mr. John Bertram",male,,0,0,113791,26.55,,S
|
151 |
+
1041,2,"Lahtinen, Rev. William",male,30,1,1,250651,26,,S
|
152 |
+
1042,1,"Earnshaw, Mrs. Boulton (Olive Potter)",female,23,0,1,11767,83.1583,C54,C
|
153 |
+
1043,3,"Matinoff, Mr. Nicola",male,,0,0,349255,7.8958,,C
|
154 |
+
1044,3,"Storey, Mr. Thomas",male,60.5,0,0,3701,,,S
|
155 |
+
1045,3,"Klasen, Mrs. (Hulda Kristina Eugenia Lofqvist)",female,36,0,2,350405,12.1833,,S
|
156 |
+
1046,3,"Asplund, Master. Filip Oscar",male,13,4,2,347077,31.3875,,S
|
157 |
+
1047,3,"Duquemin, Mr. Joseph",male,24,0,0,S.O./P.P. 752,7.55,,S
|
158 |
+
1048,1,"Bird, Miss. Ellen",female,29,0,0,PC 17483,221.7792,C97,S
|
159 |
+
1049,3,"Lundin, Miss. Olga Elida",female,23,0,0,347469,7.8542,,S
|
160 |
+
1050,1,"Borebank, Mr. John James",male,42,0,0,110489,26.55,D22,S
|
161 |
+
1051,3,"Peacock, Mrs. Benjamin (Edith Nile)",female,26,0,2,SOTON/O.Q. 3101315,13.775,,S
|
162 |
+
1052,3,"Smyth, Miss. Julia",female,,0,0,335432,7.7333,,Q
|
163 |
+
1053,3,"Touma, Master. Georges Youssef",male,7,1,1,2650,15.2458,,C
|
164 |
+
1054,2,"Wright, Miss. Marion",female,26,0,0,220844,13.5,,S
|
165 |
+
1055,3,"Pearce, Mr. Ernest",male,,0,0,343271,7,,S
|
166 |
+
1056,2,"Peruschitz, Rev. Joseph Maria",male,41,0,0,237393,13,,S
|
167 |
+
1057,3,"Kink-Heilmann, Mrs. Anton (Luise Heilmann)",female,26,1,1,315153,22.025,,S
|
168 |
+
1058,1,"Brandeis, Mr. Emil",male,48,0,0,PC 17591,50.4958,B10,C
|
169 |
+
1059,3,"Ford, Mr. Edward Watson",male,18,2,2,W./C. 6608,34.375,,S
|
170 |
+
1060,1,"Cassebeer, Mrs. Henry Arthur Jr (Eleanor Genevieve Fosdick)",female,,0,0,17770,27.7208,,C
|
171 |
+
1061,3,"Hellstrom, Miss. Hilda Maria",female,22,0,0,7548,8.9625,,S
|
172 |
+
1062,3,"Lithman, Mr. Simon",male,,0,0,S.O./P.P. 251,7.55,,S
|
173 |
+
1063,3,"Zakarian, Mr. Ortin",male,27,0,0,2670,7.225,,C
|
174 |
+
1064,3,"Dyker, Mr. Adolf Fredrik",male,23,1,0,347072,13.9,,S
|
175 |
+
1065,3,"Torfa, Mr. Assad",male,,0,0,2673,7.2292,,C
|
176 |
+
1066,3,"Asplund, Mr. Carl Oscar Vilhelm Gustafsson",male,40,1,5,347077,31.3875,,S
|
177 |
+
1067,2,"Brown, Miss. Edith Eileen",female,15,0,2,29750,39,,S
|
178 |
+
1068,2,"Sincock, Miss. Maude",female,20,0,0,C.A. 33112,36.75,,S
|
179 |
+
1069,1,"Stengel, Mr. Charles Emil Henry",male,54,1,0,11778,55.4417,C116,C
|
180 |
+
1070,2,"Becker, Mrs. Allen Oliver (Nellie E Baumgardner)",female,36,0,3,230136,39,F4,S
|
181 |
+
1071,1,"Compton, Mrs. Alexander Taylor (Mary Eliza Ingersoll)",female,64,0,2,PC 17756,83.1583,E45,C
|
182 |
+
1072,2,"McCrie, Mr. James Matthew",male,30,0,0,233478,13,,S
|
183 |
+
1073,1,"Compton, Mr. Alexander Taylor Jr",male,37,1,1,PC 17756,83.1583,E52,C
|
184 |
+
1074,1,"Marvin, Mrs. Daniel Warner (Mary Graham Carmichael Farquarson)",female,18,1,0,113773,53.1,D30,S
|
185 |
+
1075,3,"Lane, Mr. Patrick",male,,0,0,7935,7.75,,Q
|
186 |
+
1076,1,"Douglas, Mrs. Frederick Charles (Mary Helene Baxter)",female,27,1,1,PC 17558,247.5208,B58 B60,C
|
187 |
+
1077,2,"Maybery, Mr. Frank Hubert",male,40,0,0,239059,16,,S
|
188 |
+
1078,2,"Phillips, Miss. Alice Frances Louisa",female,21,0,1,S.O./P.P. 2,21,,S
|
189 |
+
1079,3,"Davies, Mr. Joseph",male,17,2,0,A/4 48873,8.05,,S
|
190 |
+
1080,3,"Sage, Miss. Ada",female,,8,2,CA. 2343,69.55,,S
|
191 |
+
1081,2,"Veal, Mr. James",male,40,0,0,28221,13,,S
|
192 |
+
1082,2,"Angle, Mr. William A",male,34,1,0,226875,26,,S
|
193 |
+
1083,1,"Salomon, Mr. Abraham L",male,,0,0,111163,26,,S
|
194 |
+
1084,3,"van Billiard, Master. Walter John",male,11.5,1,1,A/5. 851,14.5,,S
|
195 |
+
1085,2,"Lingane, Mr. John",male,61,0,0,235509,12.35,,Q
|
196 |
+
1086,2,"Drew, Master. Marshall Brines",male,8,0,2,28220,32.5,,S
|
197 |
+
1087,3,"Karlsson, Mr. Julius Konrad Eugen",male,33,0,0,347465,7.8542,,S
|
198 |
+
1088,1,"Spedden, Master. Robert Douglas",male,6,0,2,16966,134.5,E34,C
|
199 |
+
1089,3,"Nilsson, Miss. Berta Olivia",female,18,0,0,347066,7.775,,S
|
200 |
+
1090,2,"Baimbrigge, Mr. Charles Robert",male,23,0,0,C.A. 31030,10.5,,S
|
201 |
+
1091,3,"Rasmussen, Mrs. (Lena Jacobsen Solvang)",female,,0,0,65305,8.1125,,S
|
202 |
+
1092,3,"Murphy, Miss. Nora",female,,0,0,36568,15.5,,Q
|
203 |
+
1093,3,"Danbom, Master. Gilbert Sigvard Emanuel",male,0.33,0,2,347080,14.4,,S
|
204 |
+
1094,1,"Astor, Col. John Jacob",male,47,1,0,PC 17757,227.525,C62 C64,C
|
205 |
+
1095,2,"Quick, Miss. Winifred Vera",female,8,1,1,26360,26,,S
|
206 |
+
1096,2,"Andrew, Mr. Frank Thomas",male,25,0,0,C.A. 34050,10.5,,S
|
207 |
+
1097,1,"Omont, Mr. Alfred Fernand",male,,0,0,F.C. 12998,25.7417,,C
|
208 |
+
1098,3,"McGowan, Miss. Katherine",female,35,0,0,9232,7.75,,Q
|
209 |
+
1099,2,"Collett, Mr. Sidney C Stuart",male,24,0,0,28034,10.5,,S
|
210 |
+
1100,1,"Rosenbaum, Miss. Edith Louise",female,33,0,0,PC 17613,27.7208,A11,C
|
211 |
+
1101,3,"Delalic, Mr. Redjo",male,25,0,0,349250,7.8958,,S
|
212 |
+
1102,3,"Andersen, Mr. Albert Karvin",male,32,0,0,C 4001,22.525,,S
|
213 |
+
1103,3,"Finoli, Mr. Luigi",male,,0,0,SOTON/O.Q. 3101308,7.05,,S
|
214 |
+
1104,2,"Deacon, Mr. Percy William",male,17,0,0,S.O.C. 14879,73.5,,S
|
215 |
+
1105,2,"Howard, Mrs. Benjamin (Ellen Truelove Arman)",female,60,1,0,24065,26,,S
|
216 |
+
1106,3,"Andersson, Miss. Ida Augusta Margareta",female,38,4,2,347091,7.775,,S
|
217 |
+
1107,1,"Head, Mr. Christopher",male,42,0,0,113038,42.5,B11,S
|
218 |
+
1108,3,"Mahon, Miss. Bridget Delia",female,,0,0,330924,7.8792,,Q
|
219 |
+
1109,1,"Wick, Mr. George Dennick",male,57,1,1,36928,164.8667,,S
|
220 |
+
1110,1,"Widener, Mrs. George Dunton (Eleanor Elkins)",female,50,1,1,113503,211.5,C80,C
|
221 |
+
1111,3,"Thomson, Mr. Alexander Morrison",male,,0,0,32302,8.05,,S
|
222 |
+
1112,2,"Duran y More, Miss. Florentina",female,30,1,0,SC/PARIS 2148,13.8583,,C
|
223 |
+
1113,3,"Reynolds, Mr. Harold J",male,21,0,0,342684,8.05,,S
|
224 |
+
1114,2,"Cook, Mrs. (Selena Rogers)",female,22,0,0,W./C. 14266,10.5,F33,S
|
225 |
+
1115,3,"Karlsson, Mr. Einar Gervasius",male,21,0,0,350053,7.7958,,S
|
226 |
+
1116,1,"Candee, Mrs. Edward (Helen Churchill Hungerford)",female,53,0,0,PC 17606,27.4458,,C
|
227 |
+
1117,3,"Moubarek, Mrs. George (Omine Amenia"" Alexander)""",female,,0,2,2661,15.2458,,C
|
228 |
+
1118,3,"Asplund, Mr. Johan Charles",male,23,0,0,350054,7.7958,,S
|
229 |
+
1119,3,"McNeill, Miss. Bridget",female,,0,0,370368,7.75,,Q
|
230 |
+
1120,3,"Everett, Mr. Thomas James",male,40.5,0,0,C.A. 6212,15.1,,S
|
231 |
+
1121,2,"Hocking, Mr. Samuel James Metcalfe",male,36,0,0,242963,13,,S
|
232 |
+
1122,2,"Sweet, Mr. George Frederick",male,14,0,0,220845,65,,S
|
233 |
+
1123,1,"Willard, Miss. Constance",female,21,0,0,113795,26.55,,S
|
234 |
+
1124,3,"Wiklund, Mr. Karl Johan",male,21,1,0,3101266,6.4958,,S
|
235 |
+
1125,3,"Linehan, Mr. Michael",male,,0,0,330971,7.8792,,Q
|
236 |
+
1126,1,"Cumings, Mr. John Bradley",male,39,1,0,PC 17599,71.2833,C85,C
|
237 |
+
1127,3,"Vendel, Mr. Olof Edvin",male,20,0,0,350416,7.8542,,S
|
238 |
+
1128,1,"Warren, Mr. Frank Manley",male,64,1,0,110813,75.25,D37,C
|
239 |
+
1129,3,"Baccos, Mr. Raffull",male,20,0,0,2679,7.225,,C
|
240 |
+
1130,2,"Hiltunen, Miss. Marta",female,18,1,1,250650,13,,S
|
241 |
+
1131,1,"Douglas, Mrs. Walter Donald (Mahala Dutton)",female,48,1,0,PC 17761,106.425,C86,C
|
242 |
+
1132,1,"Lindstrom, Mrs. Carl Johan (Sigrid Posse)",female,55,0,0,112377,27.7208,,C
|
243 |
+
1133,2,"Christy, Mrs. (Alice Frances)",female,45,0,2,237789,30,,S
|
244 |
+
1134,1,"Spedden, Mr. Frederic Oakley",male,45,1,1,16966,134.5,E34,C
|
245 |
+
1135,3,"Hyman, Mr. Abraham",male,,0,0,3470,7.8875,,S
|
246 |
+
1136,3,"Johnston, Master. William Arthur Willie""""",male,,1,2,W./C. 6607,23.45,,S
|
247 |
+
1137,1,"Kenyon, Mr. Frederick R",male,41,1,0,17464,51.8625,D21,S
|
248 |
+
1138,2,"Karnes, Mrs. J Frank (Claire Bennett)",female,22,0,0,F.C.C. 13534,21,,S
|
249 |
+
1139,2,"Drew, Mr. James Vivian",male,42,1,1,28220,32.5,,S
|
250 |
+
1140,2,"Hold, Mrs. Stephen (Annie Margaret Hill)",female,29,1,0,26707,26,,S
|
251 |
+
1141,3,"Khalil, Mrs. Betros (Zahie Maria"" Elias)""",female,,1,0,2660,14.4542,,C
|
252 |
+
1142,2,"West, Miss. Barbara J",female,0.92,1,2,C.A. 34651,27.75,,S
|
253 |
+
1143,3,"Abrahamsson, Mr. Abraham August Johannes",male,20,0,0,SOTON/O2 3101284,7.925,,S
|
254 |
+
1144,1,"Clark, Mr. Walter Miller",male,27,1,0,13508,136.7792,C89,C
|
255 |
+
1145,3,"Salander, Mr. Karl Johan",male,24,0,0,7266,9.325,,S
|
256 |
+
1146,3,"Wenzel, Mr. Linhart",male,32.5,0,0,345775,9.5,,S
|
257 |
+
1147,3,"MacKay, Mr. George William",male,,0,0,C.A. 42795,7.55,,S
|
258 |
+
1148,3,"Mahon, Mr. John",male,,0,0,AQ/4 3130,7.75,,Q
|
259 |
+
1149,3,"Niklasson, Mr. Samuel",male,28,0,0,363611,8.05,,S
|
260 |
+
1150,2,"Bentham, Miss. Lilian W",female,19,0,0,28404,13,,S
|
261 |
+
1151,3,"Midtsjo, Mr. Karl Albert",male,21,0,0,345501,7.775,,S
|
262 |
+
1152,3,"de Messemaeker, Mr. Guillaume Joseph",male,36.5,1,0,345572,17.4,,S
|
263 |
+
1153,3,"Nilsson, Mr. August Ferdinand",male,21,0,0,350410,7.8542,,S
|
264 |
+
1154,2,"Wells, Mrs. Arthur Henry (Addie"" Dart Trevaskis)""",female,29,0,2,29103,23,,S
|
265 |
+
1155,3,"Klasen, Miss. Gertrud Emilia",female,1,1,1,350405,12.1833,,S
|
266 |
+
1156,2,"Portaluppi, Mr. Emilio Ilario Giuseppe",male,30,0,0,C.A. 34644,12.7375,,C
|
267 |
+
1157,3,"Lyntakoff, Mr. Stanko",male,,0,0,349235,7.8958,,S
|
268 |
+
1158,1,"Chisholm, Mr. Roderick Robert Crispin",male,,0,0,112051,0,,S
|
269 |
+
1159,3,"Warren, Mr. Charles William",male,,0,0,C.A. 49867,7.55,,S
|
270 |
+
1160,3,"Howard, Miss. May Elizabeth",female,,0,0,A. 2. 39186,8.05,,S
|
271 |
+
1161,3,"Pokrnic, Mr. Mate",male,17,0,0,315095,8.6625,,S
|
272 |
+
1162,1,"McCaffry, Mr. Thomas Francis",male,46,0,0,13050,75.2417,C6,C
|
273 |
+
1163,3,"Fox, Mr. Patrick",male,,0,0,368573,7.75,,Q
|
274 |
+
1164,1,"Clark, Mrs. Walter Miller (Virginia McDowell)",female,26,1,0,13508,136.7792,C89,C
|
275 |
+
1165,3,"Lennon, Miss. Mary",female,,1,0,370371,15.5,,Q
|
276 |
+
1166,3,"Saade, Mr. Jean Nassr",male,,0,0,2676,7.225,,C
|
277 |
+
1167,2,"Bryhl, Miss. Dagmar Jenny Ingeborg ",female,20,1,0,236853,26,,S
|
278 |
+
1168,2,"Parker, Mr. Clifford Richard",male,28,0,0,SC 14888,10.5,,S
|
279 |
+
1169,2,"Faunthorpe, Mr. Harry",male,40,1,0,2926,26,,S
|
280 |
+
1170,2,"Ware, Mr. John James",male,30,1,0,CA 31352,21,,S
|
281 |
+
1171,2,"Oxenham, Mr. Percy Thomas",male,22,0,0,W./C. 14260,10.5,,S
|
282 |
+
1172,3,"Oreskovic, Miss. Jelka",female,23,0,0,315085,8.6625,,S
|
283 |
+
1173,3,"Peacock, Master. Alfred Edward",male,0.75,1,1,SOTON/O.Q. 3101315,13.775,,S
|
284 |
+
1174,3,"Fleming, Miss. Honora",female,,0,0,364859,7.75,,Q
|
285 |
+
1175,3,"Touma, Miss. Maria Youssef",female,9,1,1,2650,15.2458,,C
|
286 |
+
1176,3,"Rosblom, Miss. Salli Helena",female,2,1,1,370129,20.2125,,S
|
287 |
+
1177,3,"Dennis, Mr. William",male,36,0,0,A/5 21175,7.25,,S
|
288 |
+
1178,3,"Franklin, Mr. Charles (Charles Fardon)",male,,0,0,SOTON/O.Q. 3101314,7.25,,S
|
289 |
+
1179,1,"Snyder, Mr. John Pillsbury",male,24,1,0,21228,82.2667,B45,S
|
290 |
+
1180,3,"Mardirosian, Mr. Sarkis",male,,0,0,2655,7.2292,F E46,C
|
291 |
+
1181,3,"Ford, Mr. Arthur",male,,0,0,A/5 1478,8.05,,S
|
292 |
+
1182,1,"Rheims, Mr. George Alexander Lucien",male,,0,0,PC 17607,39.6,,S
|
293 |
+
1183,3,"Daly, Miss. Margaret Marcella Maggie""""",female,30,0,0,382650,6.95,,Q
|
294 |
+
1184,3,"Nasr, Mr. Mustafa",male,,0,0,2652,7.2292,,C
|
295 |
+
1185,1,"Dodge, Dr. Washington",male,53,1,1,33638,81.8583,A34,S
|
296 |
+
1186,3,"Wittevrongel, Mr. Camille",male,36,0,0,345771,9.5,,S
|
297 |
+
1187,3,"Angheloff, Mr. Minko",male,26,0,0,349202,7.8958,,S
|
298 |
+
1188,2,"Laroche, Miss. Louise",female,1,1,2,SC/Paris 2123,41.5792,,C
|
299 |
+
1189,3,"Samaan, Mr. Hanna",male,,2,0,2662,21.6792,,C
|
300 |
+
1190,1,"Loring, Mr. Joseph Holland",male,30,0,0,113801,45.5,,S
|
301 |
+
1191,3,"Johansson, Mr. Nils",male,29,0,0,347467,7.8542,,S
|
302 |
+
1192,3,"Olsson, Mr. Oscar Wilhelm",male,32,0,0,347079,7.775,,S
|
303 |
+
1193,2,"Malachard, Mr. Noel",male,,0,0,237735,15.0458,D,C
|
304 |
+
1194,2,"Phillips, Mr. Escott Robert",male,43,0,1,S.O./P.P. 2,21,,S
|
305 |
+
1195,3,"Pokrnic, Mr. Tome",male,24,0,0,315092,8.6625,,S
|
306 |
+
1196,3,"McCarthy, Miss. Catherine Katie""""",female,,0,0,383123,7.75,,Q
|
307 |
+
1197,1,"Crosby, Mrs. Edward Gifford (Catherine Elizabeth Halstead)",female,64,1,1,112901,26.55,B26,S
|
308 |
+
1198,1,"Allison, Mr. Hudson Joshua Creighton",male,30,1,2,113781,151.55,C22 C26,S
|
309 |
+
1199,3,"Aks, Master. Philip Frank",male,0.83,0,1,392091,9.35,,S
|
310 |
+
1200,1,"Hays, Mr. Charles Melville",male,55,1,1,12749,93.5,B69,S
|
311 |
+
1201,3,"Hansen, Mrs. Claus Peter (Jennie L Howard)",female,45,1,0,350026,14.1083,,S
|
312 |
+
1202,3,"Cacic, Mr. Jego Grga",male,18,0,0,315091,8.6625,,S
|
313 |
+
1203,3,"Vartanian, Mr. David",male,22,0,0,2658,7.225,,C
|
314 |
+
1204,3,"Sadowitz, Mr. Harry",male,,0,0,LP 1588,7.575,,S
|
315 |
+
1205,3,"Carr, Miss. Jeannie",female,37,0,0,368364,7.75,,Q
|
316 |
+
1206,1,"White, Mrs. John Stuart (Ella Holmes)",female,55,0,0,PC 17760,135.6333,C32,C
|
317 |
+
1207,3,"Hagardon, Miss. Kate",female,17,0,0,AQ/3. 30631,7.7333,,Q
|
318 |
+
1208,1,"Spencer, Mr. William Augustus",male,57,1,0,PC 17569,146.5208,B78,C
|
319 |
+
1209,2,"Rogers, Mr. Reginald Harry",male,19,0,0,28004,10.5,,S
|
320 |
+
1210,3,"Jonsson, Mr. Nils Hilding",male,27,0,0,350408,7.8542,,S
|
321 |
+
1211,2,"Jefferys, Mr. Ernest Wilfred",male,22,2,0,C.A. 31029,31.5,,S
|
322 |
+
1212,3,"Andersson, Mr. Johan Samuel",male,26,0,0,347075,7.775,,S
|
323 |
+
1213,3,"Krekorian, Mr. Neshan",male,25,0,0,2654,7.2292,F E57,C
|
324 |
+
1214,2,"Nesson, Mr. Israel",male,26,0,0,244368,13,F2,S
|
325 |
+
1215,1,"Rowe, Mr. Alfred G",male,33,0,0,113790,26.55,,S
|
326 |
+
1216,1,"Kreuchen, Miss. Emilie",female,39,0,0,24160,211.3375,,S
|
327 |
+
1217,3,"Assam, Mr. Ali",male,23,0,0,SOTON/O.Q. 3101309,7.05,,S
|
328 |
+
1218,2,"Becker, Miss. Ruth Elizabeth",female,12,2,1,230136,39,F4,S
|
329 |
+
1219,1,"Rosenshine, Mr. George (Mr George Thorne"")""",male,46,0,0,PC 17585,79.2,,C
|
330 |
+
1220,2,"Clarke, Mr. Charles Valentine",male,29,1,0,2003,26,,S
|
331 |
+
1221,2,"Enander, Mr. Ingvar",male,21,0,0,236854,13,,S
|
332 |
+
1222,2,"Davies, Mrs. John Morgan (Elizabeth Agnes Mary White) ",female,48,0,2,C.A. 33112,36.75,,S
|
333 |
+
1223,1,"Dulles, Mr. William Crothers",male,39,0,0,PC 17580,29.7,A18,C
|
334 |
+
1224,3,"Thomas, Mr. Tannous",male,,0,0,2684,7.225,,C
|
335 |
+
1225,3,"Nakid, Mrs. Said (Waika Mary"" Mowad)""",female,19,1,1,2653,15.7417,,C
|
336 |
+
1226,3,"Cor, Mr. Ivan",male,27,0,0,349229,7.8958,,S
|
337 |
+
1227,1,"Maguire, Mr. John Edward",male,30,0,0,110469,26,C106,S
|
338 |
+
1228,2,"de Brito, Mr. Jose Joaquim",male,32,0,0,244360,13,,S
|
339 |
+
1229,3,"Elias, Mr. Joseph",male,39,0,2,2675,7.2292,,C
|
340 |
+
1230,2,"Denbury, Mr. Herbert",male,25,0,0,C.A. 31029,31.5,,S
|
341 |
+
1231,3,"Betros, Master. Seman",male,,0,0,2622,7.2292,,C
|
342 |
+
1232,2,"Fillbrook, Mr. Joseph Charles",male,18,0,0,C.A. 15185,10.5,,S
|
343 |
+
1233,3,"Lundstrom, Mr. Thure Edvin",male,32,0,0,350403,7.5792,,S
|
344 |
+
1234,3,"Sage, Mr. John George",male,,1,9,CA. 2343,69.55,,S
|
345 |
+
1235,1,"Cardeza, Mrs. James Warburton Martinez (Charlotte Wardle Drake)",female,58,0,1,PC 17755,512.3292,B51 B53 B55,C
|
346 |
+
1236,3,"van Billiard, Master. James William",male,,1,1,A/5. 851,14.5,,S
|
347 |
+
1237,3,"Abelseth, Miss. Karen Marie",female,16,0,0,348125,7.65,,S
|
348 |
+
1238,2,"Botsford, Mr. William Hull",male,26,0,0,237670,13,,S
|
349 |
+
1239,3,"Whabee, Mrs. George Joseph (Shawneene Abi-Saab)",female,38,0,0,2688,7.2292,,C
|
350 |
+
1240,2,"Giles, Mr. Ralph",male,24,0,0,248726,13.5,,S
|
351 |
+
1241,2,"Walcroft, Miss. Nellie",female,31,0,0,F.C.C. 13528,21,,S
|
352 |
+
1242,1,"Greenfield, Mrs. Leo David (Blanche Strouse)",female,45,0,1,PC 17759,63.3583,D10 D12,C
|
353 |
+
1243,2,"Stokes, Mr. Philip Joseph",male,25,0,0,F.C.C. 13540,10.5,,S
|
354 |
+
1244,2,"Dibden, Mr. William",male,18,0,0,S.O.C. 14879,73.5,,S
|
355 |
+
1245,2,"Herman, Mr. Samuel",male,49,1,2,220845,65,,S
|
356 |
+
1246,3,"Dean, Miss. Elizabeth Gladys Millvina""""",female,0.17,1,2,C.A. 2315,20.575,,S
|
357 |
+
1247,1,"Julian, Mr. Henry Forbes",male,50,0,0,113044,26,E60,S
|
358 |
+
1248,1,"Brown, Mrs. John Murray (Caroline Lane Lamson)",female,59,2,0,11769,51.4792,C101,S
|
359 |
+
1249,3,"Lockyer, Mr. Edward",male,,0,0,1222,7.8792,,S
|
360 |
+
1250,3,"O'Keefe, Mr. Patrick",male,,0,0,368402,7.75,,Q
|
361 |
+
1251,3,"Lindell, Mrs. Edvard Bengtsson (Elin Gerda Persson)",female,30,1,0,349910,15.55,,S
|
362 |
+
1252,3,"Sage, Master. William Henry",male,14.5,8,2,CA. 2343,69.55,,S
|
363 |
+
1253,2,"Mallet, Mrs. Albert (Antoinette Magnin)",female,24,1,1,S.C./PARIS 2079,37.0042,,C
|
364 |
+
1254,2,"Ware, Mrs. John James (Florence Louise Long)",female,31,0,0,CA 31352,21,,S
|
365 |
+
1255,3,"Strilic, Mr. Ivan",male,27,0,0,315083,8.6625,,S
|
366 |
+
1256,1,"Harder, Mrs. George Achilles (Dorothy Annan)",female,25,1,0,11765,55.4417,E50,C
|
367 |
+
1257,3,"Sage, Mrs. John (Annie Bullen)",female,,1,9,CA. 2343,69.55,,S
|
368 |
+
1258,3,"Caram, Mr. Joseph",male,,1,0,2689,14.4583,,C
|
369 |
+
1259,3,"Riihivouri, Miss. Susanna Juhantytar Sanni""""",female,22,0,0,3101295,39.6875,,S
|
370 |
+
1260,1,"Gibson, Mrs. Leonard (Pauline C Boeson)",female,45,0,1,112378,59.4,,C
|
371 |
+
1261,2,"Pallas y Castello, Mr. Emilio",male,29,0,0,SC/PARIS 2147,13.8583,,C
|
372 |
+
1262,2,"Giles, Mr. Edgar",male,21,1,0,28133,11.5,,S
|
373 |
+
1263,1,"Wilson, Miss. Helen Alice",female,31,0,0,16966,134.5,E39 E41,C
|
374 |
+
1264,1,"Ismay, Mr. Joseph Bruce",male,49,0,0,112058,0,B52 B54 B56,S
|
375 |
+
1265,2,"Harbeck, Mr. William H",male,44,0,0,248746,13,,S
|
376 |
+
1266,1,"Dodge, Mrs. Washington (Ruth Vidaver)",female,54,1,1,33638,81.8583,A34,S
|
377 |
+
1267,1,"Bowen, Miss. Grace Scott",female,45,0,0,PC 17608,262.375,,C
|
378 |
+
1268,3,"Kink, Miss. Maria",female,22,2,0,315152,8.6625,,S
|
379 |
+
1269,2,"Cotterill, Mr. Henry Harry""""",male,21,0,0,29107,11.5,,S
|
380 |
+
1270,1,"Hipkins, Mr. William Edward",male,55,0,0,680,50,C39,S
|
381 |
+
1271,3,"Asplund, Master. Carl Edgar",male,5,4,2,347077,31.3875,,S
|
382 |
+
1272,3,"O'Connor, Mr. Patrick",male,,0,0,366713,7.75,,Q
|
383 |
+
1273,3,"Foley, Mr. Joseph",male,26,0,0,330910,7.8792,,Q
|
384 |
+
1274,3,"Risien, Mrs. Samuel (Emma)",female,,0,0,364498,14.5,,S
|
385 |
+
1275,3,"McNamee, Mrs. Neal (Eileen O'Leary)",female,19,1,0,376566,16.1,,S
|
386 |
+
1276,2,"Wheeler, Mr. Edwin Frederick""""",male,,0,0,SC/PARIS 2159,12.875,,S
|
387 |
+
1277,2,"Herman, Miss. Kate",female,24,1,2,220845,65,,S
|
388 |
+
1278,3,"Aronsson, Mr. Ernst Axel Algot",male,24,0,0,349911,7.775,,S
|
389 |
+
1279,2,"Ashby, Mr. John",male,57,0,0,244346,13,,S
|
390 |
+
1280,3,"Canavan, Mr. Patrick",male,21,0,0,364858,7.75,,Q
|
391 |
+
1281,3,"Palsson, Master. Paul Folke",male,6,3,1,349909,21.075,,S
|
392 |
+
1282,1,"Payne, Mr. Vivian Ponsonby",male,23,0,0,12749,93.5,B24,S
|
393 |
+
1283,1,"Lines, Mrs. Ernest H (Elizabeth Lindsey James)",female,51,0,1,PC 17592,39.4,D28,S
|
394 |
+
1284,3,"Abbott, Master. Eugene Joseph",male,13,0,2,C.A. 2673,20.25,,S
|
395 |
+
1285,2,"Gilbert, Mr. William",male,47,0,0,C.A. 30769,10.5,,S
|
396 |
+
1286,3,"Kink-Heilmann, Mr. Anton",male,29,3,1,315153,22.025,,S
|
397 |
+
1287,1,"Smith, Mrs. Lucien Philip (Mary Eloise Hughes)",female,18,1,0,13695,60,C31,S
|
398 |
+
1288,3,"Colbert, Mr. Patrick",male,24,0,0,371109,7.25,,Q
|
399 |
+
1289,1,"Frolicher-Stehli, Mrs. Maxmillian (Margaretha Emerentia Stehli)",female,48,1,1,13567,79.2,B41,C
|
400 |
+
1290,3,"Larsson-Rondberg, Mr. Edvard A",male,22,0,0,347065,7.775,,S
|
401 |
+
1291,3,"Conlon, Mr. Thomas Henry",male,31,0,0,21332,7.7333,,Q
|
402 |
+
1292,1,"Bonnell, Miss. Caroline",female,30,0,0,36928,164.8667,C7,S
|
403 |
+
1293,2,"Gale, Mr. Harry",male,38,1,0,28664,21,,S
|
404 |
+
1294,1,"Gibson, Miss. Dorothy Winifred",female,22,0,1,112378,59.4,,C
|
405 |
+
1295,1,"Carrau, Mr. Jose Pedro",male,17,0,0,113059,47.1,,S
|
406 |
+
1296,1,"Frauenthal, Mr. Isaac Gerald",male,43,1,0,17765,27.7208,D40,C
|
407 |
+
1297,2,"Nourney, Mr. Alfred (Baron von Drachstedt"")""",male,20,0,0,SC/PARIS 2166,13.8625,D38,C
|
408 |
+
1298,2,"Ware, Mr. William Jeffery",male,23,1,0,28666,10.5,,S
|
409 |
+
1299,1,"Widener, Mr. George Dunton",male,50,1,1,113503,211.5,C80,C
|
410 |
+
1300,3,"Riordan, Miss. Johanna Hannah""""",female,,0,0,334915,7.7208,,Q
|
411 |
+
1301,3,"Peacock, Miss. Treasteall",female,3,1,1,SOTON/O.Q. 3101315,13.775,,S
|
412 |
+
1302,3,"Naughton, Miss. Hannah",female,,0,0,365237,7.75,,Q
|
413 |
+
1303,1,"Minahan, Mrs. William Edward (Lillian E Thorpe)",female,37,1,0,19928,90,C78,Q
|
414 |
+
1304,3,"Henriksson, Miss. Jenny Lovisa",female,28,0,0,347086,7.775,,S
|
415 |
+
1305,3,"Spector, Mr. Woolf",male,,0,0,A.5. 3236,8.05,,S
|
416 |
+
1306,1,"Oliva y Ocana, Dona. Fermina",female,39,0,0,PC 17758,108.9,C105,C
|
417 |
+
1307,3,"Saether, Mr. Simon Sivertsen",male,38.5,0,0,SOTON/O.Q. 3101262,7.25,,S
|
418 |
+
1308,3,"Ware, Mr. Frederick",male,,0,0,359309,8.05,,S
|
419 |
+
1309,3,"Peter, Master. Michael J",male,,1,1,2668,22.3583,,C
|
train.csv
ADDED
@@ -0,0 +1,892 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked
|
2 |
+
1,0,3,"Braund, Mr. Owen Harris",male,22,1,0,A/5 21171,7.25,,S
|
3 |
+
2,1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38,1,0,PC 17599,71.2833,C85,C
|
4 |
+
3,1,3,"Heikkinen, Miss. Laina",female,26,0,0,STON/O2. 3101282,7.925,,S
|
5 |
+
4,1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35,1,0,113803,53.1,C123,S
|
6 |
+
5,0,3,"Allen, Mr. William Henry",male,35,0,0,373450,8.05,,S
|
7 |
+
6,0,3,"Moran, Mr. James",male,,0,0,330877,8.4583,,Q
|
8 |
+
7,0,1,"McCarthy, Mr. Timothy J",male,54,0,0,17463,51.8625,E46,S
|
9 |
+
8,0,3,"Palsson, Master. Gosta Leonard",male,2,3,1,349909,21.075,,S
|
10 |
+
9,1,3,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27,0,2,347742,11.1333,,S
|
11 |
+
10,1,2,"Nasser, Mrs. Nicholas (Adele Achem)",female,14,1,0,237736,30.0708,,C
|
12 |
+
11,1,3,"Sandstrom, Miss. Marguerite Rut",female,4,1,1,PP 9549,16.7,G6,S
|
13 |
+
12,1,1,"Bonnell, Miss. Elizabeth",female,58,0,0,113783,26.55,C103,S
|
14 |
+
13,0,3,"Saundercock, Mr. William Henry",male,20,0,0,A/5. 2151,8.05,,S
|
15 |
+
14,0,3,"Andersson, Mr. Anders Johan",male,39,1,5,347082,31.275,,S
|
16 |
+
15,0,3,"Vestrom, Miss. Hulda Amanda Adolfina",female,14,0,0,350406,7.8542,,S
|
17 |
+
16,1,2,"Hewlett, Mrs. (Mary D Kingcome) ",female,55,0,0,248706,16,,S
|
18 |
+
17,0,3,"Rice, Master. Eugene",male,2,4,1,382652,29.125,,Q
|
19 |
+
18,1,2,"Williams, Mr. Charles Eugene",male,,0,0,244373,13,,S
|
20 |
+
19,0,3,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31,1,0,345763,18,,S
|
21 |
+
20,1,3,"Masselmani, Mrs. Fatima",female,,0,0,2649,7.225,,C
|
22 |
+
21,0,2,"Fynney, Mr. Joseph J",male,35,0,0,239865,26,,S
|
23 |
+
22,1,2,"Beesley, Mr. Lawrence",male,34,0,0,248698,13,D56,S
|
24 |
+
23,1,3,"McGowan, Miss. Anna ""Annie""",female,15,0,0,330923,8.0292,,Q
|
25 |
+
24,1,1,"Sloper, Mr. William Thompson",male,28,0,0,113788,35.5,A6,S
|
26 |
+
25,0,3,"Palsson, Miss. Torborg Danira",female,8,3,1,349909,21.075,,S
|
27 |
+
26,1,3,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38,1,5,347077,31.3875,,S
|
28 |
+
27,0,3,"Emir, Mr. Farred Chehab",male,,0,0,2631,7.225,,C
|
29 |
+
28,0,1,"Fortune, Mr. Charles Alexander",male,19,3,2,19950,263,C23 C25 C27,S
|
30 |
+
29,1,3,"O'Dwyer, Miss. Ellen ""Nellie""",female,,0,0,330959,7.8792,,Q
|
31 |
+
30,0,3,"Todoroff, Mr. Lalio",male,,0,0,349216,7.8958,,S
|
32 |
+
31,0,1,"Uruchurtu, Don. Manuel E",male,40,0,0,PC 17601,27.7208,,C
|
33 |
+
32,1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,,1,0,PC 17569,146.5208,B78,C
|
34 |
+
33,1,3,"Glynn, Miss. Mary Agatha",female,,0,0,335677,7.75,,Q
|
35 |
+
34,0,2,"Wheadon, Mr. Edward H",male,66,0,0,C.A. 24579,10.5,,S
|
36 |
+
35,0,1,"Meyer, Mr. Edgar Joseph",male,28,1,0,PC 17604,82.1708,,C
|
37 |
+
36,0,1,"Holverson, Mr. Alexander Oskar",male,42,1,0,113789,52,,S
|
38 |
+
37,1,3,"Mamee, Mr. Hanna",male,,0,0,2677,7.2292,,C
|
39 |
+
38,0,3,"Cann, Mr. Ernest Charles",male,21,0,0,A./5. 2152,8.05,,S
|
40 |
+
39,0,3,"Vander Planke, Miss. Augusta Maria",female,18,2,0,345764,18,,S
|
41 |
+
40,1,3,"Nicola-Yarred, Miss. Jamila",female,14,1,0,2651,11.2417,,C
|
42 |
+
41,0,3,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40,1,0,7546,9.475,,S
|
43 |
+
42,0,2,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27,1,0,11668,21,,S
|
44 |
+
43,0,3,"Kraeff, Mr. Theodor",male,,0,0,349253,7.8958,,C
|
45 |
+
44,1,2,"Laroche, Miss. Simonne Marie Anne Andree",female,3,1,2,SC/Paris 2123,41.5792,,C
|
46 |
+
45,1,3,"Devaney, Miss. Margaret Delia",female,19,0,0,330958,7.8792,,Q
|
47 |
+
46,0,3,"Rogers, Mr. William John",male,,0,0,S.C./A.4. 23567,8.05,,S
|
48 |
+
47,0,3,"Lennon, Mr. Denis",male,,1,0,370371,15.5,,Q
|
49 |
+
48,1,3,"O'Driscoll, Miss. Bridget",female,,0,0,14311,7.75,,Q
|
50 |
+
49,0,3,"Samaan, Mr. Youssef",male,,2,0,2662,21.6792,,C
|
51 |
+
50,0,3,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18,1,0,349237,17.8,,S
|
52 |
+
51,0,3,"Panula, Master. Juha Niilo",male,7,4,1,3101295,39.6875,,S
|
53 |
+
52,0,3,"Nosworthy, Mr. Richard Cater",male,21,0,0,A/4. 39886,7.8,,S
|
54 |
+
53,1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49,1,0,PC 17572,76.7292,D33,C
|
55 |
+
54,1,2,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29,1,0,2926,26,,S
|
56 |
+
55,0,1,"Ostby, Mr. Engelhart Cornelius",male,65,0,1,113509,61.9792,B30,C
|
57 |
+
56,1,1,"Woolner, Mr. Hugh",male,,0,0,19947,35.5,C52,S
|
58 |
+
57,1,2,"Rugg, Miss. Emily",female,21,0,0,C.A. 31026,10.5,,S
|
59 |
+
58,0,3,"Novel, Mr. Mansouer",male,28.5,0,0,2697,7.2292,,C
|
60 |
+
59,1,2,"West, Miss. Constance Mirium",female,5,1,2,C.A. 34651,27.75,,S
|
61 |
+
60,0,3,"Goodwin, Master. William Frederick",male,11,5,2,CA 2144,46.9,,S
|
62 |
+
61,0,3,"Sirayanian, Mr. Orsen",male,22,0,0,2669,7.2292,,C
|
63 |
+
62,1,1,"Icard, Miss. Amelie",female,38,0,0,113572,80,B28,
|
64 |
+
63,0,1,"Harris, Mr. Henry Birkhardt",male,45,1,0,36973,83.475,C83,S
|
65 |
+
64,0,3,"Skoog, Master. Harald",male,4,3,2,347088,27.9,,S
|
66 |
+
65,0,1,"Stewart, Mr. Albert A",male,,0,0,PC 17605,27.7208,,C
|
67 |
+
66,1,3,"Moubarek, Master. Gerios",male,,1,1,2661,15.2458,,C
|
68 |
+
67,1,2,"Nye, Mrs. (Elizabeth Ramell)",female,29,0,0,C.A. 29395,10.5,F33,S
|
69 |
+
68,0,3,"Crease, Mr. Ernest James",male,19,0,0,S.P. 3464,8.1583,,S
|
70 |
+
69,1,3,"Andersson, Miss. Erna Alexandra",female,17,4,2,3101281,7.925,,S
|
71 |
+
70,0,3,"Kink, Mr. Vincenz",male,26,2,0,315151,8.6625,,S
|
72 |
+
71,0,2,"Jenkin, Mr. Stephen Curnow",male,32,0,0,C.A. 33111,10.5,,S
|
73 |
+
72,0,3,"Goodwin, Miss. Lillian Amy",female,16,5,2,CA 2144,46.9,,S
|
74 |
+
73,0,2,"Hood, Mr. Ambrose Jr",male,21,0,0,S.O.C. 14879,73.5,,S
|
75 |
+
74,0,3,"Chronopoulos, Mr. Apostolos",male,26,1,0,2680,14.4542,,C
|
76 |
+
75,1,3,"Bing, Mr. Lee",male,32,0,0,1601,56.4958,,S
|
77 |
+
76,0,3,"Moen, Mr. Sigurd Hansen",male,25,0,0,348123,7.65,F G73,S
|
78 |
+
77,0,3,"Staneff, Mr. Ivan",male,,0,0,349208,7.8958,,S
|
79 |
+
78,0,3,"Moutal, Mr. Rahamin Haim",male,,0,0,374746,8.05,,S
|
80 |
+
79,1,2,"Caldwell, Master. Alden Gates",male,0.83,0,2,248738,29,,S
|
81 |
+
80,1,3,"Dowdell, Miss. Elizabeth",female,30,0,0,364516,12.475,,S
|
82 |
+
81,0,3,"Waelens, Mr. Achille",male,22,0,0,345767,9,,S
|
83 |
+
82,1,3,"Sheerlinck, Mr. Jan Baptist",male,29,0,0,345779,9.5,,S
|
84 |
+
83,1,3,"McDermott, Miss. Brigdet Delia",female,,0,0,330932,7.7875,,Q
|
85 |
+
84,0,1,"Carrau, Mr. Francisco M",male,28,0,0,113059,47.1,,S
|
86 |
+
85,1,2,"Ilett, Miss. Bertha",female,17,0,0,SO/C 14885,10.5,,S
|
87 |
+
86,1,3,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33,3,0,3101278,15.85,,S
|
88 |
+
87,0,3,"Ford, Mr. William Neal",male,16,1,3,W./C. 6608,34.375,,S
|
89 |
+
88,0,3,"Slocovski, Mr. Selman Francis",male,,0,0,SOTON/OQ 392086,8.05,,S
|
90 |
+
89,1,1,"Fortune, Miss. Mabel Helen",female,23,3,2,19950,263,C23 C25 C27,S
|
91 |
+
90,0,3,"Celotti, Mr. Francesco",male,24,0,0,343275,8.05,,S
|
92 |
+
91,0,3,"Christmann, Mr. Emil",male,29,0,0,343276,8.05,,S
|
93 |
+
92,0,3,"Andreasson, Mr. Paul Edvin",male,20,0,0,347466,7.8542,,S
|
94 |
+
93,0,1,"Chaffee, Mr. Herbert Fuller",male,46,1,0,W.E.P. 5734,61.175,E31,S
|
95 |
+
94,0,3,"Dean, Mr. Bertram Frank",male,26,1,2,C.A. 2315,20.575,,S
|
96 |
+
95,0,3,"Coxon, Mr. Daniel",male,59,0,0,364500,7.25,,S
|
97 |
+
96,0,3,"Shorney, Mr. Charles Joseph",male,,0,0,374910,8.05,,S
|
98 |
+
97,0,1,"Goldschmidt, Mr. George B",male,71,0,0,PC 17754,34.6542,A5,C
|
99 |
+
98,1,1,"Greenfield, Mr. William Bertram",male,23,0,1,PC 17759,63.3583,D10 D12,C
|
100 |
+
99,1,2,"Doling, Mrs. John T (Ada Julia Bone)",female,34,0,1,231919,23,,S
|
101 |
+
100,0,2,"Kantor, Mr. Sinai",male,34,1,0,244367,26,,S
|
102 |
+
101,0,3,"Petranec, Miss. Matilda",female,28,0,0,349245,7.8958,,S
|
103 |
+
102,0,3,"Petroff, Mr. Pastcho (""Pentcho"")",male,,0,0,349215,7.8958,,S
|
104 |
+
103,0,1,"White, Mr. Richard Frasar",male,21,0,1,35281,77.2875,D26,S
|
105 |
+
104,0,3,"Johansson, Mr. Gustaf Joel",male,33,0,0,7540,8.6542,,S
|
106 |
+
105,0,3,"Gustafsson, Mr. Anders Vilhelm",male,37,2,0,3101276,7.925,,S
|
107 |
+
106,0,3,"Mionoff, Mr. Stoytcho",male,28,0,0,349207,7.8958,,S
|
108 |
+
107,1,3,"Salkjelsvik, Miss. Anna Kristine",female,21,0,0,343120,7.65,,S
|
109 |
+
108,1,3,"Moss, Mr. Albert Johan",male,,0,0,312991,7.775,,S
|
110 |
+
109,0,3,"Rekic, Mr. Tido",male,38,0,0,349249,7.8958,,S
|
111 |
+
110,1,3,"Moran, Miss. Bertha",female,,1,0,371110,24.15,,Q
|
112 |
+
111,0,1,"Porter, Mr. Walter Chamberlain",male,47,0,0,110465,52,C110,S
|
113 |
+
112,0,3,"Zabour, Miss. Hileni",female,14.5,1,0,2665,14.4542,,C
|
114 |
+
113,0,3,"Barton, Mr. David John",male,22,0,0,324669,8.05,,S
|
115 |
+
114,0,3,"Jussila, Miss. Katriina",female,20,1,0,4136,9.825,,S
|
116 |
+
115,0,3,"Attalah, Miss. Malake",female,17,0,0,2627,14.4583,,C
|
117 |
+
116,0,3,"Pekoniemi, Mr. Edvard",male,21,0,0,STON/O 2. 3101294,7.925,,S
|
118 |
+
117,0,3,"Connors, Mr. Patrick",male,70.5,0,0,370369,7.75,,Q
|
119 |
+
118,0,2,"Turpin, Mr. William John Robert",male,29,1,0,11668,21,,S
|
120 |
+
119,0,1,"Baxter, Mr. Quigg Edmond",male,24,0,1,PC 17558,247.5208,B58 B60,C
|
121 |
+
120,0,3,"Andersson, Miss. Ellis Anna Maria",female,2,4,2,347082,31.275,,S
|
122 |
+
121,0,2,"Hickman, Mr. Stanley George",male,21,2,0,S.O.C. 14879,73.5,,S
|
123 |
+
122,0,3,"Moore, Mr. Leonard Charles",male,,0,0,A4. 54510,8.05,,S
|
124 |
+
123,0,2,"Nasser, Mr. Nicholas",male,32.5,1,0,237736,30.0708,,C
|
125 |
+
124,1,2,"Webber, Miss. Susan",female,32.5,0,0,27267,13,E101,S
|
126 |
+
125,0,1,"White, Mr. Percival Wayland",male,54,0,1,35281,77.2875,D26,S
|
127 |
+
126,1,3,"Nicola-Yarred, Master. Elias",male,12,1,0,2651,11.2417,,C
|
128 |
+
127,0,3,"McMahon, Mr. Martin",male,,0,0,370372,7.75,,Q
|
129 |
+
128,1,3,"Madsen, Mr. Fridtjof Arne",male,24,0,0,C 17369,7.1417,,S
|
130 |
+
129,1,3,"Peter, Miss. Anna",female,,1,1,2668,22.3583,F E69,C
|
131 |
+
130,0,3,"Ekstrom, Mr. Johan",male,45,0,0,347061,6.975,,S
|
132 |
+
131,0,3,"Drazenoic, Mr. Jozef",male,33,0,0,349241,7.8958,,C
|
133 |
+
132,0,3,"Coelho, Mr. Domingos Fernandeo",male,20,0,0,SOTON/O.Q. 3101307,7.05,,S
|
134 |
+
133,0,3,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47,1,0,A/5. 3337,14.5,,S
|
135 |
+
134,1,2,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29,1,0,228414,26,,S
|
136 |
+
135,0,2,"Sobey, Mr. Samuel James Hayden",male,25,0,0,C.A. 29178,13,,S
|
137 |
+
136,0,2,"Richard, Mr. Emile",male,23,0,0,SC/PARIS 2133,15.0458,,C
|
138 |
+
137,1,1,"Newsom, Miss. Helen Monypeny",female,19,0,2,11752,26.2833,D47,S
|
139 |
+
138,0,1,"Futrelle, Mr. Jacques Heath",male,37,1,0,113803,53.1,C123,S
|
140 |
+
139,0,3,"Osen, Mr. Olaf Elon",male,16,0,0,7534,9.2167,,S
|
141 |
+
140,0,1,"Giglio, Mr. Victor",male,24,0,0,PC 17593,79.2,B86,C
|
142 |
+
141,0,3,"Boulos, Mrs. Joseph (Sultana)",female,,0,2,2678,15.2458,,C
|
143 |
+
142,1,3,"Nysten, Miss. Anna Sofia",female,22,0,0,347081,7.75,,S
|
144 |
+
143,1,3,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24,1,0,STON/O2. 3101279,15.85,,S
|
145 |
+
144,0,3,"Burke, Mr. Jeremiah",male,19,0,0,365222,6.75,,Q
|
146 |
+
145,0,2,"Andrew, Mr. Edgardo Samuel",male,18,0,0,231945,11.5,,S
|
147 |
+
146,0,2,"Nicholls, Mr. Joseph Charles",male,19,1,1,C.A. 33112,36.75,,S
|
148 |
+
147,1,3,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27,0,0,350043,7.7958,,S
|
149 |
+
148,0,3,"Ford, Miss. Robina Maggie ""Ruby""",female,9,2,2,W./C. 6608,34.375,,S
|
150 |
+
149,0,2,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36.5,0,2,230080,26,F2,S
|
151 |
+
150,0,2,"Byles, Rev. Thomas Roussel Davids",male,42,0,0,244310,13,,S
|
152 |
+
151,0,2,"Bateman, Rev. Robert James",male,51,0,0,S.O.P. 1166,12.525,,S
|
153 |
+
152,1,1,"Pears, Mrs. Thomas (Edith Wearne)",female,22,1,0,113776,66.6,C2,S
|
154 |
+
153,0,3,"Meo, Mr. Alfonzo",male,55.5,0,0,A.5. 11206,8.05,,S
|
155 |
+
154,0,3,"van Billiard, Mr. Austin Blyler",male,40.5,0,2,A/5. 851,14.5,,S
|
156 |
+
155,0,3,"Olsen, Mr. Ole Martin",male,,0,0,Fa 265302,7.3125,,S
|
157 |
+
156,0,1,"Williams, Mr. Charles Duane",male,51,0,1,PC 17597,61.3792,,C
|
158 |
+
157,1,3,"Gilnagh, Miss. Katherine ""Katie""",female,16,0,0,35851,7.7333,,Q
|
159 |
+
158,0,3,"Corn, Mr. Harry",male,30,0,0,SOTON/OQ 392090,8.05,,S
|
160 |
+
159,0,3,"Smiljanic, Mr. Mile",male,,0,0,315037,8.6625,,S
|
161 |
+
160,0,3,"Sage, Master. Thomas Henry",male,,8,2,CA. 2343,69.55,,S
|
162 |
+
161,0,3,"Cribb, Mr. John Hatfield",male,44,0,1,371362,16.1,,S
|
163 |
+
162,1,2,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40,0,0,C.A. 33595,15.75,,S
|
164 |
+
163,0,3,"Bengtsson, Mr. John Viktor",male,26,0,0,347068,7.775,,S
|
165 |
+
164,0,3,"Calic, Mr. Jovo",male,17,0,0,315093,8.6625,,S
|
166 |
+
165,0,3,"Panula, Master. Eino Viljami",male,1,4,1,3101295,39.6875,,S
|
167 |
+
166,1,3,"Goldsmith, Master. Frank John William ""Frankie""",male,9,0,2,363291,20.525,,S
|
168 |
+
167,1,1,"Chibnall, Mrs. (Edith Martha Bowerman)",female,,0,1,113505,55,E33,S
|
169 |
+
168,0,3,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45,1,4,347088,27.9,,S
|
170 |
+
169,0,1,"Baumann, Mr. John D",male,,0,0,PC 17318,25.925,,S
|
171 |
+
170,0,3,"Ling, Mr. Lee",male,28,0,0,1601,56.4958,,S
|
172 |
+
171,0,1,"Van der hoef, Mr. Wyckoff",male,61,0,0,111240,33.5,B19,S
|
173 |
+
172,0,3,"Rice, Master. Arthur",male,4,4,1,382652,29.125,,Q
|
174 |
+
173,1,3,"Johnson, Miss. Eleanor Ileen",female,1,1,1,347742,11.1333,,S
|
175 |
+
174,0,3,"Sivola, Mr. Antti Wilhelm",male,21,0,0,STON/O 2. 3101280,7.925,,S
|
176 |
+
175,0,1,"Smith, Mr. James Clinch",male,56,0,0,17764,30.6958,A7,C
|
177 |
+
176,0,3,"Klasen, Mr. Klas Albin",male,18,1,1,350404,7.8542,,S
|
178 |
+
177,0,3,"Lefebre, Master. Henry Forbes",male,,3,1,4133,25.4667,,S
|
179 |
+
178,0,1,"Isham, Miss. Ann Elizabeth",female,50,0,0,PC 17595,28.7125,C49,C
|
180 |
+
179,0,2,"Hale, Mr. Reginald",male,30,0,0,250653,13,,S
|
181 |
+
180,0,3,"Leonard, Mr. Lionel",male,36,0,0,LINE,0,,S
|
182 |
+
181,0,3,"Sage, Miss. Constance Gladys",female,,8,2,CA. 2343,69.55,,S
|
183 |
+
182,0,2,"Pernot, Mr. Rene",male,,0,0,SC/PARIS 2131,15.05,,C
|
184 |
+
183,0,3,"Asplund, Master. Clarence Gustaf Hugo",male,9,4,2,347077,31.3875,,S
|
185 |
+
184,1,2,"Becker, Master. Richard F",male,1,2,1,230136,39,F4,S
|
186 |
+
185,1,3,"Kink-Heilmann, Miss. Luise Gretchen",female,4,0,2,315153,22.025,,S
|
187 |
+
186,0,1,"Rood, Mr. Hugh Roscoe",male,,0,0,113767,50,A32,S
|
188 |
+
187,1,3,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,,1,0,370365,15.5,,Q
|
189 |
+
188,1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45,0,0,111428,26.55,,S
|
190 |
+
189,0,3,"Bourke, Mr. John",male,40,1,1,364849,15.5,,Q
|
191 |
+
190,0,3,"Turcin, Mr. Stjepan",male,36,0,0,349247,7.8958,,S
|
192 |
+
191,1,2,"Pinsky, Mrs. (Rosa)",female,32,0,0,234604,13,,S
|
193 |
+
192,0,2,"Carbines, Mr. William",male,19,0,0,28424,13,,S
|
194 |
+
193,1,3,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19,1,0,350046,7.8542,,S
|
195 |
+
194,1,2,"Navratil, Master. Michel M",male,3,1,1,230080,26,F2,S
|
196 |
+
195,1,1,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44,0,0,PC 17610,27.7208,B4,C
|
197 |
+
196,1,1,"Lurette, Miss. Elise",female,58,0,0,PC 17569,146.5208,B80,C
|
198 |
+
197,0,3,"Mernagh, Mr. Robert",male,,0,0,368703,7.75,,Q
|
199 |
+
198,0,3,"Olsen, Mr. Karl Siegwart Andreas",male,42,0,1,4579,8.4042,,S
|
200 |
+
199,1,3,"Madigan, Miss. Margaret ""Maggie""",female,,0,0,370370,7.75,,Q
|
201 |
+
200,0,2,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24,0,0,248747,13,,S
|
202 |
+
201,0,3,"Vande Walle, Mr. Nestor Cyriel",male,28,0,0,345770,9.5,,S
|
203 |
+
202,0,3,"Sage, Mr. Frederick",male,,8,2,CA. 2343,69.55,,S
|
204 |
+
203,0,3,"Johanson, Mr. Jakob Alfred",male,34,0,0,3101264,6.4958,,S
|
205 |
+
204,0,3,"Youseff, Mr. Gerious",male,45.5,0,0,2628,7.225,,C
|
206 |
+
205,1,3,"Cohen, Mr. Gurshon ""Gus""",male,18,0,0,A/5 3540,8.05,,S
|
207 |
+
206,0,3,"Strom, Miss. Telma Matilda",female,2,0,1,347054,10.4625,G6,S
|
208 |
+
207,0,3,"Backstrom, Mr. Karl Alfred",male,32,1,0,3101278,15.85,,S
|
209 |
+
208,1,3,"Albimona, Mr. Nassef Cassem",male,26,0,0,2699,18.7875,,C
|
210 |
+
209,1,3,"Carr, Miss. Helen ""Ellen""",female,16,0,0,367231,7.75,,Q
|
211 |
+
210,1,1,"Blank, Mr. Henry",male,40,0,0,112277,31,A31,C
|
212 |
+
211,0,3,"Ali, Mr. Ahmed",male,24,0,0,SOTON/O.Q. 3101311,7.05,,S
|
213 |
+
212,1,2,"Cameron, Miss. Clear Annie",female,35,0,0,F.C.C. 13528,21,,S
|
214 |
+
213,0,3,"Perkin, Mr. John Henry",male,22,0,0,A/5 21174,7.25,,S
|
215 |
+
214,0,2,"Givard, Mr. Hans Kristensen",male,30,0,0,250646,13,,S
|
216 |
+
215,0,3,"Kiernan, Mr. Philip",male,,1,0,367229,7.75,,Q
|
217 |
+
216,1,1,"Newell, Miss. Madeleine",female,31,1,0,35273,113.275,D36,C
|
218 |
+
217,1,3,"Honkanen, Miss. Eliina",female,27,0,0,STON/O2. 3101283,7.925,,S
|
219 |
+
218,0,2,"Jacobsohn, Mr. Sidney Samuel",male,42,1,0,243847,27,,S
|
220 |
+
219,1,1,"Bazzani, Miss. Albina",female,32,0,0,11813,76.2917,D15,C
|
221 |
+
220,0,2,"Harris, Mr. Walter",male,30,0,0,W/C 14208,10.5,,S
|
222 |
+
221,1,3,"Sunderland, Mr. Victor Francis",male,16,0,0,SOTON/OQ 392089,8.05,,S
|
223 |
+
222,0,2,"Bracken, Mr. James H",male,27,0,0,220367,13,,S
|
224 |
+
223,0,3,"Green, Mr. George Henry",male,51,0,0,21440,8.05,,S
|
225 |
+
224,0,3,"Nenkoff, Mr. Christo",male,,0,0,349234,7.8958,,S
|
226 |
+
225,1,1,"Hoyt, Mr. Frederick Maxfield",male,38,1,0,19943,90,C93,S
|
227 |
+
226,0,3,"Berglund, Mr. Karl Ivar Sven",male,22,0,0,PP 4348,9.35,,S
|
228 |
+
227,1,2,"Mellors, Mr. William John",male,19,0,0,SW/PP 751,10.5,,S
|
229 |
+
228,0,3,"Lovell, Mr. John Hall (""Henry"")",male,20.5,0,0,A/5 21173,7.25,,S
|
230 |
+
229,0,2,"Fahlstrom, Mr. Arne Jonas",male,18,0,0,236171,13,,S
|
231 |
+
230,0,3,"Lefebre, Miss. Mathilde",female,,3,1,4133,25.4667,,S
|
232 |
+
231,1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35,1,0,36973,83.475,C83,S
|
233 |
+
232,0,3,"Larsson, Mr. Bengt Edvin",male,29,0,0,347067,7.775,,S
|
234 |
+
233,0,2,"Sjostedt, Mr. Ernst Adolf",male,59,0,0,237442,13.5,,S
|
235 |
+
234,1,3,"Asplund, Miss. Lillian Gertrud",female,5,4,2,347077,31.3875,,S
|
236 |
+
235,0,2,"Leyson, Mr. Robert William Norman",male,24,0,0,C.A. 29566,10.5,,S
|
237 |
+
236,0,3,"Harknett, Miss. Alice Phoebe",female,,0,0,W./C. 6609,7.55,,S
|
238 |
+
237,0,2,"Hold, Mr. Stephen",male,44,1,0,26707,26,,S
|
239 |
+
238,1,2,"Collyer, Miss. Marjorie ""Lottie""",female,8,0,2,C.A. 31921,26.25,,S
|
240 |
+
239,0,2,"Pengelly, Mr. Frederick William",male,19,0,0,28665,10.5,,S
|
241 |
+
240,0,2,"Hunt, Mr. George Henry",male,33,0,0,SCO/W 1585,12.275,,S
|
242 |
+
241,0,3,"Zabour, Miss. Thamine",female,,1,0,2665,14.4542,,C
|
243 |
+
242,1,3,"Murphy, Miss. Katherine ""Kate""",female,,1,0,367230,15.5,,Q
|
244 |
+
243,0,2,"Coleridge, Mr. Reginald Charles",male,29,0,0,W./C. 14263,10.5,,S
|
245 |
+
244,0,3,"Maenpaa, Mr. Matti Alexanteri",male,22,0,0,STON/O 2. 3101275,7.125,,S
|
246 |
+
245,0,3,"Attalah, Mr. Sleiman",male,30,0,0,2694,7.225,,C
|
247 |
+
246,0,1,"Minahan, Dr. William Edward",male,44,2,0,19928,90,C78,Q
|
248 |
+
247,0,3,"Lindahl, Miss. Agda Thorilda Viktoria",female,25,0,0,347071,7.775,,S
|
249 |
+
248,1,2,"Hamalainen, Mrs. William (Anna)",female,24,0,2,250649,14.5,,S
|
250 |
+
249,1,1,"Beckwith, Mr. Richard Leonard",male,37,1,1,11751,52.5542,D35,S
|
251 |
+
250,0,2,"Carter, Rev. Ernest Courtenay",male,54,1,0,244252,26,,S
|
252 |
+
251,0,3,"Reed, Mr. James George",male,,0,0,362316,7.25,,S
|
253 |
+
252,0,3,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29,1,1,347054,10.4625,G6,S
|
254 |
+
253,0,1,"Stead, Mr. William Thomas",male,62,0,0,113514,26.55,C87,S
|
255 |
+
254,0,3,"Lobb, Mr. William Arthur",male,30,1,0,A/5. 3336,16.1,,S
|
256 |
+
255,0,3,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41,0,2,370129,20.2125,,S
|
257 |
+
256,1,3,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29,0,2,2650,15.2458,,C
|
258 |
+
257,1,1,"Thorne, Mrs. Gertrude Maybelle",female,,0,0,PC 17585,79.2,,C
|
259 |
+
258,1,1,"Cherry, Miss. Gladys",female,30,0,0,110152,86.5,B77,S
|
260 |
+
259,1,1,"Ward, Miss. Anna",female,35,0,0,PC 17755,512.3292,,C
|
261 |
+
260,1,2,"Parrish, Mrs. (Lutie Davis)",female,50,0,1,230433,26,,S
|
262 |
+
261,0,3,"Smith, Mr. Thomas",male,,0,0,384461,7.75,,Q
|
263 |
+
262,1,3,"Asplund, Master. Edvin Rojj Felix",male,3,4,2,347077,31.3875,,S
|
264 |
+
263,0,1,"Taussig, Mr. Emil",male,52,1,1,110413,79.65,E67,S
|
265 |
+
264,0,1,"Harrison, Mr. William",male,40,0,0,112059,0,B94,S
|
266 |
+
265,0,3,"Henry, Miss. Delia",female,,0,0,382649,7.75,,Q
|
267 |
+
266,0,2,"Reeves, Mr. David",male,36,0,0,C.A. 17248,10.5,,S
|
268 |
+
267,0,3,"Panula, Mr. Ernesti Arvid",male,16,4,1,3101295,39.6875,,S
|
269 |
+
268,1,3,"Persson, Mr. Ernst Ulrik",male,25,1,0,347083,7.775,,S
|
270 |
+
269,1,1,"Graham, Mrs. William Thompson (Edith Junkins)",female,58,0,1,PC 17582,153.4625,C125,S
|
271 |
+
270,1,1,"Bissette, Miss. Amelia",female,35,0,0,PC 17760,135.6333,C99,S
|
272 |
+
271,0,1,"Cairns, Mr. Alexander",male,,0,0,113798,31,,S
|
273 |
+
272,1,3,"Tornquist, Mr. William Henry",male,25,0,0,LINE,0,,S
|
274 |
+
273,1,2,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41,0,1,250644,19.5,,S
|
275 |
+
274,0,1,"Natsch, Mr. Charles H",male,37,0,1,PC 17596,29.7,C118,C
|
276 |
+
275,1,3,"Healy, Miss. Hanora ""Nora""",female,,0,0,370375,7.75,,Q
|
277 |
+
276,1,1,"Andrews, Miss. Kornelia Theodosia",female,63,1,0,13502,77.9583,D7,S
|
278 |
+
277,0,3,"Lindblom, Miss. Augusta Charlotta",female,45,0,0,347073,7.75,,S
|
279 |
+
278,0,2,"Parkes, Mr. Francis ""Frank""",male,,0,0,239853,0,,S
|
280 |
+
279,0,3,"Rice, Master. Eric",male,7,4,1,382652,29.125,,Q
|
281 |
+
280,1,3,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35,1,1,C.A. 2673,20.25,,S
|
282 |
+
281,0,3,"Duane, Mr. Frank",male,65,0,0,336439,7.75,,Q
|
283 |
+
282,0,3,"Olsson, Mr. Nils Johan Goransson",male,28,0,0,347464,7.8542,,S
|
284 |
+
283,0,3,"de Pelsmaeker, Mr. Alfons",male,16,0,0,345778,9.5,,S
|
285 |
+
284,1,3,"Dorking, Mr. Edward Arthur",male,19,0,0,A/5. 10482,8.05,,S
|
286 |
+
285,0,1,"Smith, Mr. Richard William",male,,0,0,113056,26,A19,S
|
287 |
+
286,0,3,"Stankovic, Mr. Ivan",male,33,0,0,349239,8.6625,,C
|
288 |
+
287,1,3,"de Mulder, Mr. Theodore",male,30,0,0,345774,9.5,,S
|
289 |
+
288,0,3,"Naidenoff, Mr. Penko",male,22,0,0,349206,7.8958,,S
|
290 |
+
289,1,2,"Hosono, Mr. Masabumi",male,42,0,0,237798,13,,S
|
291 |
+
290,1,3,"Connolly, Miss. Kate",female,22,0,0,370373,7.75,,Q
|
292 |
+
291,1,1,"Barber, Miss. Ellen ""Nellie""",female,26,0,0,19877,78.85,,S
|
293 |
+
292,1,1,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19,1,0,11967,91.0792,B49,C
|
294 |
+
293,0,2,"Levy, Mr. Rene Jacques",male,36,0,0,SC/Paris 2163,12.875,D,C
|
295 |
+
294,0,3,"Haas, Miss. Aloisia",female,24,0,0,349236,8.85,,S
|
296 |
+
295,0,3,"Mineff, Mr. Ivan",male,24,0,0,349233,7.8958,,S
|
297 |
+
296,0,1,"Lewy, Mr. Ervin G",male,,0,0,PC 17612,27.7208,,C
|
298 |
+
297,0,3,"Hanna, Mr. Mansour",male,23.5,0,0,2693,7.2292,,C
|
299 |
+
298,0,1,"Allison, Miss. Helen Loraine",female,2,1,2,113781,151.55,C22 C26,S
|
300 |
+
299,1,1,"Saalfeld, Mr. Adolphe",male,,0,0,19988,30.5,C106,S
|
301 |
+
300,1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50,0,1,PC 17558,247.5208,B58 B60,C
|
302 |
+
301,1,3,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,,0,0,9234,7.75,,Q
|
303 |
+
302,1,3,"McCoy, Mr. Bernard",male,,2,0,367226,23.25,,Q
|
304 |
+
303,0,3,"Johnson, Mr. William Cahoone Jr",male,19,0,0,LINE,0,,S
|
305 |
+
304,1,2,"Keane, Miss. Nora A",female,,0,0,226593,12.35,E101,Q
|
306 |
+
305,0,3,"Williams, Mr. Howard Hugh ""Harry""",male,,0,0,A/5 2466,8.05,,S
|
307 |
+
306,1,1,"Allison, Master. Hudson Trevor",male,0.92,1,2,113781,151.55,C22 C26,S
|
308 |
+
307,1,1,"Fleming, Miss. Margaret",female,,0,0,17421,110.8833,,C
|
309 |
+
308,1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17,1,0,PC 17758,108.9,C65,C
|
310 |
+
309,0,2,"Abelson, Mr. Samuel",male,30,1,0,P/PP 3381,24,,C
|
311 |
+
310,1,1,"Francatelli, Miss. Laura Mabel",female,30,0,0,PC 17485,56.9292,E36,C
|
312 |
+
311,1,1,"Hays, Miss. Margaret Bechstein",female,24,0,0,11767,83.1583,C54,C
|
313 |
+
312,1,1,"Ryerson, Miss. Emily Borie",female,18,2,2,PC 17608,262.375,B57 B59 B63 B66,C
|
314 |
+
313,0,2,"Lahtinen, Mrs. William (Anna Sylfven)",female,26,1,1,250651,26,,S
|
315 |
+
314,0,3,"Hendekovic, Mr. Ignjac",male,28,0,0,349243,7.8958,,S
|
316 |
+
315,0,2,"Hart, Mr. Benjamin",male,43,1,1,F.C.C. 13529,26.25,,S
|
317 |
+
316,1,3,"Nilsson, Miss. Helmina Josefina",female,26,0,0,347470,7.8542,,S
|
318 |
+
317,1,2,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24,1,0,244367,26,,S
|
319 |
+
318,0,2,"Moraweck, Dr. Ernest",male,54,0,0,29011,14,,S
|
320 |
+
319,1,1,"Wick, Miss. Mary Natalie",female,31,0,2,36928,164.8667,C7,S
|
321 |
+
320,1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40,1,1,16966,134.5,E34,C
|
322 |
+
321,0,3,"Dennis, Mr. Samuel",male,22,0,0,A/5 21172,7.25,,S
|
323 |
+
322,0,3,"Danoff, Mr. Yoto",male,27,0,0,349219,7.8958,,S
|
324 |
+
323,1,2,"Slayter, Miss. Hilda Mary",female,30,0,0,234818,12.35,,Q
|
325 |
+
324,1,2,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22,1,1,248738,29,,S
|
326 |
+
325,0,3,"Sage, Mr. George John Jr",male,,8,2,CA. 2343,69.55,,S
|
327 |
+
326,1,1,"Young, Miss. Marie Grice",female,36,0,0,PC 17760,135.6333,C32,C
|
328 |
+
327,0,3,"Nysveen, Mr. Johan Hansen",male,61,0,0,345364,6.2375,,S
|
329 |
+
328,1,2,"Ball, Mrs. (Ada E Hall)",female,36,0,0,28551,13,D,S
|
330 |
+
329,1,3,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31,1,1,363291,20.525,,S
|
331 |
+
330,1,1,"Hippach, Miss. Jean Gertrude",female,16,0,1,111361,57.9792,B18,C
|
332 |
+
331,1,3,"McCoy, Miss. Agnes",female,,2,0,367226,23.25,,Q
|
333 |
+
332,0,1,"Partner, Mr. Austen",male,45.5,0,0,113043,28.5,C124,S
|
334 |
+
333,0,1,"Graham, Mr. George Edward",male,38,0,1,PC 17582,153.4625,C91,S
|
335 |
+
334,0,3,"Vander Planke, Mr. Leo Edmondus",male,16,2,0,345764,18,,S
|
336 |
+
335,1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,,1,0,PC 17611,133.65,,S
|
337 |
+
336,0,3,"Denkoff, Mr. Mitto",male,,0,0,349225,7.8958,,S
|
338 |
+
337,0,1,"Pears, Mr. Thomas Clinton",male,29,1,0,113776,66.6,C2,S
|
339 |
+
338,1,1,"Burns, Miss. Elizabeth Margaret",female,41,0,0,16966,134.5,E40,C
|
340 |
+
339,1,3,"Dahl, Mr. Karl Edwart",male,45,0,0,7598,8.05,,S
|
341 |
+
340,0,1,"Blackwell, Mr. Stephen Weart",male,45,0,0,113784,35.5,T,S
|
342 |
+
341,1,2,"Navratil, Master. Edmond Roger",male,2,1,1,230080,26,F2,S
|
343 |
+
342,1,1,"Fortune, Miss. Alice Elizabeth",female,24,3,2,19950,263,C23 C25 C27,S
|
344 |
+
343,0,2,"Collander, Mr. Erik Gustaf",male,28,0,0,248740,13,,S
|
345 |
+
344,0,2,"Sedgwick, Mr. Charles Frederick Waddington",male,25,0,0,244361,13,,S
|
346 |
+
345,0,2,"Fox, Mr. Stanley Hubert",male,36,0,0,229236,13,,S
|
347 |
+
346,1,2,"Brown, Miss. Amelia ""Mildred""",female,24,0,0,248733,13,F33,S
|
348 |
+
347,1,2,"Smith, Miss. Marion Elsie",female,40,0,0,31418,13,,S
|
349 |
+
348,1,3,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,,1,0,386525,16.1,,S
|
350 |
+
349,1,3,"Coutts, Master. William Loch ""William""",male,3,1,1,C.A. 37671,15.9,,S
|
351 |
+
350,0,3,"Dimic, Mr. Jovan",male,42,0,0,315088,8.6625,,S
|
352 |
+
351,0,3,"Odahl, Mr. Nils Martin",male,23,0,0,7267,9.225,,S
|
353 |
+
352,0,1,"Williams-Lambert, Mr. Fletcher Fellows",male,,0,0,113510,35,C128,S
|
354 |
+
353,0,3,"Elias, Mr. Tannous",male,15,1,1,2695,7.2292,,C
|
355 |
+
354,0,3,"Arnold-Franchi, Mr. Josef",male,25,1,0,349237,17.8,,S
|
356 |
+
355,0,3,"Yousif, Mr. Wazli",male,,0,0,2647,7.225,,C
|
357 |
+
356,0,3,"Vanden Steen, Mr. Leo Peter",male,28,0,0,345783,9.5,,S
|
358 |
+
357,1,1,"Bowerman, Miss. Elsie Edith",female,22,0,1,113505,55,E33,S
|
359 |
+
358,0,2,"Funk, Miss. Annie Clemmer",female,38,0,0,237671,13,,S
|
360 |
+
359,1,3,"McGovern, Miss. Mary",female,,0,0,330931,7.8792,,Q
|
361 |
+
360,1,3,"Mockler, Miss. Helen Mary ""Ellie""",female,,0,0,330980,7.8792,,Q
|
362 |
+
361,0,3,"Skoog, Mr. Wilhelm",male,40,1,4,347088,27.9,,S
|
363 |
+
362,0,2,"del Carlo, Mr. Sebastiano",male,29,1,0,SC/PARIS 2167,27.7208,,C
|
364 |
+
363,0,3,"Barbara, Mrs. (Catherine David)",female,45,0,1,2691,14.4542,,C
|
365 |
+
364,0,3,"Asim, Mr. Adola",male,35,0,0,SOTON/O.Q. 3101310,7.05,,S
|
366 |
+
365,0,3,"O'Brien, Mr. Thomas",male,,1,0,370365,15.5,,Q
|
367 |
+
366,0,3,"Adahl, Mr. Mauritz Nils Martin",male,30,0,0,C 7076,7.25,,S
|
368 |
+
367,1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60,1,0,110813,75.25,D37,C
|
369 |
+
368,1,3,"Moussa, Mrs. (Mantoura Boulos)",female,,0,0,2626,7.2292,,C
|
370 |
+
369,1,3,"Jermyn, Miss. Annie",female,,0,0,14313,7.75,,Q
|
371 |
+
370,1,1,"Aubart, Mme. Leontine Pauline",female,24,0,0,PC 17477,69.3,B35,C
|
372 |
+
371,1,1,"Harder, Mr. George Achilles",male,25,1,0,11765,55.4417,E50,C
|
373 |
+
372,0,3,"Wiklund, Mr. Jakob Alfred",male,18,1,0,3101267,6.4958,,S
|
374 |
+
373,0,3,"Beavan, Mr. William Thomas",male,19,0,0,323951,8.05,,S
|
375 |
+
374,0,1,"Ringhini, Mr. Sante",male,22,0,0,PC 17760,135.6333,,C
|
376 |
+
375,0,3,"Palsson, Miss. Stina Viola",female,3,3,1,349909,21.075,,S
|
377 |
+
376,1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,,1,0,PC 17604,82.1708,,C
|
378 |
+
377,1,3,"Landergren, Miss. Aurora Adelia",female,22,0,0,C 7077,7.25,,S
|
379 |
+
378,0,1,"Widener, Mr. Harry Elkins",male,27,0,2,113503,211.5,C82,C
|
380 |
+
379,0,3,"Betros, Mr. Tannous",male,20,0,0,2648,4.0125,,C
|
381 |
+
380,0,3,"Gustafsson, Mr. Karl Gideon",male,19,0,0,347069,7.775,,S
|
382 |
+
381,1,1,"Bidois, Miss. Rosalie",female,42,0,0,PC 17757,227.525,,C
|
383 |
+
382,1,3,"Nakid, Miss. Maria (""Mary"")",female,1,0,2,2653,15.7417,,C
|
384 |
+
383,0,3,"Tikkanen, Mr. Juho",male,32,0,0,STON/O 2. 3101293,7.925,,S
|
385 |
+
384,1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35,1,0,113789,52,,S
|
386 |
+
385,0,3,"Plotcharsky, Mr. Vasil",male,,0,0,349227,7.8958,,S
|
387 |
+
386,0,2,"Davies, Mr. Charles Henry",male,18,0,0,S.O.C. 14879,73.5,,S
|
388 |
+
387,0,3,"Goodwin, Master. Sidney Leonard",male,1,5,2,CA 2144,46.9,,S
|
389 |
+
388,1,2,"Buss, Miss. Kate",female,36,0,0,27849,13,,S
|
390 |
+
389,0,3,"Sadlier, Mr. Matthew",male,,0,0,367655,7.7292,,Q
|
391 |
+
390,1,2,"Lehmann, Miss. Bertha",female,17,0,0,SC 1748,12,,C
|
392 |
+
391,1,1,"Carter, Mr. William Ernest",male,36,1,2,113760,120,B96 B98,S
|
393 |
+
392,1,3,"Jansson, Mr. Carl Olof",male,21,0,0,350034,7.7958,,S
|
394 |
+
393,0,3,"Gustafsson, Mr. Johan Birger",male,28,2,0,3101277,7.925,,S
|
395 |
+
394,1,1,"Newell, Miss. Marjorie",female,23,1,0,35273,113.275,D36,C
|
396 |
+
395,1,3,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24,0,2,PP 9549,16.7,G6,S
|
397 |
+
396,0,3,"Johansson, Mr. Erik",male,22,0,0,350052,7.7958,,S
|
398 |
+
397,0,3,"Olsson, Miss. Elina",female,31,0,0,350407,7.8542,,S
|
399 |
+
398,0,2,"McKane, Mr. Peter David",male,46,0,0,28403,26,,S
|
400 |
+
399,0,2,"Pain, Dr. Alfred",male,23,0,0,244278,10.5,,S
|
401 |
+
400,1,2,"Trout, Mrs. William H (Jessie L)",female,28,0,0,240929,12.65,,S
|
402 |
+
401,1,3,"Niskanen, Mr. Juha",male,39,0,0,STON/O 2. 3101289,7.925,,S
|
403 |
+
402,0,3,"Adams, Mr. John",male,26,0,0,341826,8.05,,S
|
404 |
+
403,0,3,"Jussila, Miss. Mari Aina",female,21,1,0,4137,9.825,,S
|
405 |
+
404,0,3,"Hakkarainen, Mr. Pekka Pietari",male,28,1,0,STON/O2. 3101279,15.85,,S
|
406 |
+
405,0,3,"Oreskovic, Miss. Marija",female,20,0,0,315096,8.6625,,S
|
407 |
+
406,0,2,"Gale, Mr. Shadrach",male,34,1,0,28664,21,,S
|
408 |
+
407,0,3,"Widegren, Mr. Carl/Charles Peter",male,51,0,0,347064,7.75,,S
|
409 |
+
408,1,2,"Richards, Master. William Rowe",male,3,1,1,29106,18.75,,S
|
410 |
+
409,0,3,"Birkeland, Mr. Hans Martin Monsen",male,21,0,0,312992,7.775,,S
|
411 |
+
410,0,3,"Lefebre, Miss. Ida",female,,3,1,4133,25.4667,,S
|
412 |
+
411,0,3,"Sdycoff, Mr. Todor",male,,0,0,349222,7.8958,,S
|
413 |
+
412,0,3,"Hart, Mr. Henry",male,,0,0,394140,6.8583,,Q
|
414 |
+
413,1,1,"Minahan, Miss. Daisy E",female,33,1,0,19928,90,C78,Q
|
415 |
+
414,0,2,"Cunningham, Mr. Alfred Fleming",male,,0,0,239853,0,,S
|
416 |
+
415,1,3,"Sundman, Mr. Johan Julian",male,44,0,0,STON/O 2. 3101269,7.925,,S
|
417 |
+
416,0,3,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,,0,0,343095,8.05,,S
|
418 |
+
417,1,2,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34,1,1,28220,32.5,,S
|
419 |
+
418,1,2,"Silven, Miss. Lyyli Karoliina",female,18,0,2,250652,13,,S
|
420 |
+
419,0,2,"Matthews, Mr. William John",male,30,0,0,28228,13,,S
|
421 |
+
420,0,3,"Van Impe, Miss. Catharina",female,10,0,2,345773,24.15,,S
|
422 |
+
421,0,3,"Gheorgheff, Mr. Stanio",male,,0,0,349254,7.8958,,C
|
423 |
+
422,0,3,"Charters, Mr. David",male,21,0,0,A/5. 13032,7.7333,,Q
|
424 |
+
423,0,3,"Zimmerman, Mr. Leo",male,29,0,0,315082,7.875,,S
|
425 |
+
424,0,3,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28,1,1,347080,14.4,,S
|
426 |
+
425,0,3,"Rosblom, Mr. Viktor Richard",male,18,1,1,370129,20.2125,,S
|
427 |
+
426,0,3,"Wiseman, Mr. Phillippe",male,,0,0,A/4. 34244,7.25,,S
|
428 |
+
427,1,2,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28,1,0,2003,26,,S
|
429 |
+
428,1,2,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19,0,0,250655,26,,S
|
430 |
+
429,0,3,"Flynn, Mr. James",male,,0,0,364851,7.75,,Q
|
431 |
+
430,1,3,"Pickard, Mr. Berk (Berk Trembisky)",male,32,0,0,SOTON/O.Q. 392078,8.05,E10,S
|
432 |
+
431,1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28,0,0,110564,26.55,C52,S
|
433 |
+
432,1,3,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,,1,0,376564,16.1,,S
|
434 |
+
433,1,2,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42,1,0,SC/AH 3085,26,,S
|
435 |
+
434,0,3,"Kallio, Mr. Nikolai Erland",male,17,0,0,STON/O 2. 3101274,7.125,,S
|
436 |
+
435,0,1,"Silvey, Mr. William Baird",male,50,1,0,13507,55.9,E44,S
|
437 |
+
436,1,1,"Carter, Miss. Lucile Polk",female,14,1,2,113760,120,B96 B98,S
|
438 |
+
437,0,3,"Ford, Miss. Doolina Margaret ""Daisy""",female,21,2,2,W./C. 6608,34.375,,S
|
439 |
+
438,1,2,"Richards, Mrs. Sidney (Emily Hocking)",female,24,2,3,29106,18.75,,S
|
440 |
+
439,0,1,"Fortune, Mr. Mark",male,64,1,4,19950,263,C23 C25 C27,S
|
441 |
+
440,0,2,"Kvillner, Mr. Johan Henrik Johannesson",male,31,0,0,C.A. 18723,10.5,,S
|
442 |
+
441,1,2,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45,1,1,F.C.C. 13529,26.25,,S
|
443 |
+
442,0,3,"Hampe, Mr. Leon",male,20,0,0,345769,9.5,,S
|
444 |
+
443,0,3,"Petterson, Mr. Johan Emil",male,25,1,0,347076,7.775,,S
|
445 |
+
444,1,2,"Reynaldo, Ms. Encarnacion",female,28,0,0,230434,13,,S
|
446 |
+
445,1,3,"Johannesen-Bratthammer, Mr. Bernt",male,,0,0,65306,8.1125,,S
|
447 |
+
446,1,1,"Dodge, Master. Washington",male,4,0,2,33638,81.8583,A34,S
|
448 |
+
447,1,2,"Mellinger, Miss. Madeleine Violet",female,13,0,1,250644,19.5,,S
|
449 |
+
448,1,1,"Seward, Mr. Frederic Kimber",male,34,0,0,113794,26.55,,S
|
450 |
+
449,1,3,"Baclini, Miss. Marie Catherine",female,5,2,1,2666,19.2583,,C
|
451 |
+
450,1,1,"Peuchen, Major. Arthur Godfrey",male,52,0,0,113786,30.5,C104,S
|
452 |
+
451,0,2,"West, Mr. Edwy Arthur",male,36,1,2,C.A. 34651,27.75,,S
|
453 |
+
452,0,3,"Hagland, Mr. Ingvald Olai Olsen",male,,1,0,65303,19.9667,,S
|
454 |
+
453,0,1,"Foreman, Mr. Benjamin Laventall",male,30,0,0,113051,27.75,C111,C
|
455 |
+
454,1,1,"Goldenberg, Mr. Samuel L",male,49,1,0,17453,89.1042,C92,C
|
456 |
+
455,0,3,"Peduzzi, Mr. Joseph",male,,0,0,A/5 2817,8.05,,S
|
457 |
+
456,1,3,"Jalsevac, Mr. Ivan",male,29,0,0,349240,7.8958,,C
|
458 |
+
457,0,1,"Millet, Mr. Francis Davis",male,65,0,0,13509,26.55,E38,S
|
459 |
+
458,1,1,"Kenyon, Mrs. Frederick R (Marion)",female,,1,0,17464,51.8625,D21,S
|
460 |
+
459,1,2,"Toomey, Miss. Ellen",female,50,0,0,F.C.C. 13531,10.5,,S
|
461 |
+
460,0,3,"O'Connor, Mr. Maurice",male,,0,0,371060,7.75,,Q
|
462 |
+
461,1,1,"Anderson, Mr. Harry",male,48,0,0,19952,26.55,E12,S
|
463 |
+
462,0,3,"Morley, Mr. William",male,34,0,0,364506,8.05,,S
|
464 |
+
463,0,1,"Gee, Mr. Arthur H",male,47,0,0,111320,38.5,E63,S
|
465 |
+
464,0,2,"Milling, Mr. Jacob Christian",male,48,0,0,234360,13,,S
|
466 |
+
465,0,3,"Maisner, Mr. Simon",male,,0,0,A/S 2816,8.05,,S
|
467 |
+
466,0,3,"Goncalves, Mr. Manuel Estanslas",male,38,0,0,SOTON/O.Q. 3101306,7.05,,S
|
468 |
+
467,0,2,"Campbell, Mr. William",male,,0,0,239853,0,,S
|
469 |
+
468,0,1,"Smart, Mr. John Montgomery",male,56,0,0,113792,26.55,,S
|
470 |
+
469,0,3,"Scanlan, Mr. James",male,,0,0,36209,7.725,,Q
|
471 |
+
470,1,3,"Baclini, Miss. Helene Barbara",female,0.75,2,1,2666,19.2583,,C
|
472 |
+
471,0,3,"Keefe, Mr. Arthur",male,,0,0,323592,7.25,,S
|
473 |
+
472,0,3,"Cacic, Mr. Luka",male,38,0,0,315089,8.6625,,S
|
474 |
+
473,1,2,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33,1,2,C.A. 34651,27.75,,S
|
475 |
+
474,1,2,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23,0,0,SC/AH Basle 541,13.7917,D,C
|
476 |
+
475,0,3,"Strandberg, Miss. Ida Sofia",female,22,0,0,7553,9.8375,,S
|
477 |
+
476,0,1,"Clifford, Mr. George Quincy",male,,0,0,110465,52,A14,S
|
478 |
+
477,0,2,"Renouf, Mr. Peter Henry",male,34,1,0,31027,21,,S
|
479 |
+
478,0,3,"Braund, Mr. Lewis Richard",male,29,1,0,3460,7.0458,,S
|
480 |
+
479,0,3,"Karlsson, Mr. Nils August",male,22,0,0,350060,7.5208,,S
|
481 |
+
480,1,3,"Hirvonen, Miss. Hildur E",female,2,0,1,3101298,12.2875,,S
|
482 |
+
481,0,3,"Goodwin, Master. Harold Victor",male,9,5,2,CA 2144,46.9,,S
|
483 |
+
482,0,2,"Frost, Mr. Anthony Wood ""Archie""",male,,0,0,239854,0,,S
|
484 |
+
483,0,3,"Rouse, Mr. Richard Henry",male,50,0,0,A/5 3594,8.05,,S
|
485 |
+
484,1,3,"Turkula, Mrs. (Hedwig)",female,63,0,0,4134,9.5875,,S
|
486 |
+
485,1,1,"Bishop, Mr. Dickinson H",male,25,1,0,11967,91.0792,B49,C
|
487 |
+
486,0,3,"Lefebre, Miss. Jeannie",female,,3,1,4133,25.4667,,S
|
488 |
+
487,1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35,1,0,19943,90,C93,S
|
489 |
+
488,0,1,"Kent, Mr. Edward Austin",male,58,0,0,11771,29.7,B37,C
|
490 |
+
489,0,3,"Somerton, Mr. Francis William",male,30,0,0,A.5. 18509,8.05,,S
|
491 |
+
490,1,3,"Coutts, Master. Eden Leslie ""Neville""",male,9,1,1,C.A. 37671,15.9,,S
|
492 |
+
491,0,3,"Hagland, Mr. Konrad Mathias Reiersen",male,,1,0,65304,19.9667,,S
|
493 |
+
492,0,3,"Windelov, Mr. Einar",male,21,0,0,SOTON/OQ 3101317,7.25,,S
|
494 |
+
493,0,1,"Molson, Mr. Harry Markland",male,55,0,0,113787,30.5,C30,S
|
495 |
+
494,0,1,"Artagaveytia, Mr. Ramon",male,71,0,0,PC 17609,49.5042,,C
|
496 |
+
495,0,3,"Stanley, Mr. Edward Roland",male,21,0,0,A/4 45380,8.05,,S
|
497 |
+
496,0,3,"Yousseff, Mr. Gerious",male,,0,0,2627,14.4583,,C
|
498 |
+
497,1,1,"Eustis, Miss. Elizabeth Mussey",female,54,1,0,36947,78.2667,D20,C
|
499 |
+
498,0,3,"Shellard, Mr. Frederick William",male,,0,0,C.A. 6212,15.1,,S
|
500 |
+
499,0,1,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25,1,2,113781,151.55,C22 C26,S
|
501 |
+
500,0,3,"Svensson, Mr. Olof",male,24,0,0,350035,7.7958,,S
|
502 |
+
501,0,3,"Calic, Mr. Petar",male,17,0,0,315086,8.6625,,S
|
503 |
+
502,0,3,"Canavan, Miss. Mary",female,21,0,0,364846,7.75,,Q
|
504 |
+
503,0,3,"O'Sullivan, Miss. Bridget Mary",female,,0,0,330909,7.6292,,Q
|
505 |
+
504,0,3,"Laitinen, Miss. Kristina Sofia",female,37,0,0,4135,9.5875,,S
|
506 |
+
505,1,1,"Maioni, Miss. Roberta",female,16,0,0,110152,86.5,B79,S
|
507 |
+
506,0,1,"Penasco y Castellana, Mr. Victor de Satode",male,18,1,0,PC 17758,108.9,C65,C
|
508 |
+
507,1,2,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33,0,2,26360,26,,S
|
509 |
+
508,1,1,"Bradley, Mr. George (""George Arthur Brayton"")",male,,0,0,111427,26.55,,S
|
510 |
+
509,0,3,"Olsen, Mr. Henry Margido",male,28,0,0,C 4001,22.525,,S
|
511 |
+
510,1,3,"Lang, Mr. Fang",male,26,0,0,1601,56.4958,,S
|
512 |
+
511,1,3,"Daly, Mr. Eugene Patrick",male,29,0,0,382651,7.75,,Q
|
513 |
+
512,0,3,"Webber, Mr. James",male,,0,0,SOTON/OQ 3101316,8.05,,S
|
514 |
+
513,1,1,"McGough, Mr. James Robert",male,36,0,0,PC 17473,26.2875,E25,S
|
515 |
+
514,1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54,1,0,PC 17603,59.4,,C
|
516 |
+
515,0,3,"Coleff, Mr. Satio",male,24,0,0,349209,7.4958,,S
|
517 |
+
516,0,1,"Walker, Mr. William Anderson",male,47,0,0,36967,34.0208,D46,S
|
518 |
+
517,1,2,"Lemore, Mrs. (Amelia Milley)",female,34,0,0,C.A. 34260,10.5,F33,S
|
519 |
+
518,0,3,"Ryan, Mr. Patrick",male,,0,0,371110,24.15,,Q
|
520 |
+
519,1,2,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36,1,0,226875,26,,S
|
521 |
+
520,0,3,"Pavlovic, Mr. Stefo",male,32,0,0,349242,7.8958,,S
|
522 |
+
521,1,1,"Perreault, Miss. Anne",female,30,0,0,12749,93.5,B73,S
|
523 |
+
522,0,3,"Vovk, Mr. Janko",male,22,0,0,349252,7.8958,,S
|
524 |
+
523,0,3,"Lahoud, Mr. Sarkis",male,,0,0,2624,7.225,,C
|
525 |
+
524,1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44,0,1,111361,57.9792,B18,C
|
526 |
+
525,0,3,"Kassem, Mr. Fared",male,,0,0,2700,7.2292,,C
|
527 |
+
526,0,3,"Farrell, Mr. James",male,40.5,0,0,367232,7.75,,Q
|
528 |
+
527,1,2,"Ridsdale, Miss. Lucy",female,50,0,0,W./C. 14258,10.5,,S
|
529 |
+
528,0,1,"Farthing, Mr. John",male,,0,0,PC 17483,221.7792,C95,S
|
530 |
+
529,0,3,"Salonen, Mr. Johan Werner",male,39,0,0,3101296,7.925,,S
|
531 |
+
530,0,2,"Hocking, Mr. Richard George",male,23,2,1,29104,11.5,,S
|
532 |
+
531,1,2,"Quick, Miss. Phyllis May",female,2,1,1,26360,26,,S
|
533 |
+
532,0,3,"Toufik, Mr. Nakli",male,,0,0,2641,7.2292,,C
|
534 |
+
533,0,3,"Elias, Mr. Joseph Jr",male,17,1,1,2690,7.2292,,C
|
535 |
+
534,1,3,"Peter, Mrs. Catherine (Catherine Rizk)",female,,0,2,2668,22.3583,,C
|
536 |
+
535,0,3,"Cacic, Miss. Marija",female,30,0,0,315084,8.6625,,S
|
537 |
+
536,1,2,"Hart, Miss. Eva Miriam",female,7,0,2,F.C.C. 13529,26.25,,S
|
538 |
+
537,0,1,"Butt, Major. Archibald Willingham",male,45,0,0,113050,26.55,B38,S
|
539 |
+
538,1,1,"LeRoy, Miss. Bertha",female,30,0,0,PC 17761,106.425,,C
|
540 |
+
539,0,3,"Risien, Mr. Samuel Beard",male,,0,0,364498,14.5,,S
|
541 |
+
540,1,1,"Frolicher, Miss. Hedwig Margaritha",female,22,0,2,13568,49.5,B39,C
|
542 |
+
541,1,1,"Crosby, Miss. Harriet R",female,36,0,2,WE/P 5735,71,B22,S
|
543 |
+
542,0,3,"Andersson, Miss. Ingeborg Constanzia",female,9,4,2,347082,31.275,,S
|
544 |
+
543,0,3,"Andersson, Miss. Sigrid Elisabeth",female,11,4,2,347082,31.275,,S
|
545 |
+
544,1,2,"Beane, Mr. Edward",male,32,1,0,2908,26,,S
|
546 |
+
545,0,1,"Douglas, Mr. Walter Donald",male,50,1,0,PC 17761,106.425,C86,C
|
547 |
+
546,0,1,"Nicholson, Mr. Arthur Ernest",male,64,0,0,693,26,,S
|
548 |
+
547,1,2,"Beane, Mrs. Edward (Ethel Clarke)",female,19,1,0,2908,26,,S
|
549 |
+
548,1,2,"Padro y Manent, Mr. Julian",male,,0,0,SC/PARIS 2146,13.8625,,C
|
550 |
+
549,0,3,"Goldsmith, Mr. Frank John",male,33,1,1,363291,20.525,,S
|
551 |
+
550,1,2,"Davies, Master. John Morgan Jr",male,8,1,1,C.A. 33112,36.75,,S
|
552 |
+
551,1,1,"Thayer, Mr. John Borland Jr",male,17,0,2,17421,110.8833,C70,C
|
553 |
+
552,0,2,"Sharp, Mr. Percival James R",male,27,0,0,244358,26,,S
|
554 |
+
553,0,3,"O'Brien, Mr. Timothy",male,,0,0,330979,7.8292,,Q
|
555 |
+
554,1,3,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22,0,0,2620,7.225,,C
|
556 |
+
555,1,3,"Ohman, Miss. Velin",female,22,0,0,347085,7.775,,S
|
557 |
+
556,0,1,"Wright, Mr. George",male,62,0,0,113807,26.55,,S
|
558 |
+
557,1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48,1,0,11755,39.6,A16,C
|
559 |
+
558,0,1,"Robbins, Mr. Victor",male,,0,0,PC 17757,227.525,,C
|
560 |
+
559,1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39,1,1,110413,79.65,E67,S
|
561 |
+
560,1,3,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36,1,0,345572,17.4,,S
|
562 |
+
561,0,3,"Morrow, Mr. Thomas Rowan",male,,0,0,372622,7.75,,Q
|
563 |
+
562,0,3,"Sivic, Mr. Husein",male,40,0,0,349251,7.8958,,S
|
564 |
+
563,0,2,"Norman, Mr. Robert Douglas",male,28,0,0,218629,13.5,,S
|
565 |
+
564,0,3,"Simmons, Mr. John",male,,0,0,SOTON/OQ 392082,8.05,,S
|
566 |
+
565,0,3,"Meanwell, Miss. (Marion Ogden)",female,,0,0,SOTON/O.Q. 392087,8.05,,S
|
567 |
+
566,0,3,"Davies, Mr. Alfred J",male,24,2,0,A/4 48871,24.15,,S
|
568 |
+
567,0,3,"Stoytcheff, Mr. Ilia",male,19,0,0,349205,7.8958,,S
|
569 |
+
568,0,3,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29,0,4,349909,21.075,,S
|
570 |
+
569,0,3,"Doharr, Mr. Tannous",male,,0,0,2686,7.2292,,C
|
571 |
+
570,1,3,"Jonsson, Mr. Carl",male,32,0,0,350417,7.8542,,S
|
572 |
+
571,1,2,"Harris, Mr. George",male,62,0,0,S.W./PP 752,10.5,,S
|
573 |
+
572,1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53,2,0,11769,51.4792,C101,S
|
574 |
+
573,1,1,"Flynn, Mr. John Irwin (""Irving"")",male,36,0,0,PC 17474,26.3875,E25,S
|
575 |
+
574,1,3,"Kelly, Miss. Mary",female,,0,0,14312,7.75,,Q
|
576 |
+
575,0,3,"Rush, Mr. Alfred George John",male,16,0,0,A/4. 20589,8.05,,S
|
577 |
+
576,0,3,"Patchett, Mr. George",male,19,0,0,358585,14.5,,S
|
578 |
+
577,1,2,"Garside, Miss. Ethel",female,34,0,0,243880,13,,S
|
579 |
+
578,1,1,"Silvey, Mrs. William Baird (Alice Munger)",female,39,1,0,13507,55.9,E44,S
|
580 |
+
579,0,3,"Caram, Mrs. Joseph (Maria Elias)",female,,1,0,2689,14.4583,,C
|
581 |
+
580,1,3,"Jussila, Mr. Eiriik",male,32,0,0,STON/O 2. 3101286,7.925,,S
|
582 |
+
581,1,2,"Christy, Miss. Julie Rachel",female,25,1,1,237789,30,,S
|
583 |
+
582,1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39,1,1,17421,110.8833,C68,C
|
584 |
+
583,0,2,"Downton, Mr. William James",male,54,0,0,28403,26,,S
|
585 |
+
584,0,1,"Ross, Mr. John Hugo",male,36,0,0,13049,40.125,A10,C
|
586 |
+
585,0,3,"Paulner, Mr. Uscher",male,,0,0,3411,8.7125,,C
|
587 |
+
586,1,1,"Taussig, Miss. Ruth",female,18,0,2,110413,79.65,E68,S
|
588 |
+
587,0,2,"Jarvis, Mr. John Denzil",male,47,0,0,237565,15,,S
|
589 |
+
588,1,1,"Frolicher-Stehli, Mr. Maxmillian",male,60,1,1,13567,79.2,B41,C
|
590 |
+
589,0,3,"Gilinski, Mr. Eliezer",male,22,0,0,14973,8.05,,S
|
591 |
+
590,0,3,"Murdlin, Mr. Joseph",male,,0,0,A./5. 3235,8.05,,S
|
592 |
+
591,0,3,"Rintamaki, Mr. Matti",male,35,0,0,STON/O 2. 3101273,7.125,,S
|
593 |
+
592,1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52,1,0,36947,78.2667,D20,C
|
594 |
+
593,0,3,"Elsbury, Mr. William James",male,47,0,0,A/5 3902,7.25,,S
|
595 |
+
594,0,3,"Bourke, Miss. Mary",female,,0,2,364848,7.75,,Q
|
596 |
+
595,0,2,"Chapman, Mr. John Henry",male,37,1,0,SC/AH 29037,26,,S
|
597 |
+
596,0,3,"Van Impe, Mr. Jean Baptiste",male,36,1,1,345773,24.15,,S
|
598 |
+
597,1,2,"Leitch, Miss. Jessie Wills",female,,0,0,248727,33,,S
|
599 |
+
598,0,3,"Johnson, Mr. Alfred",male,49,0,0,LINE,0,,S
|
600 |
+
599,0,3,"Boulos, Mr. Hanna",male,,0,0,2664,7.225,,C
|
601 |
+
600,1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49,1,0,PC 17485,56.9292,A20,C
|
602 |
+
601,1,2,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24,2,1,243847,27,,S
|
603 |
+
602,0,3,"Slabenoff, Mr. Petco",male,,0,0,349214,7.8958,,S
|
604 |
+
603,0,1,"Harrington, Mr. Charles H",male,,0,0,113796,42.4,,S
|
605 |
+
604,0,3,"Torber, Mr. Ernst William",male,44,0,0,364511,8.05,,S
|
606 |
+
605,1,1,"Homer, Mr. Harry (""Mr E Haven"")",male,35,0,0,111426,26.55,,C
|
607 |
+
606,0,3,"Lindell, Mr. Edvard Bengtsson",male,36,1,0,349910,15.55,,S
|
608 |
+
607,0,3,"Karaic, Mr. Milan",male,30,0,0,349246,7.8958,,S
|
609 |
+
608,1,1,"Daniel, Mr. Robert Williams",male,27,0,0,113804,30.5,,S
|
610 |
+
609,1,2,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22,1,2,SC/Paris 2123,41.5792,,C
|
611 |
+
610,1,1,"Shutes, Miss. Elizabeth W",female,40,0,0,PC 17582,153.4625,C125,S
|
612 |
+
611,0,3,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39,1,5,347082,31.275,,S
|
613 |
+
612,0,3,"Jardin, Mr. Jose Neto",male,,0,0,SOTON/O.Q. 3101305,7.05,,S
|
614 |
+
613,1,3,"Murphy, Miss. Margaret Jane",female,,1,0,367230,15.5,,Q
|
615 |
+
614,0,3,"Horgan, Mr. John",male,,0,0,370377,7.75,,Q
|
616 |
+
615,0,3,"Brocklebank, Mr. William Alfred",male,35,0,0,364512,8.05,,S
|
617 |
+
616,1,2,"Herman, Miss. Alice",female,24,1,2,220845,65,,S
|
618 |
+
617,0,3,"Danbom, Mr. Ernst Gilbert",male,34,1,1,347080,14.4,,S
|
619 |
+
618,0,3,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26,1,0,A/5. 3336,16.1,,S
|
620 |
+
619,1,2,"Becker, Miss. Marion Louise",female,4,2,1,230136,39,F4,S
|
621 |
+
620,0,2,"Gavey, Mr. Lawrence",male,26,0,0,31028,10.5,,S
|
622 |
+
621,0,3,"Yasbeck, Mr. Antoni",male,27,1,0,2659,14.4542,,C
|
623 |
+
622,1,1,"Kimball, Mr. Edwin Nelson Jr",male,42,1,0,11753,52.5542,D19,S
|
624 |
+
623,1,3,"Nakid, Mr. Sahid",male,20,1,1,2653,15.7417,,C
|
625 |
+
624,0,3,"Hansen, Mr. Henry Damsgaard",male,21,0,0,350029,7.8542,,S
|
626 |
+
625,0,3,"Bowen, Mr. David John ""Dai""",male,21,0,0,54636,16.1,,S
|
627 |
+
626,0,1,"Sutton, Mr. Frederick",male,61,0,0,36963,32.3208,D50,S
|
628 |
+
627,0,2,"Kirkland, Rev. Charles Leonard",male,57,0,0,219533,12.35,,Q
|
629 |
+
628,1,1,"Longley, Miss. Gretchen Fiske",female,21,0,0,13502,77.9583,D9,S
|
630 |
+
629,0,3,"Bostandyeff, Mr. Guentcho",male,26,0,0,349224,7.8958,,S
|
631 |
+
630,0,3,"O'Connell, Mr. Patrick D",male,,0,0,334912,7.7333,,Q
|
632 |
+
631,1,1,"Barkworth, Mr. Algernon Henry Wilson",male,80,0,0,27042,30,A23,S
|
633 |
+
632,0,3,"Lundahl, Mr. Johan Svensson",male,51,0,0,347743,7.0542,,S
|
634 |
+
633,1,1,"Stahelin-Maeglin, Dr. Max",male,32,0,0,13214,30.5,B50,C
|
635 |
+
634,0,1,"Parr, Mr. William Henry Marsh",male,,0,0,112052,0,,S
|
636 |
+
635,0,3,"Skoog, Miss. Mabel",female,9,3,2,347088,27.9,,S
|
637 |
+
636,1,2,"Davis, Miss. Mary",female,28,0,0,237668,13,,S
|
638 |
+
637,0,3,"Leinonen, Mr. Antti Gustaf",male,32,0,0,STON/O 2. 3101292,7.925,,S
|
639 |
+
638,0,2,"Collyer, Mr. Harvey",male,31,1,1,C.A. 31921,26.25,,S
|
640 |
+
639,0,3,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41,0,5,3101295,39.6875,,S
|
641 |
+
640,0,3,"Thorneycroft, Mr. Percival",male,,1,0,376564,16.1,,S
|
642 |
+
641,0,3,"Jensen, Mr. Hans Peder",male,20,0,0,350050,7.8542,,S
|
643 |
+
642,1,1,"Sagesser, Mlle. Emma",female,24,0,0,PC 17477,69.3,B35,C
|
644 |
+
643,0,3,"Skoog, Miss. Margit Elizabeth",female,2,3,2,347088,27.9,,S
|
645 |
+
644,1,3,"Foo, Mr. Choong",male,,0,0,1601,56.4958,,S
|
646 |
+
645,1,3,"Baclini, Miss. Eugenie",female,0.75,2,1,2666,19.2583,,C
|
647 |
+
646,1,1,"Harper, Mr. Henry Sleeper",male,48,1,0,PC 17572,76.7292,D33,C
|
648 |
+
647,0,3,"Cor, Mr. Liudevit",male,19,0,0,349231,7.8958,,S
|
649 |
+
648,1,1,"Simonius-Blumer, Col. Oberst Alfons",male,56,0,0,13213,35.5,A26,C
|
650 |
+
649,0,3,"Willey, Mr. Edward",male,,0,0,S.O./P.P. 751,7.55,,S
|
651 |
+
650,1,3,"Stanley, Miss. Amy Zillah Elsie",female,23,0,0,CA. 2314,7.55,,S
|
652 |
+
651,0,3,"Mitkoff, Mr. Mito",male,,0,0,349221,7.8958,,S
|
653 |
+
652,1,2,"Doling, Miss. Elsie",female,18,0,1,231919,23,,S
|
654 |
+
653,0,3,"Kalvik, Mr. Johannes Halvorsen",male,21,0,0,8475,8.4333,,S
|
655 |
+
654,1,3,"O'Leary, Miss. Hanora ""Norah""",female,,0,0,330919,7.8292,,Q
|
656 |
+
655,0,3,"Hegarty, Miss. Hanora ""Nora""",female,18,0,0,365226,6.75,,Q
|
657 |
+
656,0,2,"Hickman, Mr. Leonard Mark",male,24,2,0,S.O.C. 14879,73.5,,S
|
658 |
+
657,0,3,"Radeff, Mr. Alexander",male,,0,0,349223,7.8958,,S
|
659 |
+
658,0,3,"Bourke, Mrs. John (Catherine)",female,32,1,1,364849,15.5,,Q
|
660 |
+
659,0,2,"Eitemiller, Mr. George Floyd",male,23,0,0,29751,13,,S
|
661 |
+
660,0,1,"Newell, Mr. Arthur Webster",male,58,0,2,35273,113.275,D48,C
|
662 |
+
661,1,1,"Frauenthal, Dr. Henry William",male,50,2,0,PC 17611,133.65,,S
|
663 |
+
662,0,3,"Badt, Mr. Mohamed",male,40,0,0,2623,7.225,,C
|
664 |
+
663,0,1,"Colley, Mr. Edward Pomeroy",male,47,0,0,5727,25.5875,E58,S
|
665 |
+
664,0,3,"Coleff, Mr. Peju",male,36,0,0,349210,7.4958,,S
|
666 |
+
665,1,3,"Lindqvist, Mr. Eino William",male,20,1,0,STON/O 2. 3101285,7.925,,S
|
667 |
+
666,0,2,"Hickman, Mr. Lewis",male,32,2,0,S.O.C. 14879,73.5,,S
|
668 |
+
667,0,2,"Butler, Mr. Reginald Fenton",male,25,0,0,234686,13,,S
|
669 |
+
668,0,3,"Rommetvedt, Mr. Knud Paust",male,,0,0,312993,7.775,,S
|
670 |
+
669,0,3,"Cook, Mr. Jacob",male,43,0,0,A/5 3536,8.05,,S
|
671 |
+
670,1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,,1,0,19996,52,C126,S
|
672 |
+
671,1,2,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40,1,1,29750,39,,S
|
673 |
+
672,0,1,"Davidson, Mr. Thornton",male,31,1,0,F.C. 12750,52,B71,S
|
674 |
+
673,0,2,"Mitchell, Mr. Henry Michael",male,70,0,0,C.A. 24580,10.5,,S
|
675 |
+
674,1,2,"Wilhelms, Mr. Charles",male,31,0,0,244270,13,,S
|
676 |
+
675,0,2,"Watson, Mr. Ennis Hastings",male,,0,0,239856,0,,S
|
677 |
+
676,0,3,"Edvardsson, Mr. Gustaf Hjalmar",male,18,0,0,349912,7.775,,S
|
678 |
+
677,0,3,"Sawyer, Mr. Frederick Charles",male,24.5,0,0,342826,8.05,,S
|
679 |
+
678,1,3,"Turja, Miss. Anna Sofia",female,18,0,0,4138,9.8417,,S
|
680 |
+
679,0,3,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43,1,6,CA 2144,46.9,,S
|
681 |
+
680,1,1,"Cardeza, Mr. Thomas Drake Martinez",male,36,0,1,PC 17755,512.3292,B51 B53 B55,C
|
682 |
+
681,0,3,"Peters, Miss. Katie",female,,0,0,330935,8.1375,,Q
|
683 |
+
682,1,1,"Hassab, Mr. Hammad",male,27,0,0,PC 17572,76.7292,D49,C
|
684 |
+
683,0,3,"Olsvigen, Mr. Thor Anderson",male,20,0,0,6563,9.225,,S
|
685 |
+
684,0,3,"Goodwin, Mr. Charles Edward",male,14,5,2,CA 2144,46.9,,S
|
686 |
+
685,0,2,"Brown, Mr. Thomas William Solomon",male,60,1,1,29750,39,,S
|
687 |
+
686,0,2,"Laroche, Mr. Joseph Philippe Lemercier",male,25,1,2,SC/Paris 2123,41.5792,,C
|
688 |
+
687,0,3,"Panula, Mr. Jaako Arnold",male,14,4,1,3101295,39.6875,,S
|
689 |
+
688,0,3,"Dakic, Mr. Branko",male,19,0,0,349228,10.1708,,S
|
690 |
+
689,0,3,"Fischer, Mr. Eberhard Thelander",male,18,0,0,350036,7.7958,,S
|
691 |
+
690,1,1,"Madill, Miss. Georgette Alexandra",female,15,0,1,24160,211.3375,B5,S
|
692 |
+
691,1,1,"Dick, Mr. Albert Adrian",male,31,1,0,17474,57,B20,S
|
693 |
+
692,1,3,"Karun, Miss. Manca",female,4,0,1,349256,13.4167,,C
|
694 |
+
693,1,3,"Lam, Mr. Ali",male,,0,0,1601,56.4958,,S
|
695 |
+
694,0,3,"Saad, Mr. Khalil",male,25,0,0,2672,7.225,,C
|
696 |
+
695,0,1,"Weir, Col. John",male,60,0,0,113800,26.55,,S
|
697 |
+
696,0,2,"Chapman, Mr. Charles Henry",male,52,0,0,248731,13.5,,S
|
698 |
+
697,0,3,"Kelly, Mr. James",male,44,0,0,363592,8.05,,S
|
699 |
+
698,1,3,"Mullens, Miss. Katherine ""Katie""",female,,0,0,35852,7.7333,,Q
|
700 |
+
699,0,1,"Thayer, Mr. John Borland",male,49,1,1,17421,110.8833,C68,C
|
701 |
+
700,0,3,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42,0,0,348121,7.65,F G63,S
|
702 |
+
701,1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18,1,0,PC 17757,227.525,C62 C64,C
|
703 |
+
702,1,1,"Silverthorne, Mr. Spencer Victor",male,35,0,0,PC 17475,26.2875,E24,S
|
704 |
+
703,0,3,"Barbara, Miss. Saiide",female,18,0,1,2691,14.4542,,C
|
705 |
+
704,0,3,"Gallagher, Mr. Martin",male,25,0,0,36864,7.7417,,Q
|
706 |
+
705,0,3,"Hansen, Mr. Henrik Juul",male,26,1,0,350025,7.8542,,S
|
707 |
+
706,0,2,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39,0,0,250655,26,,S
|
708 |
+
707,1,2,"Kelly, Mrs. Florence ""Fannie""",female,45,0,0,223596,13.5,,S
|
709 |
+
708,1,1,"Calderhead, Mr. Edward Pennington",male,42,0,0,PC 17476,26.2875,E24,S
|
710 |
+
709,1,1,"Cleaver, Miss. Alice",female,22,0,0,113781,151.55,,S
|
711 |
+
710,1,3,"Moubarek, Master. Halim Gonios (""William George"")",male,,1,1,2661,15.2458,,C
|
712 |
+
711,1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24,0,0,PC 17482,49.5042,C90,C
|
713 |
+
712,0,1,"Klaber, Mr. Herman",male,,0,0,113028,26.55,C124,S
|
714 |
+
713,1,1,"Taylor, Mr. Elmer Zebley",male,48,1,0,19996,52,C126,S
|
715 |
+
714,0,3,"Larsson, Mr. August Viktor",male,29,0,0,7545,9.4833,,S
|
716 |
+
715,0,2,"Greenberg, Mr. Samuel",male,52,0,0,250647,13,,S
|
717 |
+
716,0,3,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19,0,0,348124,7.65,F G73,S
|
718 |
+
717,1,1,"Endres, Miss. Caroline Louise",female,38,0,0,PC 17757,227.525,C45,C
|
719 |
+
718,1,2,"Troutt, Miss. Edwina Celia ""Winnie""",female,27,0,0,34218,10.5,E101,S
|
720 |
+
719,0,3,"McEvoy, Mr. Michael",male,,0,0,36568,15.5,,Q
|
721 |
+
720,0,3,"Johnson, Mr. Malkolm Joackim",male,33,0,0,347062,7.775,,S
|
722 |
+
721,1,2,"Harper, Miss. Annie Jessie ""Nina""",female,6,0,1,248727,33,,S
|
723 |
+
722,0,3,"Jensen, Mr. Svend Lauritz",male,17,1,0,350048,7.0542,,S
|
724 |
+
723,0,2,"Gillespie, Mr. William Henry",male,34,0,0,12233,13,,S
|
725 |
+
724,0,2,"Hodges, Mr. Henry Price",male,50,0,0,250643,13,,S
|
726 |
+
725,1,1,"Chambers, Mr. Norman Campbell",male,27,1,0,113806,53.1,E8,S
|
727 |
+
726,0,3,"Oreskovic, Mr. Luka",male,20,0,0,315094,8.6625,,S
|
728 |
+
727,1,2,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30,3,0,31027,21,,S
|
729 |
+
728,1,3,"Mannion, Miss. Margareth",female,,0,0,36866,7.7375,,Q
|
730 |
+
729,0,2,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25,1,0,236853,26,,S
|
731 |
+
730,0,3,"Ilmakangas, Miss. Pieta Sofia",female,25,1,0,STON/O2. 3101271,7.925,,S
|
732 |
+
731,1,1,"Allen, Miss. Elisabeth Walton",female,29,0,0,24160,211.3375,B5,S
|
733 |
+
732,0,3,"Hassan, Mr. Houssein G N",male,11,0,0,2699,18.7875,,C
|
734 |
+
733,0,2,"Knight, Mr. Robert J",male,,0,0,239855,0,,S
|
735 |
+
734,0,2,"Berriman, Mr. William John",male,23,0,0,28425,13,,S
|
736 |
+
735,0,2,"Troupiansky, Mr. Moses Aaron",male,23,0,0,233639,13,,S
|
737 |
+
736,0,3,"Williams, Mr. Leslie",male,28.5,0,0,54636,16.1,,S
|
738 |
+
737,0,3,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48,1,3,W./C. 6608,34.375,,S
|
739 |
+
738,1,1,"Lesurer, Mr. Gustave J",male,35,0,0,PC 17755,512.3292,B101,C
|
740 |
+
739,0,3,"Ivanoff, Mr. Kanio",male,,0,0,349201,7.8958,,S
|
741 |
+
740,0,3,"Nankoff, Mr. Minko",male,,0,0,349218,7.8958,,S
|
742 |
+
741,1,1,"Hawksford, Mr. Walter James",male,,0,0,16988,30,D45,S
|
743 |
+
742,0,1,"Cavendish, Mr. Tyrell William",male,36,1,0,19877,78.85,C46,S
|
744 |
+
743,1,1,"Ryerson, Miss. Susan Parker ""Suzette""",female,21,2,2,PC 17608,262.375,B57 B59 B63 B66,C
|
745 |
+
744,0,3,"McNamee, Mr. Neal",male,24,1,0,376566,16.1,,S
|
746 |
+
745,1,3,"Stranden, Mr. Juho",male,31,0,0,STON/O 2. 3101288,7.925,,S
|
747 |
+
746,0,1,"Crosby, Capt. Edward Gifford",male,70,1,1,WE/P 5735,71,B22,S
|
748 |
+
747,0,3,"Abbott, Mr. Rossmore Edward",male,16,1,1,C.A. 2673,20.25,,S
|
749 |
+
748,1,2,"Sinkkonen, Miss. Anna",female,30,0,0,250648,13,,S
|
750 |
+
749,0,1,"Marvin, Mr. Daniel Warner",male,19,1,0,113773,53.1,D30,S
|
751 |
+
750,0,3,"Connaghton, Mr. Michael",male,31,0,0,335097,7.75,,Q
|
752 |
+
751,1,2,"Wells, Miss. Joan",female,4,1,1,29103,23,,S
|
753 |
+
752,1,3,"Moor, Master. Meier",male,6,0,1,392096,12.475,E121,S
|
754 |
+
753,0,3,"Vande Velde, Mr. Johannes Joseph",male,33,0,0,345780,9.5,,S
|
755 |
+
754,0,3,"Jonkoff, Mr. Lalio",male,23,0,0,349204,7.8958,,S
|
756 |
+
755,1,2,"Herman, Mrs. Samuel (Jane Laver)",female,48,1,2,220845,65,,S
|
757 |
+
756,1,2,"Hamalainen, Master. Viljo",male,0.67,1,1,250649,14.5,,S
|
758 |
+
757,0,3,"Carlsson, Mr. August Sigfrid",male,28,0,0,350042,7.7958,,S
|
759 |
+
758,0,2,"Bailey, Mr. Percy Andrew",male,18,0,0,29108,11.5,,S
|
760 |
+
759,0,3,"Theobald, Mr. Thomas Leonard",male,34,0,0,363294,8.05,,S
|
761 |
+
760,1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33,0,0,110152,86.5,B77,S
|
762 |
+
761,0,3,"Garfirth, Mr. John",male,,0,0,358585,14.5,,S
|
763 |
+
762,0,3,"Nirva, Mr. Iisakki Antino Aijo",male,41,0,0,SOTON/O2 3101272,7.125,,S
|
764 |
+
763,1,3,"Barah, Mr. Hanna Assi",male,20,0,0,2663,7.2292,,C
|
765 |
+
764,1,1,"Carter, Mrs. William Ernest (Lucile Polk)",female,36,1,2,113760,120,B96 B98,S
|
766 |
+
765,0,3,"Eklund, Mr. Hans Linus",male,16,0,0,347074,7.775,,S
|
767 |
+
766,1,1,"Hogeboom, Mrs. John C (Anna Andrews)",female,51,1,0,13502,77.9583,D11,S
|
768 |
+
767,0,1,"Brewe, Dr. Arthur Jackson",male,,0,0,112379,39.6,,C
|
769 |
+
768,0,3,"Mangan, Miss. Mary",female,30.5,0,0,364850,7.75,,Q
|
770 |
+
769,0,3,"Moran, Mr. Daniel J",male,,1,0,371110,24.15,,Q
|
771 |
+
770,0,3,"Gronnestad, Mr. Daniel Danielsen",male,32,0,0,8471,8.3625,,S
|
772 |
+
771,0,3,"Lievens, Mr. Rene Aime",male,24,0,0,345781,9.5,,S
|
773 |
+
772,0,3,"Jensen, Mr. Niels Peder",male,48,0,0,350047,7.8542,,S
|
774 |
+
773,0,2,"Mack, Mrs. (Mary)",female,57,0,0,S.O./P.P. 3,10.5,E77,S
|
775 |
+
774,0,3,"Elias, Mr. Dibo",male,,0,0,2674,7.225,,C
|
776 |
+
775,1,2,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54,1,3,29105,23,,S
|
777 |
+
776,0,3,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18,0,0,347078,7.75,,S
|
778 |
+
777,0,3,"Tobin, Mr. Roger",male,,0,0,383121,7.75,F38,Q
|
779 |
+
778,1,3,"Emanuel, Miss. Virginia Ethel",female,5,0,0,364516,12.475,,S
|
780 |
+
779,0,3,"Kilgannon, Mr. Thomas J",male,,0,0,36865,7.7375,,Q
|
781 |
+
780,1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43,0,1,24160,211.3375,B3,S
|
782 |
+
781,1,3,"Ayoub, Miss. Banoura",female,13,0,0,2687,7.2292,,C
|
783 |
+
782,1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17,1,0,17474,57,B20,S
|
784 |
+
783,0,1,"Long, Mr. Milton Clyde",male,29,0,0,113501,30,D6,S
|
785 |
+
784,0,3,"Johnston, Mr. Andrew G",male,,1,2,W./C. 6607,23.45,,S
|
786 |
+
785,0,3,"Ali, Mr. William",male,25,0,0,SOTON/O.Q. 3101312,7.05,,S
|
787 |
+
786,0,3,"Harmer, Mr. Abraham (David Lishin)",male,25,0,0,374887,7.25,,S
|
788 |
+
787,1,3,"Sjoblom, Miss. Anna Sofia",female,18,0,0,3101265,7.4958,,S
|
789 |
+
788,0,3,"Rice, Master. George Hugh",male,8,4,1,382652,29.125,,Q
|
790 |
+
789,1,3,"Dean, Master. Bertram Vere",male,1,1,2,C.A. 2315,20.575,,S
|
791 |
+
790,0,1,"Guggenheim, Mr. Benjamin",male,46,0,0,PC 17593,79.2,B82 B84,C
|
792 |
+
791,0,3,"Keane, Mr. Andrew ""Andy""",male,,0,0,12460,7.75,,Q
|
793 |
+
792,0,2,"Gaskell, Mr. Alfred",male,16,0,0,239865,26,,S
|
794 |
+
793,0,3,"Sage, Miss. Stella Anna",female,,8,2,CA. 2343,69.55,,S
|
795 |
+
794,0,1,"Hoyt, Mr. William Fisher",male,,0,0,PC 17600,30.6958,,C
|
796 |
+
795,0,3,"Dantcheff, Mr. Ristiu",male,25,0,0,349203,7.8958,,S
|
797 |
+
796,0,2,"Otter, Mr. Richard",male,39,0,0,28213,13,,S
|
798 |
+
797,1,1,"Leader, Dr. Alice (Farnham)",female,49,0,0,17465,25.9292,D17,S
|
799 |
+
798,1,3,"Osman, Mrs. Mara",female,31,0,0,349244,8.6833,,S
|
800 |
+
799,0,3,"Ibrahim Shawah, Mr. Yousseff",male,30,0,0,2685,7.2292,,C
|
801 |
+
800,0,3,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30,1,1,345773,24.15,,S
|
802 |
+
801,0,2,"Ponesell, Mr. Martin",male,34,0,0,250647,13,,S
|
803 |
+
802,1,2,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31,1,1,C.A. 31921,26.25,,S
|
804 |
+
803,1,1,"Carter, Master. William Thornton II",male,11,1,2,113760,120,B96 B98,S
|
805 |
+
804,1,3,"Thomas, Master. Assad Alexander",male,0.42,0,1,2625,8.5167,,C
|
806 |
+
805,1,3,"Hedman, Mr. Oskar Arvid",male,27,0,0,347089,6.975,,S
|
807 |
+
806,0,3,"Johansson, Mr. Karl Johan",male,31,0,0,347063,7.775,,S
|
808 |
+
807,0,1,"Andrews, Mr. Thomas Jr",male,39,0,0,112050,0,A36,S
|
809 |
+
808,0,3,"Pettersson, Miss. Ellen Natalia",female,18,0,0,347087,7.775,,S
|
810 |
+
809,0,2,"Meyer, Mr. August",male,39,0,0,248723,13,,S
|
811 |
+
810,1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33,1,0,113806,53.1,E8,S
|
812 |
+
811,0,3,"Alexander, Mr. William",male,26,0,0,3474,7.8875,,S
|
813 |
+
812,0,3,"Lester, Mr. James",male,39,0,0,A/4 48871,24.15,,S
|
814 |
+
813,0,2,"Slemen, Mr. Richard James",male,35,0,0,28206,10.5,,S
|
815 |
+
814,0,3,"Andersson, Miss. Ebba Iris Alfrida",female,6,4,2,347082,31.275,,S
|
816 |
+
815,0,3,"Tomlin, Mr. Ernest Portage",male,30.5,0,0,364499,8.05,,S
|
817 |
+
816,0,1,"Fry, Mr. Richard",male,,0,0,112058,0,B102,S
|
818 |
+
817,0,3,"Heininen, Miss. Wendla Maria",female,23,0,0,STON/O2. 3101290,7.925,,S
|
819 |
+
818,0,2,"Mallet, Mr. Albert",male,31,1,1,S.C./PARIS 2079,37.0042,,C
|
820 |
+
819,0,3,"Holm, Mr. John Fredrik Alexander",male,43,0,0,C 7075,6.45,,S
|
821 |
+
820,0,3,"Skoog, Master. Karl Thorsten",male,10,3,2,347088,27.9,,S
|
822 |
+
821,1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52,1,1,12749,93.5,B69,S
|
823 |
+
822,1,3,"Lulic, Mr. Nikola",male,27,0,0,315098,8.6625,,S
|
824 |
+
823,0,1,"Reuchlin, Jonkheer. John George",male,38,0,0,19972,0,,S
|
825 |
+
824,1,3,"Moor, Mrs. (Beila)",female,27,0,1,392096,12.475,E121,S
|
826 |
+
825,0,3,"Panula, Master. Urho Abraham",male,2,4,1,3101295,39.6875,,S
|
827 |
+
826,0,3,"Flynn, Mr. John",male,,0,0,368323,6.95,,Q
|
828 |
+
827,0,3,"Lam, Mr. Len",male,,0,0,1601,56.4958,,S
|
829 |
+
828,1,2,"Mallet, Master. Andre",male,1,0,2,S.C./PARIS 2079,37.0042,,C
|
830 |
+
829,1,3,"McCormack, Mr. Thomas Joseph",male,,0,0,367228,7.75,,Q
|
831 |
+
830,1,1,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62,0,0,113572,80,B28,
|
832 |
+
831,1,3,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15,1,0,2659,14.4542,,C
|
833 |
+
832,1,2,"Richards, Master. George Sibley",male,0.83,1,1,29106,18.75,,S
|
834 |
+
833,0,3,"Saad, Mr. Amin",male,,0,0,2671,7.2292,,C
|
835 |
+
834,0,3,"Augustsson, Mr. Albert",male,23,0,0,347468,7.8542,,S
|
836 |
+
835,0,3,"Allum, Mr. Owen George",male,18,0,0,2223,8.3,,S
|
837 |
+
836,1,1,"Compton, Miss. Sara Rebecca",female,39,1,1,PC 17756,83.1583,E49,C
|
838 |
+
837,0,3,"Pasic, Mr. Jakob",male,21,0,0,315097,8.6625,,S
|
839 |
+
838,0,3,"Sirota, Mr. Maurice",male,,0,0,392092,8.05,,S
|
840 |
+
839,1,3,"Chip, Mr. Chang",male,32,0,0,1601,56.4958,,S
|
841 |
+
840,1,1,"Marechal, Mr. Pierre",male,,0,0,11774,29.7,C47,C
|
842 |
+
841,0,3,"Alhomaki, Mr. Ilmari Rudolf",male,20,0,0,SOTON/O2 3101287,7.925,,S
|
843 |
+
842,0,2,"Mudd, Mr. Thomas Charles",male,16,0,0,S.O./P.P. 3,10.5,,S
|
844 |
+
843,1,1,"Serepeca, Miss. Augusta",female,30,0,0,113798,31,,C
|
845 |
+
844,0,3,"Lemberopolous, Mr. Peter L",male,34.5,0,0,2683,6.4375,,C
|
846 |
+
845,0,3,"Culumovic, Mr. Jeso",male,17,0,0,315090,8.6625,,S
|
847 |
+
846,0,3,"Abbing, Mr. Anthony",male,42,0,0,C.A. 5547,7.55,,S
|
848 |
+
847,0,3,"Sage, Mr. Douglas Bullen",male,,8,2,CA. 2343,69.55,,S
|
849 |
+
848,0,3,"Markoff, Mr. Marin",male,35,0,0,349213,7.8958,,C
|
850 |
+
849,0,2,"Harper, Rev. John",male,28,0,1,248727,33,,S
|
851 |
+
850,1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,,1,0,17453,89.1042,C92,C
|
852 |
+
851,0,3,"Andersson, Master. Sigvard Harald Elias",male,4,4,2,347082,31.275,,S
|
853 |
+
852,0,3,"Svensson, Mr. Johan",male,74,0,0,347060,7.775,,S
|
854 |
+
853,0,3,"Boulos, Miss. Nourelain",female,9,1,1,2678,15.2458,,C
|
855 |
+
854,1,1,"Lines, Miss. Mary Conover",female,16,0,1,PC 17592,39.4,D28,S
|
856 |
+
855,0,2,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44,1,0,244252,26,,S
|
857 |
+
856,1,3,"Aks, Mrs. Sam (Leah Rosen)",female,18,0,1,392091,9.35,,S
|
858 |
+
857,1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45,1,1,36928,164.8667,,S
|
859 |
+
858,1,1,"Daly, Mr. Peter Denis ",male,51,0,0,113055,26.55,E17,S
|
860 |
+
859,1,3,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24,0,3,2666,19.2583,,C
|
861 |
+
860,0,3,"Razi, Mr. Raihed",male,,0,0,2629,7.2292,,C
|
862 |
+
861,0,3,"Hansen, Mr. Claus Peter",male,41,2,0,350026,14.1083,,S
|
863 |
+
862,0,2,"Giles, Mr. Frederick Edward",male,21,1,0,28134,11.5,,S
|
864 |
+
863,1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48,0,0,17466,25.9292,D17,S
|
865 |
+
864,0,3,"Sage, Miss. Dorothy Edith ""Dolly""",female,,8,2,CA. 2343,69.55,,S
|
866 |
+
865,0,2,"Gill, Mr. John William",male,24,0,0,233866,13,,S
|
867 |
+
866,1,2,"Bystrom, Mrs. (Karolina)",female,42,0,0,236852,13,,S
|
868 |
+
867,1,2,"Duran y More, Miss. Asuncion",female,27,1,0,SC/PARIS 2149,13.8583,,C
|
869 |
+
868,0,1,"Roebling, Mr. Washington Augustus II",male,31,0,0,PC 17590,50.4958,A24,S
|
870 |
+
869,0,3,"van Melkebeke, Mr. Philemon",male,,0,0,345777,9.5,,S
|
871 |
+
870,1,3,"Johnson, Master. Harold Theodor",male,4,1,1,347742,11.1333,,S
|
872 |
+
871,0,3,"Balkic, Mr. Cerin",male,26,0,0,349248,7.8958,,S
|
873 |
+
872,1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47,1,1,11751,52.5542,D35,S
|
874 |
+
873,0,1,"Carlsson, Mr. Frans Olof",male,33,0,0,695,5,B51 B53 B55,S
|
875 |
+
874,0,3,"Vander Cruyssen, Mr. Victor",male,47,0,0,345765,9,,S
|
876 |
+
875,1,2,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28,1,0,P/PP 3381,24,,C
|
877 |
+
876,1,3,"Najib, Miss. Adele Kiamie ""Jane""",female,15,0,0,2667,7.225,,C
|
878 |
+
877,0,3,"Gustafsson, Mr. Alfred Ossian",male,20,0,0,7534,9.8458,,S
|
879 |
+
878,0,3,"Petroff, Mr. Nedelio",male,19,0,0,349212,7.8958,,S
|
880 |
+
879,0,3,"Laleff, Mr. Kristo",male,,0,0,349217,7.8958,,S
|
881 |
+
880,1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56,0,1,11767,83.1583,C50,C
|
882 |
+
881,1,2,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25,0,1,230433,26,,S
|
883 |
+
882,0,3,"Markun, Mr. Johann",male,33,0,0,349257,7.8958,,S
|
884 |
+
883,0,3,"Dahlberg, Miss. Gerda Ulrika",female,22,0,0,7552,10.5167,,S
|
885 |
+
884,0,2,"Banfield, Mr. Frederick James",male,28,0,0,C.A./SOTON 34068,10.5,,S
|
886 |
+
885,0,3,"Sutehall, Mr. Henry Jr",male,25,0,0,SOTON/OQ 392076,7.05,,S
|
887 |
+
886,0,3,"Rice, Mrs. William (Margaret Norton)",female,39,0,5,382652,29.125,,Q
|
888 |
+
887,0,2,"Montvila, Rev. Juozas",male,27,0,0,211536,13,,S
|
889 |
+
888,1,1,"Graham, Miss. Margaret Edith",female,19,0,0,112053,30,B42,S
|
890 |
+
889,0,3,"Johnston, Miss. Catherine Helen ""Carrie""",female,,1,2,W./C. 6607,23.45,,S
|
891 |
+
890,1,1,"Behr, Mr. Karl Howell",male,26,0,0,111369,30,C148,C
|
892 |
+
891,0,3,"Dooley, Mr. Patrick",male,32,0,0,370376,7.75,,Q
|