From 741bb87351bc533ddace81823ed506aa63188a59 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Fri, 17 May 2024 23:11:26 +0530
Subject: [PATCH 01/72] Update index.md
---
contrib/pandas/index.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/contrib/pandas/index.md b/contrib/pandas/index.md
index 5c0f2b4..f2a3fa7 100644
--- a/contrib/pandas/index.md
+++ b/contrib/pandas/index.md
@@ -1,3 +1,4 @@
# List of sections
- [Pandas Series Vs NumPy ndarray](pandas_series_vs_numpy_ndarray.md)
+- [Pandas Introduction and Dataframes in Pandas](Introduction_to_Pandas_Library_and_DataFrames.md)
From 35baa355cb23b9f7dad9818ebc5cbe80fff35e84 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Fri, 17 May 2024 23:11:53 +0530
Subject: [PATCH 02/72] Add files via upload
---
...uction_to_Pandas_Library_and_DataFrames.md | 395 ++++++++++++++++++
1 file changed, 395 insertions(+)
create mode 100644 contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md
diff --git a/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md b/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md
new file mode 100644
index 0000000..5e7dcd3
--- /dev/null
+++ b/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md
@@ -0,0 +1,395 @@
+# Introduction_to_Pandas_Library_and_DataFrames
+
+
+> Content Creator - Krishna Kaushik
+
+**As you have learnt Python Programming , now it's time for some applications.**
+
+- Machine Learning and Data Science is the emerging field of today's time , to work in this this field your first step should be `Data Science` as Machine Learning is all about data.
+- To begin with Data Science your first tool will be `Pandas Library`.
+
+## Introduction of Pandas Library
+
+Pandas is a data analysis and manipulation tool, built on top of the python programming language. Pandas got its name from the term Panel data (‘Pa’ from Panel and ‘da’ from data). Panel data is a data which have rows and columns in it like excel spreadsheets, csv files etc.
+
+**To use Pandas, first we’ve to import it.**
+
+## Why pandas?
+
+* Pandas provides a simple-to-use but very capable set of functions that you can use on your data.
+* It is also associate with other machine learning libraries , so it is important to learn it.
+
+* For example - It is highly used to transform tha data which will be use by machine learning model during the training.
+
+
+```python
+# Importing the pandas
+import pandas as pd
+```
+
+*To import any module in Python use “import 'module name' ” command, I used “pd” as pandas abbreviation because we don’t need to type pandas every time only type “pd” to use pandas.*
+
+
+```python
+# To check available pandas version
+print(f"Pandas Version is : {pd.__version__}")
+```
+
+ Pandas Version is : 2.1.4
+
+
+## Understanding Pandas data types
+
+Pandas has two main data types : `Series` and `DataFrames`
+
+* `pandas.Series` is a 1-dimensional column of data.
+* `pandas.DataFrames` is 2 -dimensional data table having rows and columns.
+
+### 1. Series datatype
+
+**To creeate a series you can use `pd.Series()` and passing a python list inside()**.
+
+Note: S in Series is capital if you use small s it will give you an error.
+
+> Let's create a series
+
+
+
+```python
+# Creating a series of car companies
+cars = pd.Series(["Honda","Audi","Thar","BMW"])
+cars
+```
+
+
+
+
+ 0 Honda
+ 1 Audi
+ 2 Thar
+ 3 BMW
+ dtype: object
+
+
+
+The above code creates a Series of cars companies the name of series is “cars” the code “pd.Series([“Honda” , “Audi” , “Thar”, "BMW"])” means Hey! pandas (pd) create a Series of cars named "Honda" , "Audi" , "Thar" and "BMW".
+
+The default index of a series is 0,1,2….(Remember it starts from 0)
+
+To change the index of any series set the “index” parameter accordingly. It takes the list of index values:
+
+
+```python
+cars = pd.Series(["Honda","Audi","Thar","BMW"],index = ["A" , "B" , "C" ,"D"])
+cars
+```
+
+
+
+
+ A Honda
+ B Audi
+ C Thar
+ D BMW
+ dtype: object
+
+
+
+You can see that the index has been changed from numbers to A, B ,C and D.
+
+And the mentioned ‘dtype’ tells us about the type of data we have in the series.
+
+### 2. DataFrames datatype
+
+DataFrame contains rows and columns like a csv file have.
+
+You can also create a DataFrame by using `pd.DataFrame()` and passing it a Python dictionary.
+
+
+```python
+# Let's create
+cars_with_colours = pd.DataFrame({"Cars" : ["BMW","Audi","Thar","Honda"],
+ "Colour" : ["Black","White","Red","Green"]})
+cars_with_colours
+```
+
+
+
+
+
+
+
+
+
+
+
Cars
+
Colour
+
+
+
+
+
0
+
BMW
+
Black
+
+
+
1
+
Audi
+
White
+
+
+
2
+
Thar
+
Red
+
+
+
3
+
Honda
+
Green
+
+
+
+
+
+
+
+The dictionary key is the `column name` and value are the `column data`.
+
+*You can also create a DataFrame with the help of series.*
+
+
+```python
+# Let's create two series
+students = pd.Series(["Ram","Mohan","Krishna","Shivam"])
+age = pd.Series([19,20,21,24])
+
+students
+```
+
+
+
+
+ 0 Ram
+ 1 Mohan
+ 2 Krishna
+ 3 Shivam
+ dtype: object
+
+
+
+
+```python
+age
+```
+
+
+
+
+ 0 19
+ 1 20
+ 2 21
+ 3 24
+ dtype: int64
+
+
+
+
+```python
+# Now let's create a dataframe with the help of above series
+# pass the series name to the dictionary value
+
+record = pd.DataFrame({"Student_Name":students ,
+ "Age" :age})
+record
+```
+
+
+
+
+
+
+
+
+
+
+
Student_Name
+
Age
+
+
+
+
+
0
+
Ram
+
19
+
+
+
1
+
Mohan
+
20
+
+
+
2
+
Krishna
+
21
+
+
+
3
+
Shivam
+
24
+
+
+
+
+
+
+
+
+```python
+# To print the list of columns names
+record.columns
+```
+
+
+
+
+ Index(['Student_Name', 'Age'], dtype='object')
+
+
+
+### Describe Data
+
+**The good news is that pandas has many built-in functions which allow you to quickly get information about a DataFrame.**
+Let's explore the `record` dataframe
+
+#### 1. Use `.dtypes` to find what datatype a column contains
+
+
+```python
+record.dtypes
+```
+
+
+
+
+ Student_Name object
+ Age int64
+ dtype: object
+
+
+
+#### 2. use `.describe()` for statistical overview.
+
+
+```python
+record.describe() # It only display the results for numeric data
+```
+
+
+
+
+
@@ -214,24 +196,6 @@ record = pd.DataFrame({"Student_Name":students ,
"Age" :age})
record
```
-
-
-
-
-
-
@@ -307,24 +271,6 @@ record.dtypes
```python
record.describe() # It only display the results for numeric data
```
-
-
-
-
-
-
From ba9abd57a77ccfeab63e89f28720a97fb13980ae Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 18 May 2024 22:11:38 +0530
Subject: [PATCH 04/72] Add files via upload
---
contrib/pandas/Titanic.csv | 1310 ++++++++++++++++++++++++++++++++++++
1 file changed, 1310 insertions(+)
create mode 100644 contrib/pandas/Titanic.csv
diff --git a/contrib/pandas/Titanic.csv b/contrib/pandas/Titanic.csv
new file mode 100644
index 0000000..f8d49dc
--- /dev/null
+++ b/contrib/pandas/Titanic.csv
@@ -0,0 +1,1310 @@
+"pclass","survived","name","sex","age","sibsp","parch","ticket","fare","cabin","embarked","boat","body","home.dest"
+1,1,"Allen, Miss. Elisabeth Walton","female",29,0,0,"24160",211.3375,"B5","S","2",,"St Louis, MO"
+1,1,"Allison, Master. Hudson Trevor","male",0.92,1,2,"113781",151.5500,"C22 C26","S","11",,"Montreal, PQ / Chesterville, ON"
+1,0,"Allison, Miss. Helen Loraine","female",2,1,2,"113781",151.5500,"C22 C26","S",,,"Montreal, PQ / Chesterville, ON"
+1,0,"Allison, Mr. Hudson Joshua Creighton","male",30,1,2,"113781",151.5500,"C22 C26","S",,"135","Montreal, PQ / Chesterville, ON"
+1,0,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)","female",25,1,2,"113781",151.5500,"C22 C26","S",,,"Montreal, PQ / Chesterville, ON"
+1,1,"Anderson, Mr. Harry","male",48,0,0,"19952",26.5500,"E12","S","3",,"New York, NY"
+1,1,"Andrews, Miss. Kornelia Theodosia","female",63,1,0,"13502",77.9583,"D7","S","10",,"Hudson, NY"
+1,0,"Andrews, Mr. Thomas Jr","male",39,0,0,"112050",0.0000,"A36","S",,,"Belfast, NI"
+1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)","female",53,2,0,"11769",51.4792,"C101","S","D",,"Bayside, Queens, NY"
+1,0,"Artagaveytia, Mr. Ramon","male",71,0,0,"PC 17609",49.5042,,"C",,"22","Montevideo, Uruguay"
+1,0,"Astor, Col. John Jacob","male",47,1,0,"PC 17757",227.5250,"C62 C64","C",,"124","New York, NY"
+1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)","female",18,1,0,"PC 17757",227.5250,"C62 C64","C","4",,"New York, NY"
+1,1,"Aubart, Mme. Leontine Pauline","female",24,0,0,"PC 17477",69.3000,"B35","C","9",,"Paris, France"
+1,1,"Barber, Miss. Ellen ""Nellie""","female",26,0,0,"19877",78.8500,,"S","6",,
+1,1,"Barkworth, Mr. Algernon Henry Wilson","male",80,0,0,"27042",30.0000,"A23","S","B",,"Hessle, Yorks"
+1,0,"Baumann, Mr. John D","male",,0,0,"PC 17318",25.9250,,"S",,,"New York, NY"
+1,0,"Baxter, Mr. Quigg Edmond","male",24,0,1,"PC 17558",247.5208,"B58 B60","C",,,"Montreal, PQ"
+1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)","female",50,0,1,"PC 17558",247.5208,"B58 B60","C","6",,"Montreal, PQ"
+1,1,"Bazzani, Miss. Albina","female",32,0,0,"11813",76.2917,"D15","C","8",,
+1,0,"Beattie, Mr. Thomson","male",36,0,0,"13050",75.2417,"C6","C","A",,"Winnipeg, MN"
+1,1,"Beckwith, Mr. Richard Leonard","male",37,1,1,"11751",52.5542,"D35","S","5",,"New York, NY"
+1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)","female",47,1,1,"11751",52.5542,"D35","S","5",,"New York, NY"
+1,1,"Behr, Mr. Karl Howell","male",26,0,0,"111369",30.0000,"C148","C","5",,"New York, NY"
+1,1,"Bidois, Miss. Rosalie","female",42,0,0,"PC 17757",227.5250,,"C","4",,
+1,1,"Bird, Miss. Ellen","female",29,0,0,"PC 17483",221.7792,"C97","S","8",,
+1,0,"Birnbaum, Mr. Jakob","male",25,0,0,"13905",26.0000,,"C",,"148","San Francisco, CA"
+1,1,"Bishop, Mr. Dickinson H","male",25,1,0,"11967",91.0792,"B49","C","7",,"Dowagiac, MI"
+1,1,"Bishop, Mrs. Dickinson H (Helen Walton)","female",19,1,0,"11967",91.0792,"B49","C","7",,"Dowagiac, MI"
+1,1,"Bissette, Miss. Amelia","female",35,0,0,"PC 17760",135.6333,"C99","S","8",,
+1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan","male",28,0,0,"110564",26.5500,"C52","S","D",,"Stockholm, Sweden / Washington, DC"
+1,0,"Blackwell, Mr. Stephen Weart","male",45,0,0,"113784",35.5000,"T","S",,,"Trenton, NJ"
+1,1,"Blank, Mr. Henry","male",40,0,0,"112277",31.0000,"A31","C","7",,"Glen Ridge, NJ"
+1,1,"Bonnell, Miss. Caroline","female",30,0,0,"36928",164.8667,"C7","S","8",,"Youngstown, OH"
+1,1,"Bonnell, Miss. Elizabeth","female",58,0,0,"113783",26.5500,"C103","S","8",,"Birkdale, England Cleveland, Ohio"
+1,0,"Borebank, Mr. John James","male",42,0,0,"110489",26.5500,"D22","S",,,"London / Winnipeg, MB"
+1,1,"Bowen, Miss. Grace Scott","female",45,0,0,"PC 17608",262.3750,,"C","4",,"Cooperstown, NY"
+1,1,"Bowerman, Miss. Elsie Edith","female",22,0,1,"113505",55.0000,"E33","S","6",,"St Leonards-on-Sea, England Ohio"
+1,1,"Bradley, Mr. George (""George Arthur Brayton"")","male",,0,0,"111427",26.5500,,"S","9",,"Los Angeles, CA"
+1,0,"Brady, Mr. John Bertram","male",41,0,0,"113054",30.5000,"A21","S",,,"Pomeroy, WA"
+1,0,"Brandeis, Mr. Emil","male",48,0,0,"PC 17591",50.4958,"B10","C",,"208","Omaha, NE"
+1,0,"Brewe, Dr. Arthur Jackson","male",,0,0,"112379",39.6000,,"C",,,"Philadelphia, PA"
+1,1,"Brown, Mrs. James Joseph (Margaret Tobin)","female",44,0,0,"PC 17610",27.7208,"B4","C","6",,"Denver, CO"
+1,1,"Brown, Mrs. John Murray (Caroline Lane Lamson)","female",59,2,0,"11769",51.4792,"C101","S","D",,"Belmont, MA"
+1,1,"Bucknell, Mrs. William Robert (Emma Eliza Ward)","female",60,0,0,"11813",76.2917,"D15","C","8",,"Philadelphia, PA"
+1,1,"Burns, Miss. Elizabeth Margaret","female",41,0,0,"16966",134.5000,"E40","C","3",,
+1,0,"Butt, Major. Archibald Willingham","male",45,0,0,"113050",26.5500,"B38","S",,,"Washington, DC"
+1,0,"Cairns, Mr. Alexander","male",,0,0,"113798",31.0000,,"S",,,
+1,1,"Calderhead, Mr. Edward Pennington","male",42,0,0,"PC 17476",26.2875,"E24","S","5",,"New York, NY"
+1,1,"Candee, Mrs. Edward (Helen Churchill Hungerford)","female",53,0,0,"PC 17606",27.4458,,"C","6",,"Washington, DC"
+1,1,"Cardeza, Mr. Thomas Drake Martinez","male",36,0,1,"PC 17755",512.3292,"B51 B53 B55","C","3",,"Austria-Hungary / Germantown, Philadelphia, PA"
+1,1,"Cardeza, Mrs. James Warburton Martinez (Charlotte Wardle Drake)","female",58,0,1,"PC 17755",512.3292,"B51 B53 B55","C","3",,"Germantown, Philadelphia, PA"
+1,0,"Carlsson, Mr. Frans Olof","male",33,0,0,"695",5.0000,"B51 B53 B55","S",,,"New York, NY"
+1,0,"Carrau, Mr. Francisco M","male",28,0,0,"113059",47.1000,,"S",,,"Montevideo, Uruguay"
+1,0,"Carrau, Mr. Jose Pedro","male",17,0,0,"113059",47.1000,,"S",,,"Montevideo, Uruguay"
+1,1,"Carter, Master. William Thornton II","male",11,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
+1,1,"Carter, Miss. Lucile Polk","female",14,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
+1,1,"Carter, Mr. William Ernest","male",36,1,2,"113760",120.0000,"B96 B98","S","C",,"Bryn Mawr, PA"
+1,1,"Carter, Mrs. William Ernest (Lucile Polk)","female",36,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
+1,0,"Case, Mr. Howard Brown","male",49,0,0,"19924",26.0000,,"S",,,"Ascot, Berkshire / Rochester, NY"
+1,1,"Cassebeer, Mrs. Henry Arthur Jr (Eleanor Genevieve Fosdick)","female",,0,0,"17770",27.7208,,"C","5",,"New York, NY"
+1,0,"Cavendish, Mr. Tyrell William","male",36,1,0,"19877",78.8500,"C46","S",,"172","Little Onn Hall, Staffs"
+1,1,"Cavendish, Mrs. Tyrell William (Julia Florence Siegel)","female",76,1,0,"19877",78.8500,"C46","S","6",,"Little Onn Hall, Staffs"
+1,0,"Chaffee, Mr. Herbert Fuller","male",46,1,0,"W.E.P. 5734",61.1750,"E31","S",,,"Amenia, ND"
+1,1,"Chaffee, Mrs. Herbert Fuller (Carrie Constance Toogood)","female",47,1,0,"W.E.P. 5734",61.1750,"E31","S","4",,"Amenia, ND"
+1,1,"Chambers, Mr. Norman Campbell","male",27,1,0,"113806",53.1000,"E8","S","5",,"New York, NY / Ithaca, NY"
+1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)","female",33,1,0,"113806",53.1000,"E8","S","5",,"New York, NY / Ithaca, NY"
+1,1,"Chaudanson, Miss. Victorine","female",36,0,0,"PC 17608",262.3750,"B61","C","4",,
+1,1,"Cherry, Miss. Gladys","female",30,0,0,"110152",86.5000,"B77","S","8",,"London, England"
+1,1,"Chevre, Mr. Paul Romaine","male",45,0,0,"PC 17594",29.7000,"A9","C","7",,"Paris, France"
+1,1,"Chibnall, Mrs. (Edith Martha Bowerman)","female",,0,1,"113505",55.0000,"E33","S","6",,"St Leonards-on-Sea, England Ohio"
+1,0,"Chisholm, Mr. Roderick Robert Crispin","male",,0,0,"112051",0.0000,,"S",,,"Liverpool, England / Belfast"
+1,0,"Clark, Mr. Walter Miller","male",27,1,0,"13508",136.7792,"C89","C",,,"Los Angeles, CA"
+1,1,"Clark, Mrs. Walter Miller (Virginia McDowell)","female",26,1,0,"13508",136.7792,"C89","C","4",,"Los Angeles, CA"
+1,1,"Cleaver, Miss. Alice","female",22,0,0,"113781",151.5500,,"S","11",,
+1,0,"Clifford, Mr. George Quincy","male",,0,0,"110465",52.0000,"A14","S",,,"Stoughton, MA"
+1,0,"Colley, Mr. Edward Pomeroy","male",47,0,0,"5727",25.5875,"E58","S",,,"Victoria, BC"
+1,1,"Compton, Miss. Sara Rebecca","female",39,1,1,"PC 17756",83.1583,"E49","C","14",,"Lakewood, NJ"
+1,0,"Compton, Mr. Alexander Taylor Jr","male",37,1,1,"PC 17756",83.1583,"E52","C",,,"Lakewood, NJ"
+1,1,"Compton, Mrs. Alexander Taylor (Mary Eliza Ingersoll)","female",64,0,2,"PC 17756",83.1583,"E45","C","14",,"Lakewood, NJ"
+1,1,"Cornell, Mrs. Robert Clifford (Malvina Helen Lamson)","female",55,2,0,"11770",25.7000,"C101","S","2",,"New York, NY"
+1,0,"Crafton, Mr. John Bertram","male",,0,0,"113791",26.5500,,"S",,,"Roachdale, IN"
+1,0,"Crosby, Capt. Edward Gifford","male",70,1,1,"WE/P 5735",71.0000,"B22","S",,"269","Milwaukee, WI"
+1,1,"Crosby, Miss. Harriet R","female",36,0,2,"WE/P 5735",71.0000,"B22","S","7",,"Milwaukee, WI"
+1,1,"Crosby, Mrs. Edward Gifford (Catherine Elizabeth Halstead)","female",64,1,1,"112901",26.5500,"B26","S","7",,"Milwaukee, WI"
+1,0,"Cumings, Mr. John Bradley","male",39,1,0,"PC 17599",71.2833,"C85","C",,,"New York, NY"
+1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)","female",38,1,0,"PC 17599",71.2833,"C85","C","4",,"New York, NY"
+1,1,"Daly, Mr. Peter Denis ","male",51,0,0,"113055",26.5500,"E17","S","5 9",,"Lima, Peru"
+1,1,"Daniel, Mr. Robert Williams","male",27,0,0,"113804",30.5000,,"S","3",,"Philadelphia, PA"
+1,1,"Daniels, Miss. Sarah","female",33,0,0,"113781",151.5500,,"S","8",,
+1,0,"Davidson, Mr. Thornton","male",31,1,0,"F.C. 12750",52.0000,"B71","S",,,"Montreal, PQ"
+1,1,"Davidson, Mrs. Thornton (Orian Hays)","female",27,1,2,"F.C. 12750",52.0000,"B71","S","3",,"Montreal, PQ"
+1,1,"Dick, Mr. Albert Adrian","male",31,1,0,"17474",57.0000,"B20","S","3",,"Calgary, AB"
+1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)","female",17,1,0,"17474",57.0000,"B20","S","3",,"Calgary, AB"
+1,1,"Dodge, Dr. Washington","male",53,1,1,"33638",81.8583,"A34","S","13",,"San Francisco, CA"
+1,1,"Dodge, Master. Washington","male",4,0,2,"33638",81.8583,"A34","S","5",,"San Francisco, CA"
+1,1,"Dodge, Mrs. Washington (Ruth Vidaver)","female",54,1,1,"33638",81.8583,"A34","S","5",,"San Francisco, CA"
+1,0,"Douglas, Mr. Walter Donald","male",50,1,0,"PC 17761",106.4250,"C86","C",,"62","Deephaven, MN / Cedar Rapids, IA"
+1,1,"Douglas, Mrs. Frederick Charles (Mary Helene Baxter)","female",27,1,1,"PC 17558",247.5208,"B58 B60","C","6",,"Montreal, PQ"
+1,1,"Douglas, Mrs. Walter Donald (Mahala Dutton)","female",48,1,0,"PC 17761",106.4250,"C86","C","2",,"Deephaven, MN / Cedar Rapids, IA"
+1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")","female",48,1,0,"11755",39.6000,"A16","C","1",,"London / Paris"
+1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")","male",49,1,0,"PC 17485",56.9292,"A20","C","1",,"London / Paris"
+1,0,"Dulles, Mr. William Crothers","male",39,0,0,"PC 17580",29.7000,"A18","C",,"133","Philadelphia, PA"
+1,1,"Earnshaw, Mrs. Boulton (Olive Potter)","female",23,0,1,"11767",83.1583,"C54","C","7",,"Mt Airy, Philadelphia, PA"
+1,1,"Endres, Miss. Caroline Louise","female",38,0,0,"PC 17757",227.5250,"C45","C","4",,"New York, NY"
+1,1,"Eustis, Miss. Elizabeth Mussey","female",54,1,0,"36947",78.2667,"D20","C","4",,"Brookline, MA"
+1,0,"Evans, Miss. Edith Corse","female",36,0,0,"PC 17531",31.6792,"A29","C",,,"New York, NY"
+1,0,"Farthing, Mr. John","male",,0,0,"PC 17483",221.7792,"C95","S",,,
+1,1,"Flegenheim, Mrs. Alfred (Antoinette)","female",,0,0,"PC 17598",31.6833,,"S","7",,"New York, NY"
+1,1,"Fleming, Miss. Margaret","female",,0,0,"17421",110.8833,,"C","4",,
+1,1,"Flynn, Mr. John Irwin (""Irving"")","male",36,0,0,"PC 17474",26.3875,"E25","S","5",,"Brooklyn, NY"
+1,0,"Foreman, Mr. Benjamin Laventall","male",30,0,0,"113051",27.7500,"C111","C",,,"New York, NY"
+1,1,"Fortune, Miss. Alice Elizabeth","female",24,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
+1,1,"Fortune, Miss. Ethel Flora","female",28,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
+1,1,"Fortune, Miss. Mabel Helen","female",23,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
+1,0,"Fortune, Mr. Charles Alexander","male",19,3,2,"19950",263.0000,"C23 C25 C27","S",,,"Winnipeg, MB"
+1,0,"Fortune, Mr. Mark","male",64,1,4,"19950",263.0000,"C23 C25 C27","S",,,"Winnipeg, MB"
+1,1,"Fortune, Mrs. Mark (Mary McDougald)","female",60,1,4,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
+1,1,"Francatelli, Miss. Laura Mabel","female",30,0,0,"PC 17485",56.9292,"E36","C","1",,
+1,0,"Franklin, Mr. Thomas Parham","male",,0,0,"113778",26.5500,"D34","S",,,"Westcliff-on-Sea, Essex"
+1,1,"Frauenthal, Dr. Henry William","male",50,2,0,"PC 17611",133.6500,,"S","5",,"New York, NY"
+1,1,"Frauenthal, Mr. Isaac Gerald","male",43,1,0,"17765",27.7208,"D40","C","5",,"New York, NY"
+1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)","female",,1,0,"PC 17611",133.6500,,"S","5",,"New York, NY"
+1,1,"Frolicher, Miss. Hedwig Margaritha","female",22,0,2,"13568",49.5000,"B39","C","5",,"Zurich, Switzerland"
+1,1,"Frolicher-Stehli, Mr. Maxmillian","male",60,1,1,"13567",79.2000,"B41","C","5",,"Zurich, Switzerland"
+1,1,"Frolicher-Stehli, Mrs. Maxmillian (Margaretha Emerentia Stehli)","female",48,1,1,"13567",79.2000,"B41","C","5",,"Zurich, Switzerland"
+1,0,"Fry, Mr. Richard","male",,0,0,"112058",0.0000,"B102","S",,,
+1,0,"Futrelle, Mr. Jacques Heath","male",37,1,0,"113803",53.1000,"C123","S",,,"Scituate, MA"
+1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)","female",35,1,0,"113803",53.1000,"C123","S","D",,"Scituate, MA"
+1,0,"Gee, Mr. Arthur H","male",47,0,0,"111320",38.5000,"E63","S",,"275","St Anne's-on-Sea, Lancashire"
+1,1,"Geiger, Miss. Amalie","female",35,0,0,"113503",211.5000,"C130","C","4",,
+1,1,"Gibson, Miss. Dorothy Winifred","female",22,0,1,"112378",59.4000,,"C","7",,"New York, NY"
+1,1,"Gibson, Mrs. Leonard (Pauline C Boeson)","female",45,0,1,"112378",59.4000,,"C","7",,"New York, NY"
+1,0,"Giglio, Mr. Victor","male",24,0,0,"PC 17593",79.2000,"B86","C",,,
+1,1,"Goldenberg, Mr. Samuel L","male",49,1,0,"17453",89.1042,"C92","C","5",,"Paris, France / New York, NY"
+1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)","female",,1,0,"17453",89.1042,"C92","C","5",,"Paris, France / New York, NY"
+1,0,"Goldschmidt, Mr. George B","male",71,0,0,"PC 17754",34.6542,"A5","C",,,"New York, NY"
+1,1,"Gracie, Col. Archibald IV","male",53,0,0,"113780",28.5000,"C51","C","B",,"Washington, DC"
+1,1,"Graham, Miss. Margaret Edith","female",19,0,0,"112053",30.0000,"B42","S","3",,"Greenwich, CT"
+1,0,"Graham, Mr. George Edward","male",38,0,1,"PC 17582",153.4625,"C91","S",,"147","Winnipeg, MB"
+1,1,"Graham, Mrs. William Thompson (Edith Junkins)","female",58,0,1,"PC 17582",153.4625,"C125","S","3",,"Greenwich, CT"
+1,1,"Greenfield, Mr. William Bertram","male",23,0,1,"PC 17759",63.3583,"D10 D12","C","7",,"New York, NY"
+1,1,"Greenfield, Mrs. Leo David (Blanche Strouse)","female",45,0,1,"PC 17759",63.3583,"D10 D12","C","7",,"New York, NY"
+1,0,"Guggenheim, Mr. Benjamin","male",46,0,0,"PC 17593",79.2000,"B82 B84","C",,,"New York, NY"
+1,1,"Harder, Mr. George Achilles","male",25,1,0,"11765",55.4417,"E50","C","5",,"Brooklyn, NY"
+1,1,"Harder, Mrs. George Achilles (Dorothy Annan)","female",25,1,0,"11765",55.4417,"E50","C","5",,"Brooklyn, NY"
+1,1,"Harper, Mr. Henry Sleeper","male",48,1,0,"PC 17572",76.7292,"D33","C","3",,"New York, NY"
+1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)","female",49,1,0,"PC 17572",76.7292,"D33","C","3",,"New York, NY"
+1,0,"Harrington, Mr. Charles H","male",,0,0,"113796",42.4000,,"S",,,
+1,0,"Harris, Mr. Henry Birkhardt","male",45,1,0,"36973",83.4750,"C83","S",,,"New York, NY"
+1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)","female",35,1,0,"36973",83.4750,"C83","S","D",,"New York, NY"
+1,0,"Harrison, Mr. William","male",40,0,0,"112059",0.0000,"B94","S",,"110",
+1,1,"Hassab, Mr. Hammad","male",27,0,0,"PC 17572",76.7292,"D49","C","3",,
+1,1,"Hawksford, Mr. Walter James","male",,0,0,"16988",30.0000,"D45","S","3",,"Kingston, Surrey"
+1,1,"Hays, Miss. Margaret Bechstein","female",24,0,0,"11767",83.1583,"C54","C","7",,"New York, NY"
+1,0,"Hays, Mr. Charles Melville","male",55,1,1,"12749",93.5000,"B69","S",,"307","Montreal, PQ"
+1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)","female",52,1,1,"12749",93.5000,"B69","S","3",,"Montreal, PQ"
+1,0,"Head, Mr. Christopher","male",42,0,0,"113038",42.5000,"B11","S",,,"London / Middlesex"
+1,0,"Hilliard, Mr. Herbert Henry","male",,0,0,"17463",51.8625,"E46","S",,,"Brighton, MA"
+1,0,"Hipkins, Mr. William Edward","male",55,0,0,"680",50.0000,"C39","S",,,"London / Birmingham"
+1,1,"Hippach, Miss. Jean Gertrude","female",16,0,1,"111361",57.9792,"B18","C","4",,"Chicago, IL"
+1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)","female",44,0,1,"111361",57.9792,"B18","C","4",,"Chicago, IL"
+1,1,"Hogeboom, Mrs. John C (Anna Andrews)","female",51,1,0,"13502",77.9583,"D11","S","10",,"Hudson, NY"
+1,0,"Holverson, Mr. Alexander Oskar","male",42,1,0,"113789",52.0000,,"S",,"38","New York, NY"
+1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)","female",35,1,0,"113789",52.0000,,"S","8",,"New York, NY"
+1,1,"Homer, Mr. Harry (""Mr E Haven"")","male",35,0,0,"111426",26.5500,,"C","15",,"Indianapolis, IN"
+1,1,"Hoyt, Mr. Frederick Maxfield","male",38,1,0,"19943",90.0000,"C93","S","D",,"New York, NY / Stamford CT"
+1,0,"Hoyt, Mr. William Fisher","male",,0,0,"PC 17600",30.6958,,"C","14",,"New York, NY"
+1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)","female",35,1,0,"19943",90.0000,"C93","S","D",,"New York, NY / Stamford CT"
+1,1,"Icard, Miss. Amelie","female",38,0,0,"113572",80.0000,"B28",,"6",,
+1,0,"Isham, Miss. Ann Elizabeth","female",50,0,0,"PC 17595",28.7125,"C49","C",,,"Paris, France New York, NY"
+1,1,"Ismay, Mr. Joseph Bruce","male",49,0,0,"112058",0.0000,"B52 B54 B56","S","C",,"Liverpool"
+1,0,"Jones, Mr. Charles Cresson","male",46,0,0,"694",26.0000,,"S",,"80","Bennington, VT"
+1,0,"Julian, Mr. Henry Forbes","male",50,0,0,"113044",26.0000,"E60","S",,,"London"
+1,0,"Keeping, Mr. Edwin","male",32.5,0,0,"113503",211.5000,"C132","C",,"45",
+1,0,"Kent, Mr. Edward Austin","male",58,0,0,"11771",29.7000,"B37","C",,"258","Buffalo, NY"
+1,0,"Kenyon, Mr. Frederick R","male",41,1,0,"17464",51.8625,"D21","S",,,"Southington / Noank, CT"
+1,1,"Kenyon, Mrs. Frederick R (Marion)","female",,1,0,"17464",51.8625,"D21","S","8",,"Southington / Noank, CT"
+1,1,"Kimball, Mr. Edwin Nelson Jr","male",42,1,0,"11753",52.5542,"D19","S","5",,"Boston, MA"
+1,1,"Kimball, Mrs. Edwin Nelson Jr (Gertrude Parsons)","female",45,1,0,"11753",52.5542,"D19","S","5",,"Boston, MA"
+1,0,"Klaber, Mr. Herman","male",,0,0,"113028",26.5500,"C124","S",,,"Portland, OR"
+1,1,"Kreuchen, Miss. Emilie","female",39,0,0,"24160",211.3375,,"S","2",,
+1,1,"Leader, Dr. Alice (Farnham)","female",49,0,0,"17465",25.9292,"D17","S","8",,"New York, NY"
+1,1,"LeRoy, Miss. Bertha","female",30,0,0,"PC 17761",106.4250,,"C","2",,
+1,1,"Lesurer, Mr. Gustave J","male",35,0,0,"PC 17755",512.3292,"B101","C","3",,
+1,0,"Lewy, Mr. Ervin G","male",,0,0,"PC 17612",27.7208,,"C",,,"Chicago, IL"
+1,0,"Lindeberg-Lind, Mr. Erik Gustaf (""Mr Edward Lingrey"")","male",42,0,0,"17475",26.5500,,"S",,,"Stockholm, Sweden"
+1,1,"Lindstrom, Mrs. Carl Johan (Sigrid Posse)","female",55,0,0,"112377",27.7208,,"C","6",,"Stockholm, Sweden"
+1,1,"Lines, Miss. Mary Conover","female",16,0,1,"PC 17592",39.4000,"D28","S","9",,"Paris, France"
+1,1,"Lines, Mrs. Ernest H (Elizabeth Lindsey James)","female",51,0,1,"PC 17592",39.4000,"D28","S","9",,"Paris, France"
+1,0,"Long, Mr. Milton Clyde","male",29,0,0,"113501",30.0000,"D6","S",,"126","Springfield, MA"
+1,1,"Longley, Miss. Gretchen Fiske","female",21,0,0,"13502",77.9583,"D9","S","10",,"Hudson, NY"
+1,0,"Loring, Mr. Joseph Holland","male",30,0,0,"113801",45.5000,,"S",,,"London / New York, NY"
+1,1,"Lurette, Miss. Elise","female",58,0,0,"PC 17569",146.5208,"B80","C",,,
+1,1,"Madill, Miss. Georgette Alexandra","female",15,0,1,"24160",211.3375,"B5","S","2",,"St Louis, MO"
+1,0,"Maguire, Mr. John Edward","male",30,0,0,"110469",26.0000,"C106","S",,,"Brockton, MA"
+1,1,"Maioni, Miss. Roberta","female",16,0,0,"110152",86.5000,"B79","S","8",,
+1,1,"Marechal, Mr. Pierre","male",,0,0,"11774",29.7000,"C47","C","7",,"Paris, France"
+1,0,"Marvin, Mr. Daniel Warner","male",19,1,0,"113773",53.1000,"D30","S",,,"New York, NY"
+1,1,"Marvin, Mrs. Daniel Warner (Mary Graham Carmichael Farquarson)","female",18,1,0,"113773",53.1000,"D30","S","10",,"New York, NY"
+1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")","female",24,0,0,"PC 17482",49.5042,"C90","C","6",,"Belgium Montreal, PQ"
+1,0,"McCaffry, Mr. Thomas Francis","male",46,0,0,"13050",75.2417,"C6","C",,"292","Vancouver, BC"
+1,0,"McCarthy, Mr. Timothy J","male",54,0,0,"17463",51.8625,"E46","S",,"175","Dorchester, MA"
+1,1,"McGough, Mr. James Robert","male",36,0,0,"PC 17473",26.2875,"E25","S","7",,"Philadelphia, PA"
+1,0,"Meyer, Mr. Edgar Joseph","male",28,1,0,"PC 17604",82.1708,,"C",,,"New York, NY"
+1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)","female",,1,0,"PC 17604",82.1708,,"C","6",,"New York, NY"
+1,0,"Millet, Mr. Francis Davis","male",65,0,0,"13509",26.5500,"E38","S",,"249","East Bridgewater, MA"
+1,0,"Minahan, Dr. William Edward","male",44,2,0,"19928",90.0000,"C78","Q",,"230","Fond du Lac, WI"
+1,1,"Minahan, Miss. Daisy E","female",33,1,0,"19928",90.0000,"C78","Q","14",,"Green Bay, WI"
+1,1,"Minahan, Mrs. William Edward (Lillian E Thorpe)","female",37,1,0,"19928",90.0000,"C78","Q","14",,"Fond du Lac, WI"
+1,1,"Mock, Mr. Philipp Edmund","male",30,1,0,"13236",57.7500,"C78","C","11",,"New York, NY"
+1,0,"Molson, Mr. Harry Markland","male",55,0,0,"113787",30.5000,"C30","S",,,"Montreal, PQ"
+1,0,"Moore, Mr. Clarence Bloomfield","male",47,0,0,"113796",42.4000,,"S",,,"Washington, DC"
+1,0,"Natsch, Mr. Charles H","male",37,0,1,"PC 17596",29.7000,"C118","C",,,"Brooklyn, NY"
+1,1,"Newell, Miss. Madeleine","female",31,1,0,"35273",113.2750,"D36","C","6",,"Lexington, MA"
+1,1,"Newell, Miss. Marjorie","female",23,1,0,"35273",113.2750,"D36","C","6",,"Lexington, MA"
+1,0,"Newell, Mr. Arthur Webster","male",58,0,2,"35273",113.2750,"D48","C",,"122","Lexington, MA"
+1,1,"Newsom, Miss. Helen Monypeny","female",19,0,2,"11752",26.2833,"D47","S","5",,"New York, NY"
+1,0,"Nicholson, Mr. Arthur Ernest","male",64,0,0,"693",26.0000,,"S",,"263","Isle of Wight, England"
+1,1,"Oliva y Ocana, Dona. Fermina","female",39,0,0,"PC 17758",108.9000,"C105","C","8",,
+1,1,"Omont, Mr. Alfred Fernand","male",,0,0,"F.C. 12998",25.7417,,"C","7",,"Paris, France"
+1,1,"Ostby, Miss. Helene Ragnhild","female",22,0,1,"113509",61.9792,"B36","C","5",,"Providence, RI"
+1,0,"Ostby, Mr. Engelhart Cornelius","male",65,0,1,"113509",61.9792,"B30","C",,"234","Providence, RI"
+1,0,"Ovies y Rodriguez, Mr. Servando","male",28.5,0,0,"PC 17562",27.7208,"D43","C",,"189","?Havana, Cuba"
+1,0,"Parr, Mr. William Henry Marsh","male",,0,0,"112052",0.0000,,"S",,,"Belfast"
+1,0,"Partner, Mr. Austen","male",45.5,0,0,"113043",28.5000,"C124","S",,"166","Surbiton Hill, Surrey"
+1,0,"Payne, Mr. Vivian Ponsonby","male",23,0,0,"12749",93.5000,"B24","S",,,"Montreal, PQ"
+1,0,"Pears, Mr. Thomas Clinton","male",29,1,0,"113776",66.6000,"C2","S",,,"Isleworth, England"
+1,1,"Pears, Mrs. Thomas (Edith Wearne)","female",22,1,0,"113776",66.6000,"C2","S","8",,"Isleworth, England"
+1,0,"Penasco y Castellana, Mr. Victor de Satode","male",18,1,0,"PC 17758",108.9000,"C65","C",,,"Madrid, Spain"
+1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)","female",17,1,0,"PC 17758",108.9000,"C65","C","8",,"Madrid, Spain"
+1,1,"Perreault, Miss. Anne","female",30,0,0,"12749",93.5000,"B73","S","3",,
+1,1,"Peuchen, Major. Arthur Godfrey","male",52,0,0,"113786",30.5000,"C104","S","6",,"Toronto, ON"
+1,0,"Porter, Mr. Walter Chamberlain","male",47,0,0,"110465",52.0000,"C110","S",,"207","Worcester, MA"
+1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)","female",56,0,1,"11767",83.1583,"C50","C","7",,"Mt Airy, Philadelphia, PA"
+1,0,"Reuchlin, Jonkheer. John George","male",38,0,0,"19972",0.0000,,"S",,,"Rotterdam, Netherlands"
+1,1,"Rheims, Mr. George Alexander Lucien","male",,0,0,"PC 17607",39.6000,,"S","A",,"Paris / New York, NY"
+1,0,"Ringhini, Mr. Sante","male",22,0,0,"PC 17760",135.6333,,"C",,"232",
+1,0,"Robbins, Mr. Victor","male",,0,0,"PC 17757",227.5250,,"C",,,
+1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)","female",43,0,1,"24160",211.3375,"B3","S","2",,"St Louis, MO"
+1,0,"Roebling, Mr. Washington Augustus II","male",31,0,0,"PC 17590",50.4958,"A24","S",,,"Trenton, NJ"
+1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")","male",45,0,0,"111428",26.5500,,"S","9",,"New York, NY"
+1,0,"Rood, Mr. Hugh Roscoe","male",,0,0,"113767",50.0000,"A32","S",,,"Seattle, WA"
+1,1,"Rosenbaum, Miss. Edith Louise","female",33,0,0,"PC 17613",27.7208,"A11","C","11",,"Paris, France"
+1,0,"Rosenshine, Mr. George (""Mr George Thorne"")","male",46,0,0,"PC 17585",79.2000,,"C",,"16","New York, NY"
+1,0,"Ross, Mr. John Hugo","male",36,0,0,"13049",40.1250,"A10","C",,,"Winnipeg, MB"
+1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)","female",33,0,0,"110152",86.5000,"B77","S","8",,"London Vancouver, BC"
+1,0,"Rothschild, Mr. Martin","male",55,1,0,"PC 17603",59.4000,,"C",,,"New York, NY"
+1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)","female",54,1,0,"PC 17603",59.4000,,"C","6",,"New York, NY"
+1,0,"Rowe, Mr. Alfred G","male",33,0,0,"113790",26.5500,,"S",,"109","London"
+1,1,"Ryerson, Master. John Borie","male",13,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
+1,1,"Ryerson, Miss. Emily Borie","female",18,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
+1,1,"Ryerson, Miss. Susan Parker ""Suzette""","female",21,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
+1,0,"Ryerson, Mr. Arthur Larned","male",61,1,3,"PC 17608",262.3750,"B57 B59 B63 B66","C",,,"Haverford, PA / Cooperstown, NY"
+1,1,"Ryerson, Mrs. Arthur Larned (Emily Maria Borie)","female",48,1,3,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
+1,1,"Saalfeld, Mr. Adolphe","male",,0,0,"19988",30.5000,"C106","S","3",,"Manchester, England"
+1,1,"Sagesser, Mlle. Emma","female",24,0,0,"PC 17477",69.3000,"B35","C","9",,
+1,1,"Salomon, Mr. Abraham L","male",,0,0,"111163",26.0000,,"S","1",,"New York, NY"
+1,1,"Schabert, Mrs. Paul (Emma Mock)","female",35,1,0,"13236",57.7500,"C28","C","11",,"New York, NY"
+1,1,"Serepeca, Miss. Augusta","female",30,0,0,"113798",31.0000,,"C","4",,
+1,1,"Seward, Mr. Frederic Kimber","male",34,0,0,"113794",26.5500,,"S","7",,"New York, NY"
+1,1,"Shutes, Miss. Elizabeth W","female",40,0,0,"PC 17582",153.4625,"C125","S","3",,"New York, NY / Greenwich CT"
+1,1,"Silverthorne, Mr. Spencer Victor","male",35,0,0,"PC 17475",26.2875,"E24","S","5",,"St Louis, MO"
+1,0,"Silvey, Mr. William Baird","male",50,1,0,"13507",55.9000,"E44","S",,,"Duluth, MN"
+1,1,"Silvey, Mrs. William Baird (Alice Munger)","female",39,1,0,"13507",55.9000,"E44","S","11",,"Duluth, MN"
+1,1,"Simonius-Blumer, Col. Oberst Alfons","male",56,0,0,"13213",35.5000,"A26","C","3",,"Basel, Switzerland"
+1,1,"Sloper, Mr. William Thompson","male",28,0,0,"113788",35.5000,"A6","S","7",,"New Britain, CT"
+1,0,"Smart, Mr. John Montgomery","male",56,0,0,"113792",26.5500,,"S",,,"New York, NY"
+1,0,"Smith, Mr. James Clinch","male",56,0,0,"17764",30.6958,"A7","C",,,"St James, Long Island, NY"
+1,0,"Smith, Mr. Lucien Philip","male",24,1,0,"13695",60.0000,"C31","S",,,"Huntington, WV"
+1,0,"Smith, Mr. Richard William","male",,0,0,"113056",26.0000,"A19","S",,,"Streatham, Surrey"
+1,1,"Smith, Mrs. Lucien Philip (Mary Eloise Hughes)","female",18,1,0,"13695",60.0000,"C31","S","6",,"Huntington, WV"
+1,1,"Snyder, Mr. John Pillsbury","male",24,1,0,"21228",82.2667,"B45","S","7",,"Minneapolis, MN"
+1,1,"Snyder, Mrs. John Pillsbury (Nelle Stevenson)","female",23,1,0,"21228",82.2667,"B45","S","7",,"Minneapolis, MN"
+1,1,"Spedden, Master. Robert Douglas","male",6,0,2,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
+1,1,"Spedden, Mr. Frederic Oakley","male",45,1,1,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
+1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)","female",40,1,1,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
+1,0,"Spencer, Mr. William Augustus","male",57,1,0,"PC 17569",146.5208,"B78","C",,,"Paris, France"
+1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)","female",,1,0,"PC 17569",146.5208,"B78","C","6",,"Paris, France"
+1,1,"Stahelin-Maeglin, Dr. Max","male",32,0,0,"13214",30.5000,"B50","C","3",,"Basel, Switzerland"
+1,0,"Stead, Mr. William Thomas","male",62,0,0,"113514",26.5500,"C87","S",,,"Wimbledon Park, London / Hayling Island, Hants"
+1,1,"Stengel, Mr. Charles Emil Henry","male",54,1,0,"11778",55.4417,"C116","C","1",,"Newark, NJ"
+1,1,"Stengel, Mrs. Charles Emil Henry (Annie May Morris)","female",43,1,0,"11778",55.4417,"C116","C","5",,"Newark, NJ"
+1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)","female",52,1,0,"36947",78.2667,"D20","C","4",,"Haverford, PA"
+1,0,"Stewart, Mr. Albert A","male",,0,0,"PC 17605",27.7208,,"C",,,"Gallipolis, Ohio / ? Paris / New York"
+1,1,"Stone, Mrs. George Nelson (Martha Evelyn)","female",62,0,0,"113572",80.0000,"B28",,"6",,"Cincinatti, OH"
+1,0,"Straus, Mr. Isidor","male",67,1,0,"PC 17483",221.7792,"C55 C57","S",,"96","New York, NY"
+1,0,"Straus, Mrs. Isidor (Rosalie Ida Blun)","female",63,1,0,"PC 17483",221.7792,"C55 C57","S",,,"New York, NY"
+1,0,"Sutton, Mr. Frederick","male",61,0,0,"36963",32.3208,"D50","S",,"46","Haddenfield, NJ"
+1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)","female",48,0,0,"17466",25.9292,"D17","S","8",,"Brooklyn, NY"
+1,1,"Taussig, Miss. Ruth","female",18,0,2,"110413",79.6500,"E68","S","8",,"New York, NY"
+1,0,"Taussig, Mr. Emil","male",52,1,1,"110413",79.6500,"E67","S",,,"New York, NY"
+1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)","female",39,1,1,"110413",79.6500,"E67","S","8",,"New York, NY"
+1,1,"Taylor, Mr. Elmer Zebley","male",48,1,0,"19996",52.0000,"C126","S","5 7",,"London / East Orange, NJ"
+1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)","female",,1,0,"19996",52.0000,"C126","S","5 7",,"London / East Orange, NJ"
+1,0,"Thayer, Mr. John Borland","male",49,1,1,"17421",110.8833,"C68","C",,,"Haverford, PA"
+1,1,"Thayer, Mr. John Borland Jr","male",17,0,2,"17421",110.8833,"C70","C","B",,"Haverford, PA"
+1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)","female",39,1,1,"17421",110.8833,"C68","C","4",,"Haverford, PA"
+1,1,"Thorne, Mrs. Gertrude Maybelle","female",,0,0,"PC 17585",79.2000,,"C","D",,"New York, NY"
+1,1,"Tucker, Mr. Gilbert Milligan Jr","male",31,0,0,"2543",28.5375,"C53","C","7",,"Albany, NY"
+1,0,"Uruchurtu, Don. Manuel E","male",40,0,0,"PC 17601",27.7208,,"C",,,"Mexico City, Mexico"
+1,0,"Van der hoef, Mr. Wyckoff","male",61,0,0,"111240",33.5000,"B19","S",,"245","Brooklyn, NY"
+1,0,"Walker, Mr. William Anderson","male",47,0,0,"36967",34.0208,"D46","S",,,"East Orange, NJ"
+1,1,"Ward, Miss. Anna","female",35,0,0,"PC 17755",512.3292,,"C","3",,
+1,0,"Warren, Mr. Frank Manley","male",64,1,0,"110813",75.2500,"D37","C",,,"Portland, OR"
+1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)","female",60,1,0,"110813",75.2500,"D37","C","5",,"Portland, OR"
+1,0,"Weir, Col. John","male",60,0,0,"113800",26.5500,,"S",,,"England Salt Lake City, Utah"
+1,0,"White, Mr. Percival Wayland","male",54,0,1,"35281",77.2875,"D26","S",,,"Brunswick, ME"
+1,0,"White, Mr. Richard Frasar","male",21,0,1,"35281",77.2875,"D26","S",,"169","Brunswick, ME"
+1,1,"White, Mrs. John Stuart (Ella Holmes)","female",55,0,0,"PC 17760",135.6333,"C32","C","8",,"New York, NY / Briarcliff Manor NY"
+1,1,"Wick, Miss. Mary Natalie","female",31,0,2,"36928",164.8667,"C7","S","8",,"Youngstown, OH"
+1,0,"Wick, Mr. George Dennick","male",57,1,1,"36928",164.8667,,"S",,,"Youngstown, OH"
+1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)","female",45,1,1,"36928",164.8667,,"S","8",,"Youngstown, OH"
+1,0,"Widener, Mr. George Dunton","male",50,1,1,"113503",211.5000,"C80","C",,,"Elkins Park, PA"
+1,0,"Widener, Mr. Harry Elkins","male",27,0,2,"113503",211.5000,"C82","C",,,"Elkins Park, PA"
+1,1,"Widener, Mrs. George Dunton (Eleanor Elkins)","female",50,1,1,"113503",211.5000,"C80","C","4",,"Elkins Park, PA"
+1,1,"Willard, Miss. Constance","female",21,0,0,"113795",26.5500,,"S","8 10",,"Duluth, MN"
+1,0,"Williams, Mr. Charles Duane","male",51,0,1,"PC 17597",61.3792,,"C",,,"Geneva, Switzerland / Radnor, PA"
+1,1,"Williams, Mr. Richard Norris II","male",21,0,1,"PC 17597",61.3792,,"C","A",,"Geneva, Switzerland / Radnor, PA"
+1,0,"Williams-Lambert, Mr. Fletcher Fellows","male",,0,0,"113510",35.0000,"C128","S",,,"London, England"
+1,1,"Wilson, Miss. Helen Alice","female",31,0,0,"16966",134.5000,"E39 E41","C","3",,
+1,1,"Woolner, Mr. Hugh","male",,0,0,"19947",35.5000,"C52","S","D",,"London, England"
+1,0,"Wright, Mr. George","male",62,0,0,"113807",26.5500,,"S",,,"Halifax, NS"
+1,1,"Young, Miss. Marie Grice","female",36,0,0,"PC 17760",135.6333,"C32","C","8",,"New York, NY / Washington, DC"
+2,0,"Abelson, Mr. Samuel","male",30,1,0,"P/PP 3381",24.0000,,"C",,,"Russia New York, NY"
+2,1,"Abelson, Mrs. Samuel (Hannah Wizosky)","female",28,1,0,"P/PP 3381",24.0000,,"C","10",,"Russia New York, NY"
+2,0,"Aldworth, Mr. Charles Augustus","male",30,0,0,"248744",13.0000,,"S",,,"Bryn Mawr, PA, USA"
+2,0,"Andrew, Mr. Edgardo Samuel","male",18,0,0,"231945",11.5000,,"S",,,"Buenos Aires, Argentina / New Jersey, NJ"
+2,0,"Andrew, Mr. Frank Thomas","male",25,0,0,"C.A. 34050",10.5000,,"S",,,"Cornwall, England Houghton, MI"
+2,0,"Angle, Mr. William A","male",34,1,0,"226875",26.0000,,"S",,,"Warwick, England"
+2,1,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)","female",36,1,0,"226875",26.0000,,"S","11",,"Warwick, England"
+2,0,"Ashby, Mr. John","male",57,0,0,"244346",13.0000,,"S",,,"West Hoboken, NJ"
+2,0,"Bailey, Mr. Percy Andrew","male",18,0,0,"29108",11.5000,,"S",,,"Penzance, Cornwall / Akron, OH"
+2,0,"Baimbrigge, Mr. Charles Robert","male",23,0,0,"C.A. 31030",10.5000,,"S",,,"Guernsey"
+2,1,"Ball, Mrs. (Ada E Hall)","female",36,0,0,"28551",13.0000,"D","S","10",,"Bristol, Avon / Jacksonville, FL"
+2,0,"Banfield, Mr. Frederick James","male",28,0,0,"C.A./SOTON 34068",10.5000,,"S",,,"Plymouth, Dorset / Houghton, MI"
+2,0,"Bateman, Rev. Robert James","male",51,0,0,"S.O.P. 1166",12.5250,,"S",,"174","Jacksonville, FL"
+2,1,"Beane, Mr. Edward","male",32,1,0,"2908",26.0000,,"S","13",,"Norwich / New York, NY"
+2,1,"Beane, Mrs. Edward (Ethel Clarke)","female",19,1,0,"2908",26.0000,,"S","13",,"Norwich / New York, NY"
+2,0,"Beauchamp, Mr. Henry James","male",28,0,0,"244358",26.0000,,"S",,,"England"
+2,1,"Becker, Master. Richard F","male",1,2,1,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
+2,1,"Becker, Miss. Marion Louise","female",4,2,1,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
+2,1,"Becker, Miss. Ruth Elizabeth","female",12,2,1,"230136",39.0000,"F4","S","13",,"Guntur, India / Benton Harbour, MI"
+2,1,"Becker, Mrs. Allen Oliver (Nellie E Baumgardner)","female",36,0,3,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
+2,1,"Beesley, Mr. Lawrence","male",34,0,0,"248698",13.0000,"D56","S","13",,"London"
+2,1,"Bentham, Miss. Lilian W","female",19,0,0,"28404",13.0000,,"S","12",,"Rochester, NY"
+2,0,"Berriman, Mr. William John","male",23,0,0,"28425",13.0000,,"S",,,"St Ives, Cornwall / Calumet, MI"
+2,0,"Botsford, Mr. William Hull","male",26,0,0,"237670",13.0000,,"S",,,"Elmira, NY / Orange, NJ"
+2,0,"Bowenur, Mr. Solomon","male",42,0,0,"211535",13.0000,,"S",,,"London"
+2,0,"Bracken, Mr. James H","male",27,0,0,"220367",13.0000,,"S",,,"Lake Arthur, Chavez County, NM"
+2,1,"Brown, Miss. Amelia ""Mildred""","female",24,0,0,"248733",13.0000,"F33","S","11",,"London / Montreal, PQ"
+2,1,"Brown, Miss. Edith Eileen","female",15,0,2,"29750",39.0000,,"S","14",,"Cape Town, South Africa / Seattle, WA"
+2,0,"Brown, Mr. Thomas William Solomon","male",60,1,1,"29750",39.0000,,"S",,,"Cape Town, South Africa / Seattle, WA"
+2,1,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)","female",40,1,1,"29750",39.0000,,"S","14",,"Cape Town, South Africa / Seattle, WA"
+2,1,"Bryhl, Miss. Dagmar Jenny Ingeborg ","female",20,1,0,"236853",26.0000,,"S","12",,"Skara, Sweden / Rockford, IL"
+2,0,"Bryhl, Mr. Kurt Arnold Gottfrid","male",25,1,0,"236853",26.0000,,"S",,,"Skara, Sweden / Rockford, IL"
+2,1,"Buss, Miss. Kate","female",36,0,0,"27849",13.0000,,"S","9",,"Sittingbourne, England / San Diego, CA"
+2,0,"Butler, Mr. Reginald Fenton","male",25,0,0,"234686",13.0000,,"S",,"97","Southsea, Hants"
+2,0,"Byles, Rev. Thomas Roussel Davids","male",42,0,0,"244310",13.0000,,"S",,,"London"
+2,1,"Bystrom, Mrs. (Karolina)","female",42,0,0,"236852",13.0000,,"S",,,"New York, NY"
+2,1,"Caldwell, Master. Alden Gates","male",0.83,0,2,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
+2,1,"Caldwell, Mr. Albert Francis","male",26,1,1,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
+2,1,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)","female",22,1,1,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
+2,1,"Cameron, Miss. Clear Annie","female",35,0,0,"F.C.C. 13528",21.0000,,"S","14",,"Mamaroneck, NY"
+2,0,"Campbell, Mr. William","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
+2,0,"Carbines, Mr. William","male",19,0,0,"28424",13.0000,,"S",,"18","St Ives, Cornwall / Calumet, MI"
+2,0,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)","female",44,1,0,"244252",26.0000,,"S",,,"London"
+2,0,"Carter, Rev. Ernest Courtenay","male",54,1,0,"244252",26.0000,,"S",,,"London"
+2,0,"Chapman, Mr. Charles Henry","male",52,0,0,"248731",13.5000,,"S",,"130","Bronx, NY"
+2,0,"Chapman, Mr. John Henry","male",37,1,0,"SC/AH 29037",26.0000,,"S",,"17","Cornwall / Spokane, WA"
+2,0,"Chapman, Mrs. John Henry (Sara Elizabeth Lawry)","female",29,1,0,"SC/AH 29037",26.0000,,"S",,,"Cornwall / Spokane, WA"
+2,1,"Christy, Miss. Julie Rachel","female",25,1,1,"237789",30.0000,,"S","12",,"London"
+2,1,"Christy, Mrs. (Alice Frances)","female",45,0,2,"237789",30.0000,,"S","12",,"London"
+2,0,"Clarke, Mr. Charles Valentine","male",29,1,0,"2003",26.0000,,"S",,,"England / San Francisco, CA"
+2,1,"Clarke, Mrs. Charles V (Ada Maria Winfield)","female",28,1,0,"2003",26.0000,,"S","14",,"England / San Francisco, CA"
+2,0,"Coleridge, Mr. Reginald Charles","male",29,0,0,"W./C. 14263",10.5000,,"S",,,"Hartford, Huntingdonshire"
+2,0,"Collander, Mr. Erik Gustaf","male",28,0,0,"248740",13.0000,,"S",,,"Helsinki, Finland Ashtabula, Ohio"
+2,1,"Collett, Mr. Sidney C Stuart","male",24,0,0,"28034",10.5000,,"S","9",,"London / Fort Byron, NY"
+2,1,"Collyer, Miss. Marjorie ""Lottie""","female",8,0,2,"C.A. 31921",26.2500,,"S","14",,"Bishopstoke, Hants / Fayette Valley, ID"
+2,0,"Collyer, Mr. Harvey","male",31,1,1,"C.A. 31921",26.2500,,"S",,,"Bishopstoke, Hants / Fayette Valley, ID"
+2,1,"Collyer, Mrs. Harvey (Charlotte Annie Tate)","female",31,1,1,"C.A. 31921",26.2500,,"S","14",,"Bishopstoke, Hants / Fayette Valley, ID"
+2,1,"Cook, Mrs. (Selena Rogers)","female",22,0,0,"W./C. 14266",10.5000,"F33","S","14",,"Pennsylvania"
+2,0,"Corbett, Mrs. Walter H (Irene Colvin)","female",30,0,0,"237249",13.0000,,"S",,,"Provo, UT"
+2,0,"Corey, Mrs. Percy C (Mary Phyllis Elizabeth Miller)","female",,0,0,"F.C.C. 13534",21.0000,,"S",,,"Upper Burma, India Pittsburgh, PA"
+2,0,"Cotterill, Mr. Henry ""Harry""","male",21,0,0,"29107",11.5000,,"S",,,"Penzance, Cornwall / Akron, OH"
+2,0,"Cunningham, Mr. Alfred Fleming","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
+2,1,"Davies, Master. John Morgan Jr","male",8,1,1,"C.A. 33112",36.7500,,"S","14",,"St Ives, Cornwall / Hancock, MI"
+2,0,"Davies, Mr. Charles Henry","male",18,0,0,"S.O.C. 14879",73.5000,,"S",,,"Lyndhurst, England"
+2,1,"Davies, Mrs. John Morgan (Elizabeth Agnes Mary White) ","female",48,0,2,"C.A. 33112",36.7500,,"S","14",,"St Ives, Cornwall / Hancock, MI"
+2,1,"Davis, Miss. Mary","female",28,0,0,"237668",13.0000,,"S","13",,"London / Staten Island, NY"
+2,0,"de Brito, Mr. Jose Joaquim","male",32,0,0,"244360",13.0000,,"S",,,"Portugal / Sau Paulo, Brazil"
+2,0,"Deacon, Mr. Percy William","male",17,0,0,"S.O.C. 14879",73.5000,,"S",,,
+2,0,"del Carlo, Mr. Sebastiano","male",29,1,0,"SC/PARIS 2167",27.7208,,"C",,"295","Lucca, Italy / California"
+2,1,"del Carlo, Mrs. Sebastiano (Argenia Genovesi)","female",24,1,0,"SC/PARIS 2167",27.7208,,"C","12",,"Lucca, Italy / California"
+2,0,"Denbury, Mr. Herbert","male",25,0,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
+2,0,"Dibden, Mr. William","male",18,0,0,"S.O.C. 14879",73.5000,,"S",,,"New Forest, England"
+2,1,"Doling, Miss. Elsie","female",18,0,1,"231919",23.0000,,"S",,,"Southampton"
+2,1,"Doling, Mrs. John T (Ada Julia Bone)","female",34,0,1,"231919",23.0000,,"S",,,"Southampton"
+2,0,"Downton, Mr. William James","male",54,0,0,"28403",26.0000,,"S",,,"Holley, NY"
+2,1,"Drew, Master. Marshall Brines","male",8,0,2,"28220",32.5000,,"S","10",,"Greenport, NY"
+2,0,"Drew, Mr. James Vivian","male",42,1,1,"28220",32.5000,,"S",,,"Greenport, NY"
+2,1,"Drew, Mrs. James Vivian (Lulu Thorne Christian)","female",34,1,1,"28220",32.5000,,"S","10",,"Greenport, NY"
+2,1,"Duran y More, Miss. Asuncion","female",27,1,0,"SC/PARIS 2149",13.8583,,"C","12",,"Barcelona, Spain / Havana, Cuba"
+2,1,"Duran y More, Miss. Florentina","female",30,1,0,"SC/PARIS 2148",13.8583,,"C","12",,"Barcelona, Spain / Havana, Cuba"
+2,0,"Eitemiller, Mr. George Floyd","male",23,0,0,"29751",13.0000,,"S",,,"England / Detroit, MI"
+2,0,"Enander, Mr. Ingvar","male",21,0,0,"236854",13.0000,,"S",,,"Goteborg, Sweden / Rockford, IL"
+2,0,"Fahlstrom, Mr. Arne Jonas","male",18,0,0,"236171",13.0000,,"S",,,"Oslo, Norway Bayonne, NJ"
+2,0,"Faunthorpe, Mr. Harry","male",40,1,0,"2926",26.0000,,"S",,"286","England / Philadelphia, PA"
+2,1,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)","female",29,1,0,"2926",26.0000,,"S","16",,
+2,0,"Fillbrook, Mr. Joseph Charles","male",18,0,0,"C.A. 15185",10.5000,,"S",,,"Cornwall / Houghton, MI"
+2,0,"Fox, Mr. Stanley Hubert","male",36,0,0,"229236",13.0000,,"S",,"236","Rochester, NY"
+2,0,"Frost, Mr. Anthony Wood ""Archie""","male",,0,0,"239854",0.0000,,"S",,,"Belfast"
+2,0,"Funk, Miss. Annie Clemmer","female",38,0,0,"237671",13.0000,,"S",,,"Janjgir, India / Pennsylvania"
+2,0,"Fynney, Mr. Joseph J","male",35,0,0,"239865",26.0000,,"S",,"322","Liverpool / Montreal, PQ"
+2,0,"Gale, Mr. Harry","male",38,1,0,"28664",21.0000,,"S",,,"Cornwall / Clear Creek, CO"
+2,0,"Gale, Mr. Shadrach","male",34,1,0,"28664",21.0000,,"S",,,"Cornwall / Clear Creek, CO"
+2,1,"Garside, Miss. Ethel","female",34,0,0,"243880",13.0000,,"S","12",,"Brooklyn, NY"
+2,0,"Gaskell, Mr. Alfred","male",16,0,0,"239865",26.0000,,"S",,,"Liverpool / Montreal, PQ"
+2,0,"Gavey, Mr. Lawrence","male",26,0,0,"31028",10.5000,,"S",,,"Guernsey / Elizabeth, NJ"
+2,0,"Gilbert, Mr. William","male",47,0,0,"C.A. 30769",10.5000,,"S",,,"Cornwall"
+2,0,"Giles, Mr. Edgar","male",21,1,0,"28133",11.5000,,"S",,,"Cornwall / Camden, NJ"
+2,0,"Giles, Mr. Frederick Edward","male",21,1,0,"28134",11.5000,,"S",,,"Cornwall / Camden, NJ"
+2,0,"Giles, Mr. Ralph","male",24,0,0,"248726",13.5000,,"S",,"297","West Kensington, London"
+2,0,"Gill, Mr. John William","male",24,0,0,"233866",13.0000,,"S",,"155","Clevedon, England"
+2,0,"Gillespie, Mr. William Henry","male",34,0,0,"12233",13.0000,,"S",,,"Vancouver, BC"
+2,0,"Givard, Mr. Hans Kristensen","male",30,0,0,"250646",13.0000,,"S",,"305",
+2,0,"Greenberg, Mr. Samuel","male",52,0,0,"250647",13.0000,,"S",,"19","Bronx, NY"
+2,0,"Hale, Mr. Reginald","male",30,0,0,"250653",13.0000,,"S",,"75","Auburn, NY"
+2,1,"Hamalainen, Master. Viljo","male",0.67,1,1,"250649",14.5000,,"S","4",,"Detroit, MI"
+2,1,"Hamalainen, Mrs. William (Anna)","female",24,0,2,"250649",14.5000,,"S","4",,"Detroit, MI"
+2,0,"Harbeck, Mr. William H","male",44,0,0,"248746",13.0000,,"S",,"35","Seattle, WA / Toledo, OH"
+2,1,"Harper, Miss. Annie Jessie ""Nina""","female",6,0,1,"248727",33.0000,,"S","11",,"Denmark Hill, Surrey / Chicago"
+2,0,"Harper, Rev. John","male",28,0,1,"248727",33.0000,,"S",,,"Denmark Hill, Surrey / Chicago"
+2,1,"Harris, Mr. George","male",62,0,0,"S.W./PP 752",10.5000,,"S","15",,"London"
+2,0,"Harris, Mr. Walter","male",30,0,0,"W/C 14208",10.5000,,"S",,,"Walthamstow, England"
+2,1,"Hart, Miss. Eva Miriam","female",7,0,2,"F.C.C. 13529",26.2500,,"S","14",,"Ilford, Essex / Winnipeg, MB"
+2,0,"Hart, Mr. Benjamin","male",43,1,1,"F.C.C. 13529",26.2500,,"S",,,"Ilford, Essex / Winnipeg, MB"
+2,1,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)","female",45,1,1,"F.C.C. 13529",26.2500,,"S","14",,"Ilford, Essex / Winnipeg, MB"
+2,1,"Herman, Miss. Alice","female",24,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
+2,1,"Herman, Miss. Kate","female",24,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
+2,0,"Herman, Mr. Samuel","male",49,1,2,"220845",65.0000,,"S",,,"Somerset / Bernardsville, NJ"
+2,1,"Herman, Mrs. Samuel (Jane Laver)","female",48,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
+2,1,"Hewlett, Mrs. (Mary D Kingcome) ","female",55,0,0,"248706",16.0000,,"S","13",,"India / Rapid City, SD"
+2,0,"Hickman, Mr. Leonard Mark","male",24,2,0,"S.O.C. 14879",73.5000,,"S",,,"West Hampstead, London / Neepawa, MB"
+2,0,"Hickman, Mr. Lewis","male",32,2,0,"S.O.C. 14879",73.5000,,"S",,"256","West Hampstead, London / Neepawa, MB"
+2,0,"Hickman, Mr. Stanley George","male",21,2,0,"S.O.C. 14879",73.5000,,"S",,,"West Hampstead, London / Neepawa, MB"
+2,0,"Hiltunen, Miss. Marta","female",18,1,1,"250650",13.0000,,"S",,,"Kontiolahti, Finland / Detroit, MI"
+2,1,"Hocking, Miss. Ellen ""Nellie""","female",20,2,1,"29105",23.0000,,"S","4",,"Cornwall / Akron, OH"
+2,0,"Hocking, Mr. Richard George","male",23,2,1,"29104",11.5000,,"S",,,"Cornwall / Akron, OH"
+2,0,"Hocking, Mr. Samuel James Metcalfe","male",36,0,0,"242963",13.0000,,"S",,,"Devonport, England"
+2,1,"Hocking, Mrs. Elizabeth (Eliza Needs)","female",54,1,3,"29105",23.0000,,"S","4",,"Cornwall / Akron, OH"
+2,0,"Hodges, Mr. Henry Price","male",50,0,0,"250643",13.0000,,"S",,"149","Southampton"
+2,0,"Hold, Mr. Stephen","male",44,1,0,"26707",26.0000,,"S",,,"England / Sacramento, CA"
+2,1,"Hold, Mrs. Stephen (Annie Margaret Hill)","female",29,1,0,"26707",26.0000,,"S","10",,"England / Sacramento, CA"
+2,0,"Hood, Mr. Ambrose Jr","male",21,0,0,"S.O.C. 14879",73.5000,,"S",,,"New Forest, England"
+2,1,"Hosono, Mr. Masabumi","male",42,0,0,"237798",13.0000,,"S","10",,"Tokyo, Japan"
+2,0,"Howard, Mr. Benjamin","male",63,1,0,"24065",26.0000,,"S",,,"Swindon, England"
+2,0,"Howard, Mrs. Benjamin (Ellen Truelove Arman)","female",60,1,0,"24065",26.0000,,"S",,,"Swindon, England"
+2,0,"Hunt, Mr. George Henry","male",33,0,0,"SCO/W 1585",12.2750,,"S",,,"Philadelphia, PA"
+2,1,"Ilett, Miss. Bertha","female",17,0,0,"SO/C 14885",10.5000,,"S",,,"Guernsey"
+2,0,"Jacobsohn, Mr. Sidney Samuel","male",42,1,0,"243847",27.0000,,"S",,,"London"
+2,1,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)","female",24,2,1,"243847",27.0000,,"S","12",,"London"
+2,0,"Jarvis, Mr. John Denzil","male",47,0,0,"237565",15.0000,,"S",,,"North Evington, England"
+2,0,"Jefferys, Mr. Clifford Thomas","male",24,2,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
+2,0,"Jefferys, Mr. Ernest Wilfred","male",22,2,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
+2,0,"Jenkin, Mr. Stephen Curnow","male",32,0,0,"C.A. 33111",10.5000,,"S",,,"St Ives, Cornwall / Houghton, MI"
+2,1,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)","female",23,0,0,"SC/AH Basle 541",13.7917,"D","C","11",,"New York, NY"
+2,0,"Kantor, Mr. Sinai","male",34,1,0,"244367",26.0000,,"S",,"283","Moscow / Bronx, NY"
+2,1,"Kantor, Mrs. Sinai (Miriam Sternin)","female",24,1,0,"244367",26.0000,,"S","12",,"Moscow / Bronx, NY"
+2,0,"Karnes, Mrs. J Frank (Claire Bennett)","female",22,0,0,"F.C.C. 13534",21.0000,,"S",,,"India / Pittsburgh, PA"
+2,1,"Keane, Miss. Nora A","female",,0,0,"226593",12.3500,"E101","Q","10",,"Harrisburg, PA"
+2,0,"Keane, Mr. Daniel","male",35,0,0,"233734",12.3500,,"Q",,,
+2,1,"Kelly, Mrs. Florence ""Fannie""","female",45,0,0,"223596",13.5000,,"S","9",,"London / New York, NY"
+2,0,"Kirkland, Rev. Charles Leonard","male",57,0,0,"219533",12.3500,,"Q",,,"Glasgow / Bangor, ME"
+2,0,"Knight, Mr. Robert J","male",,0,0,"239855",0.0000,,"S",,,"Belfast"
+2,0,"Kvillner, Mr. Johan Henrik Johannesson","male",31,0,0,"C.A. 18723",10.5000,,"S",,"165","Sweden / Arlington, NJ"
+2,0,"Lahtinen, Mrs. William (Anna Sylfven)","female",26,1,1,"250651",26.0000,,"S",,,"Minneapolis, MN"
+2,0,"Lahtinen, Rev. William","male",30,1,1,"250651",26.0000,,"S",,,"Minneapolis, MN"
+2,0,"Lamb, Mr. John Joseph","male",,0,0,"240261",10.7083,,"Q",,,
+2,1,"Laroche, Miss. Louise","female",1,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
+2,1,"Laroche, Miss. Simonne Marie Anne Andree","female",3,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
+2,0,"Laroche, Mr. Joseph Philippe Lemercier","male",25,1,2,"SC/Paris 2123",41.5792,,"C",,,"Paris / Haiti"
+2,1,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)","female",22,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
+2,1,"Lehmann, Miss. Bertha","female",17,0,0,"SC 1748",12.0000,,"C","12",,"Berne, Switzerland / Central City, IA"
+2,1,"Leitch, Miss. Jessie Wills","female",,0,0,"248727",33.0000,,"S","11",,"London / Chicago, IL"
+2,1,"Lemore, Mrs. (Amelia Milley)","female",34,0,0,"C.A. 34260",10.5000,"F33","S","14",,"Chicago, IL"
+2,0,"Levy, Mr. Rene Jacques","male",36,0,0,"SC/Paris 2163",12.8750,"D","C",,,"Montreal, PQ"
+2,0,"Leyson, Mr. Robert William Norman","male",24,0,0,"C.A. 29566",10.5000,,"S",,"108",
+2,0,"Lingane, Mr. John","male",61,0,0,"235509",12.3500,,"Q",,,
+2,0,"Louch, Mr. Charles Alexander","male",50,1,0,"SC/AH 3085",26.0000,,"S",,"121","Weston-Super-Mare, Somerset"
+2,1,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)","female",42,1,0,"SC/AH 3085",26.0000,,"S",,,"Weston-Super-Mare, Somerset"
+2,0,"Mack, Mrs. (Mary)","female",57,0,0,"S.O./P.P. 3",10.5000,"E77","S",,"52","Southampton / New York, NY"
+2,0,"Malachard, Mr. Noel","male",,0,0,"237735",15.0458,"D","C",,,"Paris"
+2,1,"Mallet, Master. Andre","male",1,0,2,"S.C./PARIS 2079",37.0042,,"C","10",,"Paris / Montreal, PQ"
+2,0,"Mallet, Mr. Albert","male",31,1,1,"S.C./PARIS 2079",37.0042,,"C",,,"Paris / Montreal, PQ"
+2,1,"Mallet, Mrs. Albert (Antoinette Magnin)","female",24,1,1,"S.C./PARIS 2079",37.0042,,"C","10",,"Paris / Montreal, PQ"
+2,0,"Mangiavacchi, Mr. Serafino Emilio","male",,0,0,"SC/A.3 2861",15.5792,,"C",,,"New York, NY"
+2,0,"Matthews, Mr. William John","male",30,0,0,"28228",13.0000,,"S",,,"St Austall, Cornwall"
+2,0,"Maybery, Mr. Frank Hubert","male",40,0,0,"239059",16.0000,,"S",,,"Weston-Super-Mare / Moose Jaw, SK"
+2,0,"McCrae, Mr. Arthur Gordon","male",32,0,0,"237216",13.5000,,"S",,"209","Sydney, Australia"
+2,0,"McCrie, Mr. James Matthew","male",30,0,0,"233478",13.0000,,"S",,,"Sarnia, ON"
+2,0,"McKane, Mr. Peter David","male",46,0,0,"28403",26.0000,,"S",,,"Rochester, NY"
+2,1,"Mellinger, Miss. Madeleine Violet","female",13,0,1,"250644",19.5000,,"S","14",,"England / Bennington, VT"
+2,1,"Mellinger, Mrs. (Elizabeth Anne Maidment)","female",41,0,1,"250644",19.5000,,"S","14",,"England / Bennington, VT"
+2,1,"Mellors, Mr. William John","male",19,0,0,"SW/PP 751",10.5000,,"S","B",,"Chelsea, London"
+2,0,"Meyer, Mr. August","male",39,0,0,"248723",13.0000,,"S",,,"Harrow-on-the-Hill, Middlesex"
+2,0,"Milling, Mr. Jacob Christian","male",48,0,0,"234360",13.0000,,"S",,"271","Copenhagen, Denmark"
+2,0,"Mitchell, Mr. Henry Michael","male",70,0,0,"C.A. 24580",10.5000,,"S",,,"Guernsey / Montclair, NJ and/or Toledo, Ohio"
+2,0,"Montvila, Rev. Juozas","male",27,0,0,"211536",13.0000,,"S",,,"Worcester, MA"
+2,0,"Moraweck, Dr. Ernest","male",54,0,0,"29011",14.0000,,"S",,,"Frankfort, KY"
+2,0,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")","male",39,0,0,"250655",26.0000,,"S",,,
+2,0,"Mudd, Mr. Thomas Charles","male",16,0,0,"S.O./P.P. 3",10.5000,,"S",,,"Halesworth, England"
+2,0,"Myles, Mr. Thomas Francis","male",62,0,0,"240276",9.6875,,"Q",,,"Cambridge, MA"
+2,0,"Nasser, Mr. Nicholas","male",32.5,1,0,"237736",30.0708,,"C",,"43","New York, NY"
+2,1,"Nasser, Mrs. Nicholas (Adele Achem)","female",14,1,0,"237736",30.0708,,"C",,,"New York, NY"
+2,1,"Navratil, Master. Edmond Roger","male",2,1,1,"230080",26.0000,"F2","S","D",,"Nice, France"
+2,1,"Navratil, Master. Michel M","male",3,1,1,"230080",26.0000,"F2","S","D",,"Nice, France"
+2,0,"Navratil, Mr. Michel (""Louis M Hoffman"")","male",36.5,0,2,"230080",26.0000,"F2","S",,"15","Nice, France"
+2,0,"Nesson, Mr. Israel","male",26,0,0,"244368",13.0000,"F2","S",,,"Boston, MA"
+2,0,"Nicholls, Mr. Joseph Charles","male",19,1,1,"C.A. 33112",36.7500,,"S",,"101","Cornwall / Hancock, MI"
+2,0,"Norman, Mr. Robert Douglas","male",28,0,0,"218629",13.5000,,"S",,"287","Glasgow"
+2,1,"Nourney, Mr. Alfred (""Baron von Drachstedt"")","male",20,0,0,"SC/PARIS 2166",13.8625,"D38","C","7",,"Cologne, Germany"
+2,1,"Nye, Mrs. (Elizabeth Ramell)","female",29,0,0,"C.A. 29395",10.5000,"F33","S","11",,"Folkstone, Kent / New York, NY"
+2,0,"Otter, Mr. Richard","male",39,0,0,"28213",13.0000,,"S",,,"Middleburg Heights, OH"
+2,1,"Oxenham, Mr. Percy Thomas","male",22,0,0,"W./C. 14260",10.5000,,"S","13",,"Pondersend, England / New Durham, NJ"
+2,1,"Padro y Manent, Mr. Julian","male",,0,0,"SC/PARIS 2146",13.8625,,"C","9",,"Spain / Havana, Cuba"
+2,0,"Pain, Dr. Alfred","male",23,0,0,"244278",10.5000,,"S",,,"Hamilton, ON"
+2,1,"Pallas y Castello, Mr. Emilio","male",29,0,0,"SC/PARIS 2147",13.8583,,"C","9",,"Spain / Havana, Cuba"
+2,0,"Parker, Mr. Clifford Richard","male",28,0,0,"SC 14888",10.5000,,"S",,,"St Andrews, Guernsey"
+2,0,"Parkes, Mr. Francis ""Frank""","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
+2,1,"Parrish, Mrs. (Lutie Davis)","female",50,0,1,"230433",26.0000,,"S","12",,"Woodford County, KY"
+2,0,"Pengelly, Mr. Frederick William","male",19,0,0,"28665",10.5000,,"S",,,"Gunnislake, England / Butte, MT"
+2,0,"Pernot, Mr. Rene","male",,0,0,"SC/PARIS 2131",15.0500,,"C",,,
+2,0,"Peruschitz, Rev. Joseph Maria","male",41,0,0,"237393",13.0000,,"S",,,
+2,1,"Phillips, Miss. Alice Frances Louisa","female",21,0,1,"S.O./P.P. 2",21.0000,,"S","12",,"Ilfracombe, Devon"
+2,1,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")","female",19,0,0,"250655",26.0000,,"S","11",,"Worcester, England"
+2,0,"Phillips, Mr. Escott Robert","male",43,0,1,"S.O./P.P. 2",21.0000,,"S",,,"Ilfracombe, Devon"
+2,1,"Pinsky, Mrs. (Rosa)","female",32,0,0,"234604",13.0000,,"S","9",,"Russia"
+2,0,"Ponesell, Mr. Martin","male",34,0,0,"250647",13.0000,,"S",,,"Denmark / New York, NY"
+2,1,"Portaluppi, Mr. Emilio Ilario Giuseppe","male",30,0,0,"C.A. 34644",12.7375,,"C","14",,"Milford, NH"
+2,0,"Pulbaum, Mr. Franz","male",27,0,0,"SC/PARIS 2168",15.0333,,"C",,,"Paris"
+2,1,"Quick, Miss. Phyllis May","female",2,1,1,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
+2,1,"Quick, Miss. Winifred Vera","female",8,1,1,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
+2,1,"Quick, Mrs. Frederick Charles (Jane Richards)","female",33,0,2,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
+2,0,"Reeves, Mr. David","male",36,0,0,"C.A. 17248",10.5000,,"S",,,"Brighton, Sussex"
+2,0,"Renouf, Mr. Peter Henry","male",34,1,0,"31027",21.0000,,"S","12",,"Elizabeth, NJ"
+2,1,"Renouf, Mrs. Peter Henry (Lillian Jefferys)","female",30,3,0,"31027",21.0000,,"S",,,"Elizabeth, NJ"
+2,1,"Reynaldo, Ms. Encarnacion","female",28,0,0,"230434",13.0000,,"S","9",,"Spain"
+2,0,"Richard, Mr. Emile","male",23,0,0,"SC/PARIS 2133",15.0458,,"C",,,"Paris / Montreal, PQ"
+2,1,"Richards, Master. George Sibley","male",0.83,1,1,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
+2,1,"Richards, Master. William Rowe","male",3,1,1,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
+2,1,"Richards, Mrs. Sidney (Emily Hocking)","female",24,2,3,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
+2,1,"Ridsdale, Miss. Lucy","female",50,0,0,"W./C. 14258",10.5000,,"S","13",,"London, England / Marietta, Ohio and Milwaukee, WI"
+2,0,"Rogers, Mr. Reginald Harry","male",19,0,0,"28004",10.5000,,"S",,,
+2,1,"Rugg, Miss. Emily","female",21,0,0,"C.A. 31026",10.5000,,"S","12",,"Guernsey / Wilmington, DE"
+2,0,"Schmidt, Mr. August","male",26,0,0,"248659",13.0000,,"S",,,"Newark, NJ"
+2,0,"Sedgwick, Mr. Charles Frederick Waddington","male",25,0,0,"244361",13.0000,,"S",,,"Liverpool"
+2,0,"Sharp, Mr. Percival James R","male",27,0,0,"244358",26.0000,,"S",,,"Hornsey, England"
+2,1,"Shelley, Mrs. William (Imanita Parrish Hall)","female",25,0,1,"230433",26.0000,,"S","12",,"Deer Lodge, MT"
+2,1,"Silven, Miss. Lyyli Karoliina","female",18,0,2,"250652",13.0000,,"S","16",,"Finland / Minneapolis, MN"
+2,1,"Sincock, Miss. Maude","female",20,0,0,"C.A. 33112",36.7500,,"S","11",,"Cornwall / Hancock, MI"
+2,1,"Sinkkonen, Miss. Anna","female",30,0,0,"250648",13.0000,,"S","10",,"Finland / Washington, DC"
+2,0,"Sjostedt, Mr. Ernst Adolf","male",59,0,0,"237442",13.5000,,"S",,,"Sault St Marie, ON"
+2,1,"Slayter, Miss. Hilda Mary","female",30,0,0,"234818",12.3500,,"Q","13",,"Halifax, NS"
+2,0,"Slemen, Mr. Richard James","male",35,0,0,"28206",10.5000,,"S",,,"Cornwall"
+2,1,"Smith, Miss. Marion Elsie","female",40,0,0,"31418",13.0000,,"S","9",,
+2,0,"Sobey, Mr. Samuel James Hayden","male",25,0,0,"C.A. 29178",13.0000,,"S",,,"Cornwall / Houghton, MI"
+2,0,"Stanton, Mr. Samuel Ward","male",41,0,0,"237734",15.0458,,"C",,,"New York, NY"
+2,0,"Stokes, Mr. Philip Joseph","male",25,0,0,"F.C.C. 13540",10.5000,,"S",,"81","Catford, Kent / Detroit, MI"
+2,0,"Swane, Mr. George","male",18.5,0,0,"248734",13.0000,"F","S",,"294",
+2,0,"Sweet, Mr. George Frederick","male",14,0,0,"220845",65.0000,,"S",,,"Somerset / Bernardsville, NJ"
+2,1,"Toomey, Miss. Ellen","female",50,0,0,"F.C.C. 13531",10.5000,,"S","9",,"Indianapolis, IN"
+2,0,"Troupiansky, Mr. Moses Aaron","male",23,0,0,"233639",13.0000,,"S",,,
+2,1,"Trout, Mrs. William H (Jessie L)","female",28,0,0,"240929",12.6500,,"S",,,"Columbus, OH"
+2,1,"Troutt, Miss. Edwina Celia ""Winnie""","female",27,0,0,"34218",10.5000,"E101","S","16",,"Bath, England / Massachusetts"
+2,0,"Turpin, Mr. William John Robert","male",29,1,0,"11668",21.0000,,"S",,,"Plymouth, England"
+2,0,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)","female",27,1,0,"11668",21.0000,,"S",,,"Plymouth, England"
+2,0,"Veal, Mr. James","male",40,0,0,"28221",13.0000,,"S",,,"Barre, Co Washington, VT"
+2,1,"Walcroft, Miss. Nellie","female",31,0,0,"F.C.C. 13528",21.0000,,"S","14",,"Mamaroneck, NY"
+2,0,"Ware, Mr. John James","male",30,1,0,"CA 31352",21.0000,,"S",,,"Bristol, England / New Britain, CT"
+2,0,"Ware, Mr. William Jeffery","male",23,1,0,"28666",10.5000,,"S",,,
+2,1,"Ware, Mrs. John James (Florence Louise Long)","female",31,0,0,"CA 31352",21.0000,,"S","10",,"Bristol, England / New Britain, CT"
+2,0,"Watson, Mr. Ennis Hastings","male",,0,0,"239856",0.0000,,"S",,,"Belfast"
+2,1,"Watt, Miss. Bertha J","female",12,0,0,"C.A. 33595",15.7500,,"S","9",,"Aberdeen / Portland, OR"
+2,1,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)","female",40,0,0,"C.A. 33595",15.7500,,"S","9",,"Aberdeen / Portland, OR"
+2,1,"Webber, Miss. Susan","female",32.5,0,0,"27267",13.0000,"E101","S","12",,"England / Hartford, CT"
+2,0,"Weisz, Mr. Leopold","male",27,1,0,"228414",26.0000,,"S",,"293","Bromsgrove, England / Montreal, PQ"
+2,1,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)","female",29,1,0,"228414",26.0000,,"S","10",,"Bromsgrove, England / Montreal, PQ"
+2,1,"Wells, Master. Ralph Lester","male",2,1,1,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
+2,1,"Wells, Miss. Joan","female",4,1,1,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
+2,1,"Wells, Mrs. Arthur Henry (""Addie"" Dart Trevaskis)","female",29,0,2,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
+2,1,"West, Miss. Barbara J","female",0.92,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
+2,1,"West, Miss. Constance Mirium","female",5,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
+2,0,"West, Mr. Edwy Arthur","male",36,1,2,"C.A. 34651",27.7500,,"S",,,"Bournmouth, England"
+2,1,"West, Mrs. Edwy Arthur (Ada Mary Worth)","female",33,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
+2,0,"Wheadon, Mr. Edward H","male",66,0,0,"C.A. 24579",10.5000,,"S",,,"Guernsey, England / Edgewood, RI"
+2,0,"Wheeler, Mr. Edwin ""Frederick""","male",,0,0,"SC/PARIS 2159",12.8750,,"S",,,
+2,1,"Wilhelms, Mr. Charles","male",31,0,0,"244270",13.0000,,"S","9",,"London, England"
+2,1,"Williams, Mr. Charles Eugene","male",,0,0,"244373",13.0000,,"S","14",,"Harrow, England"
+2,1,"Wright, Miss. Marion","female",26,0,0,"220844",13.5000,,"S","9",,"Yoevil, England / Cottage Grove, OR"
+2,0,"Yrois, Miss. Henriette (""Mrs Harbeck"")","female",24,0,0,"248747",13.0000,,"S",,,"Paris"
+3,0,"Abbing, Mr. Anthony","male",42,0,0,"C.A. 5547",7.5500,,"S",,,
+3,0,"Abbott, Master. Eugene Joseph","male",13,0,2,"C.A. 2673",20.2500,,"S",,,"East Providence, RI"
+3,0,"Abbott, Mr. Rossmore Edward","male",16,1,1,"C.A. 2673",20.2500,,"S",,"190","East Providence, RI"
+3,1,"Abbott, Mrs. Stanton (Rosa Hunt)","female",35,1,1,"C.A. 2673",20.2500,,"S","A",,"East Providence, RI"
+3,1,"Abelseth, Miss. Karen Marie","female",16,0,0,"348125",7.6500,,"S","16",,"Norway Los Angeles, CA"
+3,1,"Abelseth, Mr. Olaus Jorgensen","male",25,0,0,"348122",7.6500,"F G63","S","A",,"Perkins County, SD"
+3,1,"Abrahamsson, Mr. Abraham August Johannes","male",20,0,0,"SOTON/O2 3101284",7.9250,,"S","15",,"Taalintehdas, Finland Hoboken, NJ"
+3,1,"Abrahim, Mrs. Joseph (Sophie Halaut Easu)","female",18,0,0,"2657",7.2292,,"C","C",,"Greensburg, PA"
+3,0,"Adahl, Mr. Mauritz Nils Martin","male",30,0,0,"C 7076",7.2500,,"S",,"72","Asarum, Sweden Brooklyn, NY"
+3,0,"Adams, Mr. John","male",26,0,0,"341826",8.0500,,"S",,"103","Bournemouth, England"
+3,0,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)","female",40,1,0,"7546",9.4750,,"S",,,"Sweden Akeley, MN"
+3,1,"Aks, Master. Philip Frank","male",0.83,0,1,"392091",9.3500,,"S","11",,"London, England Norfolk, VA"
+3,1,"Aks, Mrs. Sam (Leah Rosen)","female",18,0,1,"392091",9.3500,,"S","13",,"London, England Norfolk, VA"
+3,1,"Albimona, Mr. Nassef Cassem","male",26,0,0,"2699",18.7875,,"C","15",,"Syria Fredericksburg, VA"
+3,0,"Alexander, Mr. William","male",26,0,0,"3474",7.8875,,"S",,,"England Albion, NY"
+3,0,"Alhomaki, Mr. Ilmari Rudolf","male",20,0,0,"SOTON/O2 3101287",7.9250,,"S",,,"Salo, Finland Astoria, OR"
+3,0,"Ali, Mr. Ahmed","male",24,0,0,"SOTON/O.Q. 3101311",7.0500,,"S",,,
+3,0,"Ali, Mr. William","male",25,0,0,"SOTON/O.Q. 3101312",7.0500,,"S",,"79","Argentina"
+3,0,"Allen, Mr. William Henry","male",35,0,0,"373450",8.0500,,"S",,,"Lower Clapton, Middlesex or Erdington, Birmingham"
+3,0,"Allum, Mr. Owen George","male",18,0,0,"2223",8.3000,,"S",,"259","Windsor, England New York, NY"
+3,0,"Andersen, Mr. Albert Karvin","male",32,0,0,"C 4001",22.5250,,"S",,"260","Bergen, Norway"
+3,1,"Andersen-Jensen, Miss. Carla Christine Nielsine","female",19,1,0,"350046",7.8542,,"S","16",,
+3,0,"Andersson, Master. Sigvard Harald Elias","male",4,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andersson, Miss. Ebba Iris Alfrida","female",6,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andersson, Miss. Ellis Anna Maria","female",2,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,1,"Andersson, Miss. Erna Alexandra","female",17,4,2,"3101281",7.9250,,"S","D",,"Ruotsinphyhtaa, Finland New York, NY"
+3,0,"Andersson, Miss. Ida Augusta Margareta","female",38,4,2,"347091",7.7750,,"S",,,"Vadsbro, Sweden Ministee, MI"
+3,0,"Andersson, Miss. Ingeborg Constanzia","female",9,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andersson, Miss. Sigrid Elisabeth","female",11,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andersson, Mr. Anders Johan","male",39,1,5,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,1,"Andersson, Mr. August Edvard (""Wennerstrom"")","male",27,0,0,"350043",7.7958,,"S","A",,
+3,0,"Andersson, Mr. Johan Samuel","male",26,0,0,"347075",7.7750,,"S",,,"Hartford, CT"
+3,0,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)","female",39,1,5,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andreasson, Mr. Paul Edvin","male",20,0,0,"347466",7.8542,,"S",,,"Sweden Chicago, IL"
+3,0,"Angheloff, Mr. Minko","male",26,0,0,"349202",7.8958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Arnold-Franchi, Mr. Josef","male",25,1,0,"349237",17.8000,,"S",,,"Altdorf, Switzerland"
+3,0,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)","female",18,1,0,"349237",17.8000,,"S",,,"Altdorf, Switzerland"
+3,0,"Aronsson, Mr. Ernst Axel Algot","male",24,0,0,"349911",7.7750,,"S",,,"Sweden Joliet, IL"
+3,0,"Asim, Mr. Adola","male",35,0,0,"SOTON/O.Q. 3101310",7.0500,,"S",,,
+3,0,"Asplund, Master. Carl Edgar","male",5,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
+3,0,"Asplund, Master. Clarence Gustaf Hugo","male",9,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
+3,1,"Asplund, Master. Edvin Rojj Felix","male",3,4,2,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
+3,0,"Asplund, Master. Filip Oscar","male",13,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
+3,1,"Asplund, Miss. Lillian Gertrud","female",5,4,2,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
+3,0,"Asplund, Mr. Carl Oscar Vilhelm Gustafsson","male",40,1,5,"347077",31.3875,,"S",,"142","Sweden Worcester, MA"
+3,1,"Asplund, Mr. Johan Charles","male",23,0,0,"350054",7.7958,,"S","13",,"Oskarshamn, Sweden Minneapolis, MN"
+3,1,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)","female",38,1,5,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
+3,1,"Assaf Khalil, Mrs. Mariana (""Miriam"")","female",45,0,0,"2696",7.2250,,"C","C",,"Ottawa, ON"
+3,0,"Assaf, Mr. Gerios","male",21,0,0,"2692",7.2250,,"C",,,"Ottawa, ON"
+3,0,"Assam, Mr. Ali","male",23,0,0,"SOTON/O.Q. 3101309",7.0500,,"S",,,
+3,0,"Attalah, Miss. Malake","female",17,0,0,"2627",14.4583,,"C",,,
+3,0,"Attalah, Mr. Sleiman","male",30,0,0,"2694",7.2250,,"C",,,"Ottawa, ON"
+3,0,"Augustsson, Mr. Albert","male",23,0,0,"347468",7.8542,,"S",,,"Krakoryd, Sweden Bloomington, IL"
+3,1,"Ayoub, Miss. Banoura","female",13,0,0,"2687",7.2292,,"C","C",,"Syria Youngstown, OH"
+3,0,"Baccos, Mr. Raffull","male",20,0,0,"2679",7.2250,,"C",,,
+3,0,"Backstrom, Mr. Karl Alfred","male",32,1,0,"3101278",15.8500,,"S","D",,"Ruotsinphytaa, Finland New York, NY"
+3,1,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)","female",33,3,0,"3101278",15.8500,,"S",,,"Ruotsinphytaa, Finland New York, NY"
+3,1,"Baclini, Miss. Eugenie","female",0.75,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
+3,1,"Baclini, Miss. Helene Barbara","female",0.75,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
+3,1,"Baclini, Miss. Marie Catherine","female",5,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
+3,1,"Baclini, Mrs. Solomon (Latifa Qurban)","female",24,0,3,"2666",19.2583,,"C","C",,"Syria New York, NY"
+3,1,"Badman, Miss. Emily Louisa","female",18,0,0,"A/4 31416",8.0500,,"S","C",,"London Skanteales, NY"
+3,0,"Badt, Mr. Mohamed","male",40,0,0,"2623",7.2250,,"C",,,
+3,0,"Balkic, Mr. Cerin","male",26,0,0,"349248",7.8958,,"S",,,
+3,1,"Barah, Mr. Hanna Assi","male",20,0,0,"2663",7.2292,,"C","15",,
+3,0,"Barbara, Miss. Saiide","female",18,0,1,"2691",14.4542,,"C",,,"Syria Ottawa, ON"
+3,0,"Barbara, Mrs. (Catherine David)","female",45,0,1,"2691",14.4542,,"C",,,"Syria Ottawa, ON"
+3,0,"Barry, Miss. Julia","female",27,0,0,"330844",7.8792,,"Q",,,"New York, NY"
+3,0,"Barton, Mr. David John","male",22,0,0,"324669",8.0500,,"S",,,"England New York, NY"
+3,0,"Beavan, Mr. William Thomas","male",19,0,0,"323951",8.0500,,"S",,,"England"
+3,0,"Bengtsson, Mr. John Viktor","male",26,0,0,"347068",7.7750,,"S",,,"Krakudden, Sweden Moune, IL"
+3,0,"Berglund, Mr. Karl Ivar Sven","male",22,0,0,"PP 4348",9.3500,,"S",,,"Tranvik, Finland New York"
+3,0,"Betros, Master. Seman","male",,0,0,"2622",7.2292,,"C",,,
+3,0,"Betros, Mr. Tannous","male",20,0,0,"2648",4.0125,,"C",,,"Syria"
+3,1,"Bing, Mr. Lee","male",32,0,0,"1601",56.4958,,"S","C",,"Hong Kong New York, NY"
+3,0,"Birkeland, Mr. Hans Martin Monsen","male",21,0,0,"312992",7.7750,,"S",,,"Brennes, Norway New York"
+3,0,"Bjorklund, Mr. Ernst Herbert","male",18,0,0,"347090",7.7500,,"S",,,"Stockholm, Sweden New York"
+3,0,"Bostandyeff, Mr. Guentcho","male",26,0,0,"349224",7.8958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Boulos, Master. Akar","male",6,1,1,"2678",15.2458,,"C",,,"Syria Kent, ON"
+3,0,"Boulos, Miss. Nourelain","female",9,1,1,"2678",15.2458,,"C",,,"Syria Kent, ON"
+3,0,"Boulos, Mr. Hanna","male",,0,0,"2664",7.2250,,"C",,,"Syria"
+3,0,"Boulos, Mrs. Joseph (Sultana)","female",,0,2,"2678",15.2458,,"C",,,"Syria Kent, ON"
+3,0,"Bourke, Miss. Mary","female",,0,2,"364848",7.7500,,"Q",,,"Ireland Chicago, IL"
+3,0,"Bourke, Mr. John","male",40,1,1,"364849",15.5000,,"Q",,,"Ireland Chicago, IL"
+3,0,"Bourke, Mrs. John (Catherine)","female",32,1,1,"364849",15.5000,,"Q",,,"Ireland Chicago, IL"
+3,0,"Bowen, Mr. David John ""Dai""","male",21,0,0,"54636",16.1000,,"S",,,"Treherbert, Cardiff, Wales"
+3,1,"Bradley, Miss. Bridget Delia","female",22,0,0,"334914",7.7250,,"Q","13",,"Kingwilliamstown, Co Cork, Ireland Glens Falls, NY"
+3,0,"Braf, Miss. Elin Ester Maria","female",20,0,0,"347471",7.8542,,"S",,,"Medeltorp, Sweden Chicago, IL"
+3,0,"Braund, Mr. Lewis Richard","male",29,1,0,"3460",7.0458,,"S",,,"Bridgerule, Devon"
+3,0,"Braund, Mr. Owen Harris","male",22,1,0,"A/5 21171",7.2500,,"S",,,"Bridgerule, Devon"
+3,0,"Brobeck, Mr. Karl Rudolf","male",22,0,0,"350045",7.7958,,"S",,,"Sweden Worcester, MA"
+3,0,"Brocklebank, Mr. William Alfred","male",35,0,0,"364512",8.0500,,"S",,,"Broomfield, Chelmsford, England"
+3,0,"Buckley, Miss. Katherine","female",18.5,0,0,"329944",7.2833,,"Q",,"299","Co Cork, Ireland Roxbury, MA"
+3,1,"Buckley, Mr. Daniel","male",21,0,0,"330920",7.8208,,"Q","13",,"Kingwilliamstown, Co Cork, Ireland New York, NY"
+3,0,"Burke, Mr. Jeremiah","male",19,0,0,"365222",6.7500,,"Q",,,"Co Cork, Ireland Charlestown, MA"
+3,0,"Burns, Miss. Mary Delia","female",18,0,0,"330963",7.8792,,"Q",,,"Co Sligo, Ireland New York, NY"
+3,0,"Cacic, Miss. Manda","female",21,0,0,"315087",8.6625,,"S",,,
+3,0,"Cacic, Miss. Marija","female",30,0,0,"315084",8.6625,,"S",,,
+3,0,"Cacic, Mr. Jego Grga","male",18,0,0,"315091",8.6625,,"S",,,
+3,0,"Cacic, Mr. Luka","male",38,0,0,"315089",8.6625,,"S",,,"Croatia"
+3,0,"Calic, Mr. Jovo","male",17,0,0,"315093",8.6625,,"S",,,
+3,0,"Calic, Mr. Petar","male",17,0,0,"315086",8.6625,,"S",,,
+3,0,"Canavan, Miss. Mary","female",21,0,0,"364846",7.7500,,"Q",,,
+3,0,"Canavan, Mr. Patrick","male",21,0,0,"364858",7.7500,,"Q",,,"Ireland Philadelphia, PA"
+3,0,"Cann, Mr. Ernest Charles","male",21,0,0,"A./5. 2152",8.0500,,"S",,,
+3,0,"Caram, Mr. Joseph","male",,1,0,"2689",14.4583,,"C",,,"Ottawa, ON"
+3,0,"Caram, Mrs. Joseph (Maria Elias)","female",,1,0,"2689",14.4583,,"C",,,"Ottawa, ON"
+3,0,"Carlsson, Mr. August Sigfrid","male",28,0,0,"350042",7.7958,,"S",,,"Dagsas, Sweden Fower, MN"
+3,0,"Carlsson, Mr. Carl Robert","male",24,0,0,"350409",7.8542,,"S",,,"Goteborg, Sweden Huntley, IL"
+3,1,"Carr, Miss. Helen ""Ellen""","female",16,0,0,"367231",7.7500,,"Q","16",,"Co Longford, Ireland New York, NY"
+3,0,"Carr, Miss. Jeannie","female",37,0,0,"368364",7.7500,,"Q",,,"Co Sligo, Ireland Hartford, CT"
+3,0,"Carver, Mr. Alfred John","male",28,0,0,"392095",7.2500,,"S",,,"St Denys, Southampton, Hants"
+3,0,"Celotti, Mr. Francesco","male",24,0,0,"343275",8.0500,,"S",,,"London"
+3,0,"Charters, Mr. David","male",21,0,0,"A/5. 13032",7.7333,,"Q",,,"Ireland New York, NY"
+3,1,"Chip, Mr. Chang","male",32,0,0,"1601",56.4958,,"S","C",,"Hong Kong New York, NY"
+3,0,"Christmann, Mr. Emil","male",29,0,0,"343276",8.0500,,"S",,,
+3,0,"Chronopoulos, Mr. Apostolos","male",26,1,0,"2680",14.4542,,"C",,,"Greece"
+3,0,"Chronopoulos, Mr. Demetrios","male",18,1,0,"2680",14.4542,,"C",,,"Greece"
+3,0,"Coelho, Mr. Domingos Fernandeo","male",20,0,0,"SOTON/O.Q. 3101307",7.0500,,"S",,,"Portugal"
+3,1,"Cohen, Mr. Gurshon ""Gus""","male",18,0,0,"A/5 3540",8.0500,,"S","12",,"London Brooklyn, NY"
+3,0,"Colbert, Mr. Patrick","male",24,0,0,"371109",7.2500,,"Q",,,"Co Limerick, Ireland Sherbrooke, PQ"
+3,0,"Coleff, Mr. Peju","male",36,0,0,"349210",7.4958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Coleff, Mr. Satio","male",24,0,0,"349209",7.4958,,"S",,,
+3,0,"Conlon, Mr. Thomas Henry","male",31,0,0,"21332",7.7333,,"Q",,,"Philadelphia, PA"
+3,0,"Connaghton, Mr. Michael","male",31,0,0,"335097",7.7500,,"Q",,,"Ireland Brooklyn, NY"
+3,1,"Connolly, Miss. Kate","female",22,0,0,"370373",7.7500,,"Q","13",,"Ireland"
+3,0,"Connolly, Miss. Kate","female",30,0,0,"330972",7.6292,,"Q",,,"Ireland"
+3,0,"Connors, Mr. Patrick","male",70.5,0,0,"370369",7.7500,,"Q",,"171",
+3,0,"Cook, Mr. Jacob","male",43,0,0,"A/5 3536",8.0500,,"S",,,
+3,0,"Cor, Mr. Bartol","male",35,0,0,"349230",7.8958,,"S",,,"Austria"
+3,0,"Cor, Mr. Ivan","male",27,0,0,"349229",7.8958,,"S",,,"Austria"
+3,0,"Cor, Mr. Liudevit","male",19,0,0,"349231",7.8958,,"S",,,"Austria"
+3,0,"Corn, Mr. Harry","male",30,0,0,"SOTON/OQ 392090",8.0500,,"S",,,"London"
+3,1,"Coutts, Master. Eden Leslie ""Neville""","male",9,1,1,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
+3,1,"Coutts, Master. William Loch ""William""","male",3,1,1,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
+3,1,"Coutts, Mrs. William (Winnie ""Minnie"" Treanor)","female",36,0,2,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
+3,0,"Coxon, Mr. Daniel","male",59,0,0,"364500",7.2500,,"S",,,"Merrill, WI"
+3,0,"Crease, Mr. Ernest James","male",19,0,0,"S.P. 3464",8.1583,,"S",,,"Bristol, England Cleveland, OH"
+3,1,"Cribb, Miss. Laura Alice","female",17,0,1,"371362",16.1000,,"S","12",,"Bournemouth, England Newark, NJ"
+3,0,"Cribb, Mr. John Hatfield","male",44,0,1,"371362",16.1000,,"S",,,"Bournemouth, England Newark, NJ"
+3,0,"Culumovic, Mr. Jeso","male",17,0,0,"315090",8.6625,,"S",,,"Austria-Hungary"
+3,0,"Daher, Mr. Shedid","male",22.5,0,0,"2698",7.2250,,"C",,"9",
+3,1,"Dahl, Mr. Karl Edwart","male",45,0,0,"7598",8.0500,,"S","15",,"Australia Fingal, ND"
+3,0,"Dahlberg, Miss. Gerda Ulrika","female",22,0,0,"7552",10.5167,,"S",,,"Norrlot, Sweden Chicago, IL"
+3,0,"Dakic, Mr. Branko","male",19,0,0,"349228",10.1708,,"S",,,"Austria"
+3,1,"Daly, Miss. Margaret Marcella ""Maggie""","female",30,0,0,"382650",6.9500,,"Q","15",,"Co Athlone, Ireland New York, NY"
+3,1,"Daly, Mr. Eugene Patrick","male",29,0,0,"382651",7.7500,,"Q","13 15 B",,"Co Athlone, Ireland New York, NY"
+3,0,"Danbom, Master. Gilbert Sigvard Emanuel","male",0.33,0,2,"347080",14.4000,,"S",,,"Stanton, IA"
+3,0,"Danbom, Mr. Ernst Gilbert","male",34,1,1,"347080",14.4000,,"S",,"197","Stanton, IA"
+3,0,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)","female",28,1,1,"347080",14.4000,,"S",,,"Stanton, IA"
+3,0,"Danoff, Mr. Yoto","male",27,0,0,"349219",7.8958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Dantcheff, Mr. Ristiu","male",25,0,0,"349203",7.8958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Davies, Mr. Alfred J","male",24,2,0,"A/4 48871",24.1500,,"S",,,"West Bromwich, England Pontiac, MI"
+3,0,"Davies, Mr. Evan","male",22,0,0,"SC/A4 23568",8.0500,,"S",,,
+3,0,"Davies, Mr. John Samuel","male",21,2,0,"A/4 48871",24.1500,,"S",,,"West Bromwich, England Pontiac, MI"
+3,0,"Davies, Mr. Joseph","male",17,2,0,"A/4 48873",8.0500,,"S",,,"West Bromwich, England Pontiac, MI"
+3,0,"Davison, Mr. Thomas Henry","male",,1,0,"386525",16.1000,,"S",,,"Liverpool, England Bedford, OH"
+3,1,"Davison, Mrs. Thomas Henry (Mary E Finck)","female",,1,0,"386525",16.1000,,"S","16",,"Liverpool, England Bedford, OH"
+3,1,"de Messemaeker, Mr. Guillaume Joseph","male",36.5,1,0,"345572",17.4000,,"S","15",,"Tampico, MT"
+3,1,"de Messemaeker, Mrs. Guillaume Joseph (Emma)","female",36,1,0,"345572",17.4000,,"S","13",,"Tampico, MT"
+3,1,"de Mulder, Mr. Theodore","male",30,0,0,"345774",9.5000,,"S","11",,"Belgium Detroit, MI"
+3,0,"de Pelsmaeker, Mr. Alfons","male",16,0,0,"345778",9.5000,,"S",,,
+3,1,"Dean, Master. Bertram Vere","male",1,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
+3,1,"Dean, Miss. Elizabeth Gladys ""Millvina""","female",0.17,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
+3,0,"Dean, Mr. Bertram Frank","male",26,1,2,"C.A. 2315",20.5750,,"S",,,"Devon, England Wichita, KS"
+3,1,"Dean, Mrs. Bertram (Eva Georgetta Light)","female",33,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
+3,0,"Delalic, Mr. Redjo","male",25,0,0,"349250",7.8958,,"S",,,
+3,0,"Demetri, Mr. Marinko","male",,0,0,"349238",7.8958,,"S",,,
+3,0,"Denkoff, Mr. Mitto","male",,0,0,"349225",7.8958,,"S",,,"Bulgaria Coon Rapids, IA"
+3,0,"Dennis, Mr. Samuel","male",22,0,0,"A/5 21172",7.2500,,"S",,,
+3,0,"Dennis, Mr. William","male",36,0,0,"A/5 21175",7.2500,,"S",,,
+3,1,"Devaney, Miss. Margaret Delia","female",19,0,0,"330958",7.8792,,"Q","C",,"Kilmacowen, Co Sligo, Ireland New York, NY"
+3,0,"Dika, Mr. Mirko","male",17,0,0,"349232",7.8958,,"S",,,
+3,0,"Dimic, Mr. Jovan","male",42,0,0,"315088",8.6625,,"S",,,
+3,0,"Dintcheff, Mr. Valtcho","male",43,0,0,"349226",7.8958,,"S",,,
+3,0,"Doharr, Mr. Tannous","male",,0,0,"2686",7.2292,,"C",,,
+3,0,"Dooley, Mr. Patrick","male",32,0,0,"370376",7.7500,,"Q",,,"Ireland New York, NY"
+3,1,"Dorking, Mr. Edward Arthur","male",19,0,0,"A/5. 10482",8.0500,,"S","B",,"England Oglesby, IL"
+3,1,"Dowdell, Miss. Elizabeth","female",30,0,0,"364516",12.4750,,"S","13",,"Union Hill, NJ"
+3,0,"Doyle, Miss. Elizabeth","female",24,0,0,"368702",7.7500,,"Q",,,"Ireland New York, NY"
+3,1,"Drapkin, Miss. Jennie","female",23,0,0,"SOTON/OQ 392083",8.0500,,"S",,,"London New York, NY"
+3,0,"Drazenoic, Mr. Jozef","male",33,0,0,"349241",7.8958,,"C",,"51","Austria Niagara Falls, NY"
+3,0,"Duane, Mr. Frank","male",65,0,0,"336439",7.7500,,"Q",,,
+3,1,"Duquemin, Mr. Joseph","male",24,0,0,"S.O./P.P. 752",7.5500,,"S","D",,"England Albion, NY"
+3,0,"Dyker, Mr. Adolf Fredrik","male",23,1,0,"347072",13.9000,,"S",,,"West Haven, CT"
+3,1,"Dyker, Mrs. Adolf Fredrik (Anna Elisabeth Judith Andersson)","female",22,1,0,"347072",13.9000,,"S","16",,"West Haven, CT"
+3,0,"Edvardsson, Mr. Gustaf Hjalmar","male",18,0,0,"349912",7.7750,,"S",,,"Tofta, Sweden Joliet, IL"
+3,0,"Eklund, Mr. Hans Linus","male",16,0,0,"347074",7.7750,,"S",,,"Karberg, Sweden Jerome Junction, AZ"
+3,0,"Ekstrom, Mr. Johan","male",45,0,0,"347061",6.9750,,"S",,,"Effington Rut, SD"
+3,0,"Elias, Mr. Dibo","male",,0,0,"2674",7.2250,,"C",,,
+3,0,"Elias, Mr. Joseph","male",39,0,2,"2675",7.2292,,"C",,,"Syria Ottawa, ON"
+3,0,"Elias, Mr. Joseph Jr","male",17,1,1,"2690",7.2292,,"C",,,
+3,0,"Elias, Mr. Tannous","male",15,1,1,"2695",7.2292,,"C",,,"Syria"
+3,0,"Elsbury, Mr. William James","male",47,0,0,"A/5 3902",7.2500,,"S",,,"Illinois, USA"
+3,1,"Emanuel, Miss. Virginia Ethel","female",5,0,0,"364516",12.4750,,"S","13",,"New York, NY"
+3,0,"Emir, Mr. Farred Chehab","male",,0,0,"2631",7.2250,,"C",,,
+3,0,"Everett, Mr. Thomas James","male",40.5,0,0,"C.A. 6212",15.1000,,"S",,"187",
+3,0,"Farrell, Mr. James","male",40.5,0,0,"367232",7.7500,,"Q",,"68","Aughnacliff, Co Longford, Ireland New York, NY"
+3,1,"Finoli, Mr. Luigi","male",,0,0,"SOTON/O.Q. 3101308",7.0500,,"S","15",,"Italy Philadelphia, PA"
+3,0,"Fischer, Mr. Eberhard Thelander","male",18,0,0,"350036",7.7958,,"S",,,
+3,0,"Fleming, Miss. Honora","female",,0,0,"364859",7.7500,,"Q",,,
+3,0,"Flynn, Mr. James","male",,0,0,"364851",7.7500,,"Q",,,
+3,0,"Flynn, Mr. John","male",,0,0,"368323",6.9500,,"Q",,,
+3,0,"Foley, Mr. Joseph","male",26,0,0,"330910",7.8792,,"Q",,,"Ireland Chicago, IL"
+3,0,"Foley, Mr. William","male",,0,0,"365235",7.7500,,"Q",,,"Ireland"
+3,1,"Foo, Mr. Choong","male",,0,0,"1601",56.4958,,"S","13",,"Hong Kong New York, NY"
+3,0,"Ford, Miss. Doolina Margaret ""Daisy""","female",21,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Ford, Miss. Robina Maggie ""Ruby""","female",9,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Ford, Mr. Arthur","male",,0,0,"A/5 1478",8.0500,,"S",,,"Bridgwater, Somerset, England"
+3,0,"Ford, Mr. Edward Watson","male",18,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Ford, Mr. William Neal","male",16,1,3,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Ford, Mrs. Edward (Margaret Ann Watson)","female",48,1,3,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Fox, Mr. Patrick","male",,0,0,"368573",7.7500,,"Q",,,"Ireland New York, NY"
+3,0,"Franklin, Mr. Charles (Charles Fardon)","male",,0,0,"SOTON/O.Q. 3101314",7.2500,,"S",,,
+3,0,"Gallagher, Mr. Martin","male",25,0,0,"36864",7.7417,,"Q",,,"New York, NY"
+3,0,"Garfirth, Mr. John","male",,0,0,"358585",14.5000,,"S",,,
+3,0,"Gheorgheff, Mr. Stanio","male",,0,0,"349254",7.8958,,"C",,,
+3,0,"Gilinski, Mr. Eliezer","male",22,0,0,"14973",8.0500,,"S",,"47",
+3,1,"Gilnagh, Miss. Katherine ""Katie""","female",16,0,0,"35851",7.7333,,"Q","16",,"Co Longford, Ireland New York, NY"
+3,1,"Glynn, Miss. Mary Agatha","female",,0,0,"335677",7.7500,,"Q","13",,"Co Clare, Ireland Washington, DC"
+3,1,"Goldsmith, Master. Frank John William ""Frankie""","male",9,0,2,"363291",20.5250,,"S","C D",,"Strood, Kent, England Detroit, MI"
+3,0,"Goldsmith, Mr. Frank John","male",33,1,1,"363291",20.5250,,"S",,,"Strood, Kent, England Detroit, MI"
+3,0,"Goldsmith, Mr. Nathan","male",41,0,0,"SOTON/O.Q. 3101263",7.8500,,"S",,,"Philadelphia, PA"
+3,1,"Goldsmith, Mrs. Frank John (Emily Alice Brown)","female",31,1,1,"363291",20.5250,,"S","C D",,"Strood, Kent, England Detroit, MI"
+3,0,"Goncalves, Mr. Manuel Estanslas","male",38,0,0,"SOTON/O.Q. 3101306",7.0500,,"S",,,"Portugal"
+3,0,"Goodwin, Master. Harold Victor","male",9,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Master. Sidney Leonard","male",1,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Master. William Frederick","male",11,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Miss. Jessie Allis","female",10,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Miss. Lillian Amy","female",16,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Mr. Charles Edward","male",14,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Mr. Charles Frederick","male",40,1,6,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Mrs. Frederick (Augusta Tyler)","female",43,1,6,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Green, Mr. George Henry","male",51,0,0,"21440",8.0500,,"S",,,"Dorking, Surrey, England"
+3,0,"Gronnestad, Mr. Daniel Danielsen","male",32,0,0,"8471",8.3625,,"S",,,"Foresvik, Norway Portland, ND"
+3,0,"Guest, Mr. Robert","male",,0,0,"376563",8.0500,,"S",,,
+3,0,"Gustafsson, Mr. Alfred Ossian","male",20,0,0,"7534",9.8458,,"S",,,"Waukegan, Chicago, IL"
+3,0,"Gustafsson, Mr. Anders Vilhelm","male",37,2,0,"3101276",7.9250,,"S",,"98","Ruotsinphytaa, Finland New York, NY"
+3,0,"Gustafsson, Mr. Johan Birger","male",28,2,0,"3101277",7.9250,,"S",,,"Ruotsinphytaa, Finland New York, NY"
+3,0,"Gustafsson, Mr. Karl Gideon","male",19,0,0,"347069",7.7750,,"S",,,"Myren, Sweden New York, NY"
+3,0,"Haas, Miss. Aloisia","female",24,0,0,"349236",8.8500,,"S",,,
+3,0,"Hagardon, Miss. Kate","female",17,0,0,"AQ/3. 30631",7.7333,,"Q",,,
+3,0,"Hagland, Mr. Ingvald Olai Olsen","male",,1,0,"65303",19.9667,,"S",,,
+3,0,"Hagland, Mr. Konrad Mathias Reiersen","male",,1,0,"65304",19.9667,,"S",,,
+3,0,"Hakkarainen, Mr. Pekka Pietari","male",28,1,0,"STON/O2. 3101279",15.8500,,"S",,,
+3,1,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)","female",24,1,0,"STON/O2. 3101279",15.8500,,"S","15",,
+3,0,"Hampe, Mr. Leon","male",20,0,0,"345769",9.5000,,"S",,,
+3,0,"Hanna, Mr. Mansour","male",23.5,0,0,"2693",7.2292,,"C",,"188",
+3,0,"Hansen, Mr. Claus Peter","male",41,2,0,"350026",14.1083,,"S",,,
+3,0,"Hansen, Mr. Henrik Juul","male",26,1,0,"350025",7.8542,,"S",,,
+3,0,"Hansen, Mr. Henry Damsgaard","male",21,0,0,"350029",7.8542,,"S",,"69",
+3,1,"Hansen, Mrs. Claus Peter (Jennie L Howard)","female",45,1,0,"350026",14.1083,,"S","11",,
+3,0,"Harknett, Miss. Alice Phoebe","female",,0,0,"W./C. 6609",7.5500,,"S",,,
+3,0,"Harmer, Mr. Abraham (David Lishin)","male",25,0,0,"374887",7.2500,,"S","B",,
+3,0,"Hart, Mr. Henry","male",,0,0,"394140",6.8583,,"Q",,,
+3,0,"Hassan, Mr. Houssein G N","male",11,0,0,"2699",18.7875,,"C",,,
+3,1,"Healy, Miss. Hanora ""Nora""","female",,0,0,"370375",7.7500,,"Q","16",,
+3,1,"Hedman, Mr. Oskar Arvid","male",27,0,0,"347089",6.9750,,"S","15",,
+3,1,"Hee, Mr. Ling","male",,0,0,"1601",56.4958,,"S","C",,
+3,0,"Hegarty, Miss. Hanora ""Nora""","female",18,0,0,"365226",6.7500,,"Q",,,
+3,1,"Heikkinen, Miss. Laina","female",26,0,0,"STON/O2. 3101282",7.9250,,"S",,,
+3,0,"Heininen, Miss. Wendla Maria","female",23,0,0,"STON/O2. 3101290",7.9250,,"S",,,
+3,1,"Hellstrom, Miss. Hilda Maria","female",22,0,0,"7548",8.9625,,"S","C",,
+3,0,"Hendekovic, Mr. Ignjac","male",28,0,0,"349243",7.8958,,"S",,"306",
+3,0,"Henriksson, Miss. Jenny Lovisa","female",28,0,0,"347086",7.7750,,"S",,,
+3,0,"Henry, Miss. Delia","female",,0,0,"382649",7.7500,,"Q",,,
+3,1,"Hirvonen, Miss. Hildur E","female",2,0,1,"3101298",12.2875,,"S","15",,
+3,1,"Hirvonen, Mrs. Alexander (Helga E Lindqvist)","female",22,1,1,"3101298",12.2875,,"S","15",,
+3,0,"Holm, Mr. John Fredrik Alexander","male",43,0,0,"C 7075",6.4500,,"S",,,
+3,0,"Holthen, Mr. Johan Martin","male",28,0,0,"C 4001",22.5250,,"S",,,
+3,1,"Honkanen, Miss. Eliina","female",27,0,0,"STON/O2. 3101283",7.9250,,"S",,,
+3,0,"Horgan, Mr. John","male",,0,0,"370377",7.7500,,"Q",,,
+3,1,"Howard, Miss. May Elizabeth","female",,0,0,"A. 2. 39186",8.0500,,"S","C",,
+3,0,"Humblen, Mr. Adolf Mathias Nicolai Olsen","male",42,0,0,"348121",7.6500,"F G63","S",,"120",
+3,1,"Hyman, Mr. Abraham","male",,0,0,"3470",7.8875,,"S","C",,
+3,0,"Ibrahim Shawah, Mr. Yousseff","male",30,0,0,"2685",7.2292,,"C",,,
+3,0,"Ilieff, Mr. Ylio","male",,0,0,"349220",7.8958,,"S",,,
+3,0,"Ilmakangas, Miss. Ida Livija","female",27,1,0,"STON/O2. 3101270",7.9250,,"S",,,
+3,0,"Ilmakangas, Miss. Pieta Sofia","female",25,1,0,"STON/O2. 3101271",7.9250,,"S",,,
+3,0,"Ivanoff, Mr. Kanio","male",,0,0,"349201",7.8958,,"S",,,
+3,1,"Jalsevac, Mr. Ivan","male",29,0,0,"349240",7.8958,,"C","15",,
+3,1,"Jansson, Mr. Carl Olof","male",21,0,0,"350034",7.7958,,"S","A",,
+3,0,"Jardin, Mr. Jose Neto","male",,0,0,"SOTON/O.Q. 3101305",7.0500,,"S",,,
+3,0,"Jensen, Mr. Hans Peder","male",20,0,0,"350050",7.8542,,"S",,,
+3,0,"Jensen, Mr. Niels Peder","male",48,0,0,"350047",7.8542,,"S",,,
+3,0,"Jensen, Mr. Svend Lauritz","male",17,1,0,"350048",7.0542,,"S",,,
+3,1,"Jermyn, Miss. Annie","female",,0,0,"14313",7.7500,,"Q","D",,
+3,1,"Johannesen-Bratthammer, Mr. Bernt","male",,0,0,"65306",8.1125,,"S","13",,
+3,0,"Johanson, Mr. Jakob Alfred","male",34,0,0,"3101264",6.4958,,"S",,"143",
+3,1,"Johansson Palmquist, Mr. Oskar Leander","male",26,0,0,"347070",7.7750,,"S","15",,
+3,0,"Johansson, Mr. Erik","male",22,0,0,"350052",7.7958,,"S",,"156",
+3,0,"Johansson, Mr. Gustaf Joel","male",33,0,0,"7540",8.6542,,"S",,"285",
+3,0,"Johansson, Mr. Karl Johan","male",31,0,0,"347063",7.7750,,"S",,,
+3,0,"Johansson, Mr. Nils","male",29,0,0,"347467",7.8542,,"S",,,
+3,1,"Johnson, Master. Harold Theodor","male",4,1,1,"347742",11.1333,,"S","15",,
+3,1,"Johnson, Miss. Eleanor Ileen","female",1,1,1,"347742",11.1333,,"S","15",,
+3,0,"Johnson, Mr. Alfred","male",49,0,0,"LINE",0.0000,,"S",,,
+3,0,"Johnson, Mr. Malkolm Joackim","male",33,0,0,"347062",7.7750,,"S",,"37",
+3,0,"Johnson, Mr. William Cahoone Jr","male",19,0,0,"LINE",0.0000,,"S",,,
+3,1,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)","female",27,0,2,"347742",11.1333,,"S","15",,
+3,0,"Johnston, Master. William Arthur ""Willie""","male",,1,2,"W./C. 6607",23.4500,,"S",,,
+3,0,"Johnston, Miss. Catherine Helen ""Carrie""","female",,1,2,"W./C. 6607",23.4500,,"S",,,
+3,0,"Johnston, Mr. Andrew G","male",,1,2,"W./C. 6607",23.4500,,"S",,,
+3,0,"Johnston, Mrs. Andrew G (Elizabeth ""Lily"" Watson)","female",,1,2,"W./C. 6607",23.4500,,"S",,,
+3,0,"Jonkoff, Mr. Lalio","male",23,0,0,"349204",7.8958,,"S",,,
+3,1,"Jonsson, Mr. Carl","male",32,0,0,"350417",7.8542,,"S","15",,
+3,0,"Jonsson, Mr. Nils Hilding","male",27,0,0,"350408",7.8542,,"S",,,
+3,0,"Jussila, Miss. Katriina","female",20,1,0,"4136",9.8250,,"S",,,
+3,0,"Jussila, Miss. Mari Aina","female",21,1,0,"4137",9.8250,,"S",,,
+3,1,"Jussila, Mr. Eiriik","male",32,0,0,"STON/O 2. 3101286",7.9250,,"S","15",,
+3,0,"Kallio, Mr. Nikolai Erland","male",17,0,0,"STON/O 2. 3101274",7.1250,,"S",,,
+3,0,"Kalvik, Mr. Johannes Halvorsen","male",21,0,0,"8475",8.4333,,"S",,,
+3,0,"Karaic, Mr. Milan","male",30,0,0,"349246",7.8958,,"S",,,
+3,1,"Karlsson, Mr. Einar Gervasius","male",21,0,0,"350053",7.7958,,"S","13",,
+3,0,"Karlsson, Mr. Julius Konrad Eugen","male",33,0,0,"347465",7.8542,,"S",,,
+3,0,"Karlsson, Mr. Nils August","male",22,0,0,"350060",7.5208,,"S",,,
+3,1,"Karun, Miss. Manca","female",4,0,1,"349256",13.4167,,"C","15",,
+3,1,"Karun, Mr. Franz","male",39,0,1,"349256",13.4167,,"C","15",,
+3,0,"Kassem, Mr. Fared","male",,0,0,"2700",7.2292,,"C",,,
+3,0,"Katavelas, Mr. Vassilios (""Catavelas Vassilios"")","male",18.5,0,0,"2682",7.2292,,"C",,"58",
+3,0,"Keane, Mr. Andrew ""Andy""","male",,0,0,"12460",7.7500,,"Q",,,
+3,0,"Keefe, Mr. Arthur","male",,0,0,"323592",7.2500,,"S","A",,
+3,1,"Kelly, Miss. Anna Katherine ""Annie Kate""","female",,0,0,"9234",7.7500,,"Q","16",,
+3,1,"Kelly, Miss. Mary","female",,0,0,"14312",7.7500,,"Q","D",,
+3,0,"Kelly, Mr. James","male",34.5,0,0,"330911",7.8292,,"Q",,"70",
+3,0,"Kelly, Mr. James","male",44,0,0,"363592",8.0500,,"S",,,
+3,1,"Kennedy, Mr. John","male",,0,0,"368783",7.7500,,"Q",,,
+3,0,"Khalil, Mr. Betros","male",,1,0,"2660",14.4542,,"C",,,
+3,0,"Khalil, Mrs. Betros (Zahie ""Maria"" Elias)","female",,1,0,"2660",14.4542,,"C",,,
+3,0,"Kiernan, Mr. John","male",,1,0,"367227",7.7500,,"Q",,,
+3,0,"Kiernan, Mr. Philip","male",,1,0,"367229",7.7500,,"Q",,,
+3,0,"Kilgannon, Mr. Thomas J","male",,0,0,"36865",7.7375,,"Q",,,
+3,0,"Kink, Miss. Maria","female",22,2,0,"315152",8.6625,,"S",,,
+3,0,"Kink, Mr. Vincenz","male",26,2,0,"315151",8.6625,,"S",,,
+3,1,"Kink-Heilmann, Miss. Luise Gretchen","female",4,0,2,"315153",22.0250,,"S","2",,
+3,1,"Kink-Heilmann, Mr. Anton","male",29,3,1,"315153",22.0250,,"S","2",,
+3,1,"Kink-Heilmann, Mrs. Anton (Luise Heilmann)","female",26,1,1,"315153",22.0250,,"S","2",,
+3,0,"Klasen, Miss. Gertrud Emilia","female",1,1,1,"350405",12.1833,,"S",,,
+3,0,"Klasen, Mr. Klas Albin","male",18,1,1,"350404",7.8542,,"S",,,
+3,0,"Klasen, Mrs. (Hulda Kristina Eugenia Lofqvist)","female",36,0,2,"350405",12.1833,,"S",,,
+3,0,"Kraeff, Mr. Theodor","male",,0,0,"349253",7.8958,,"C",,,
+3,1,"Krekorian, Mr. Neshan","male",25,0,0,"2654",7.2292,"F E57","C","10",,
+3,0,"Lahoud, Mr. Sarkis","male",,0,0,"2624",7.2250,,"C",,,
+3,0,"Laitinen, Miss. Kristina Sofia","female",37,0,0,"4135",9.5875,,"S",,,
+3,0,"Laleff, Mr. Kristo","male",,0,0,"349217",7.8958,,"S",,,
+3,1,"Lam, Mr. Ali","male",,0,0,"1601",56.4958,,"S","C",,
+3,0,"Lam, Mr. Len","male",,0,0,"1601",56.4958,,"S",,,
+3,1,"Landergren, Miss. Aurora Adelia","female",22,0,0,"C 7077",7.2500,,"S","13",,
+3,0,"Lane, Mr. Patrick","male",,0,0,"7935",7.7500,,"Q",,,
+3,1,"Lang, Mr. Fang","male",26,0,0,"1601",56.4958,,"S","14",,
+3,0,"Larsson, Mr. August Viktor","male",29,0,0,"7545",9.4833,,"S",,,
+3,0,"Larsson, Mr. Bengt Edvin","male",29,0,0,"347067",7.7750,,"S",,,
+3,0,"Larsson-Rondberg, Mr. Edvard A","male",22,0,0,"347065",7.7750,,"S",,,
+3,1,"Leeni, Mr. Fahim (""Philip Zenni"")","male",22,0,0,"2620",7.2250,,"C","6",,
+3,0,"Lefebre, Master. Henry Forbes","male",,3,1,"4133",25.4667,,"S",,,
+3,0,"Lefebre, Miss. Ida","female",,3,1,"4133",25.4667,,"S",,,
+3,0,"Lefebre, Miss. Jeannie","female",,3,1,"4133",25.4667,,"S",,,
+3,0,"Lefebre, Miss. Mathilde","female",,3,1,"4133",25.4667,,"S",,,
+3,0,"Lefebre, Mrs. Frank (Frances)","female",,0,4,"4133",25.4667,,"S",,,
+3,0,"Leinonen, Mr. Antti Gustaf","male",32,0,0,"STON/O 2. 3101292",7.9250,,"S",,,
+3,0,"Lemberopolous, Mr. Peter L","male",34.5,0,0,"2683",6.4375,,"C",,"196",
+3,0,"Lennon, Miss. Mary","female",,1,0,"370371",15.5000,,"Q",,,
+3,0,"Lennon, Mr. Denis","male",,1,0,"370371",15.5000,,"Q",,,
+3,0,"Leonard, Mr. Lionel","male",36,0,0,"LINE",0.0000,,"S",,,
+3,0,"Lester, Mr. James","male",39,0,0,"A/4 48871",24.1500,,"S",,,
+3,0,"Lievens, Mr. Rene Aime","male",24,0,0,"345781",9.5000,,"S",,,
+3,0,"Lindahl, Miss. Agda Thorilda Viktoria","female",25,0,0,"347071",7.7750,,"S",,,
+3,0,"Lindblom, Miss. Augusta Charlotta","female",45,0,0,"347073",7.7500,,"S",,,
+3,0,"Lindell, Mr. Edvard Bengtsson","male",36,1,0,"349910",15.5500,,"S","A",,
+3,0,"Lindell, Mrs. Edvard Bengtsson (Elin Gerda Persson)","female",30,1,0,"349910",15.5500,,"S","A",,
+3,1,"Lindqvist, Mr. Eino William","male",20,1,0,"STON/O 2. 3101285",7.9250,,"S","15",,
+3,0,"Linehan, Mr. Michael","male",,0,0,"330971",7.8792,,"Q",,,
+3,0,"Ling, Mr. Lee","male",28,0,0,"1601",56.4958,,"S",,,
+3,0,"Lithman, Mr. Simon","male",,0,0,"S.O./P.P. 251",7.5500,,"S",,,
+3,0,"Lobb, Mr. William Arthur","male",30,1,0,"A/5. 3336",16.1000,,"S",,,
+3,0,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)","female",26,1,0,"A/5. 3336",16.1000,,"S",,,
+3,0,"Lockyer, Mr. Edward","male",,0,0,"1222",7.8792,,"S",,"153",
+3,0,"Lovell, Mr. John Hall (""Henry"")","male",20.5,0,0,"A/5 21173",7.2500,,"S",,,
+3,1,"Lulic, Mr. Nikola","male",27,0,0,"315098",8.6625,,"S","15",,
+3,0,"Lundahl, Mr. Johan Svensson","male",51,0,0,"347743",7.0542,,"S",,,
+3,1,"Lundin, Miss. Olga Elida","female",23,0,0,"347469",7.8542,,"S","10",,
+3,1,"Lundstrom, Mr. Thure Edvin","male",32,0,0,"350403",7.5792,,"S","15",,
+3,0,"Lyntakoff, Mr. Stanko","male",,0,0,"349235",7.8958,,"S",,,
+3,0,"MacKay, Mr. George William","male",,0,0,"C.A. 42795",7.5500,,"S",,,
+3,1,"Madigan, Miss. Margaret ""Maggie""","female",,0,0,"370370",7.7500,,"Q","15",,
+3,1,"Madsen, Mr. Fridtjof Arne","male",24,0,0,"C 17369",7.1417,,"S","13",,
+3,0,"Maenpaa, Mr. Matti Alexanteri","male",22,0,0,"STON/O 2. 3101275",7.1250,,"S",,,
+3,0,"Mahon, Miss. Bridget Delia","female",,0,0,"330924",7.8792,,"Q",,,
+3,0,"Mahon, Mr. John","male",,0,0,"AQ/4 3130",7.7500,,"Q",,,
+3,0,"Maisner, Mr. Simon","male",,0,0,"A/S 2816",8.0500,,"S",,,
+3,0,"Makinen, Mr. Kalle Edvard","male",29,0,0,"STON/O 2. 3101268",7.9250,,"S",,,
+3,1,"Mamee, Mr. Hanna","male",,0,0,"2677",7.2292,,"C","15",,
+3,0,"Mangan, Miss. Mary","female",30.5,0,0,"364850",7.7500,,"Q",,"61",
+3,1,"Mannion, Miss. Margareth","female",,0,0,"36866",7.7375,,"Q","16",,
+3,0,"Mardirosian, Mr. Sarkis","male",,0,0,"2655",7.2292,"F E46","C",,,
+3,0,"Markoff, Mr. Marin","male",35,0,0,"349213",7.8958,,"C",,,
+3,0,"Markun, Mr. Johann","male",33,0,0,"349257",7.8958,,"S",,,
+3,1,"Masselmani, Mrs. Fatima","female",,0,0,"2649",7.2250,,"C","C",,
+3,0,"Matinoff, Mr. Nicola","male",,0,0,"349255",7.8958,,"C",,,
+3,1,"McCarthy, Miss. Catherine ""Katie""","female",,0,0,"383123",7.7500,,"Q","15 16",,
+3,1,"McCormack, Mr. Thomas Joseph","male",,0,0,"367228",7.7500,,"Q",,,
+3,1,"McCoy, Miss. Agnes","female",,2,0,"367226",23.2500,,"Q","16",,
+3,1,"McCoy, Miss. Alicia","female",,2,0,"367226",23.2500,,"Q","16",,
+3,1,"McCoy, Mr. Bernard","male",,2,0,"367226",23.2500,,"Q","16",,
+3,1,"McDermott, Miss. Brigdet Delia","female",,0,0,"330932",7.7875,,"Q","13",,
+3,0,"McEvoy, Mr. Michael","male",,0,0,"36568",15.5000,,"Q",,,
+3,1,"McGovern, Miss. Mary","female",,0,0,"330931",7.8792,,"Q","13",,
+3,1,"McGowan, Miss. Anna ""Annie""","female",15,0,0,"330923",8.0292,,"Q",,,
+3,0,"McGowan, Miss. Katherine","female",35,0,0,"9232",7.7500,,"Q",,,
+3,0,"McMahon, Mr. Martin","male",,0,0,"370372",7.7500,,"Q",,,
+3,0,"McNamee, Mr. Neal","male",24,1,0,"376566",16.1000,,"S",,,
+3,0,"McNamee, Mrs. Neal (Eileen O'Leary)","female",19,1,0,"376566",16.1000,,"S",,"53",
+3,0,"McNeill, Miss. Bridget","female",,0,0,"370368",7.7500,,"Q",,,
+3,0,"Meanwell, Miss. (Marion Ogden)","female",,0,0,"SOTON/O.Q. 392087",8.0500,,"S",,,
+3,0,"Meek, Mrs. Thomas (Annie Louise Rowley)","female",,0,0,"343095",8.0500,,"S",,,
+3,0,"Meo, Mr. Alfonzo","male",55.5,0,0,"A.5. 11206",8.0500,,"S",,"201",
+3,0,"Mernagh, Mr. Robert","male",,0,0,"368703",7.7500,,"Q",,,
+3,1,"Midtsjo, Mr. Karl Albert","male",21,0,0,"345501",7.7750,,"S","15",,
+3,0,"Miles, Mr. Frank","male",,0,0,"359306",8.0500,,"S",,,
+3,0,"Mineff, Mr. Ivan","male",24,0,0,"349233",7.8958,,"S",,,
+3,0,"Minkoff, Mr. Lazar","male",21,0,0,"349211",7.8958,,"S",,,
+3,0,"Mionoff, Mr. Stoytcho","male",28,0,0,"349207",7.8958,,"S",,,
+3,0,"Mitkoff, Mr. Mito","male",,0,0,"349221",7.8958,,"S",,,
+3,1,"Mockler, Miss. Helen Mary ""Ellie""","female",,0,0,"330980",7.8792,,"Q","16",,
+3,0,"Moen, Mr. Sigurd Hansen","male",25,0,0,"348123",7.6500,"F G73","S",,"309",
+3,1,"Moor, Master. Meier","male",6,0,1,"392096",12.4750,"E121","S","14",,
+3,1,"Moor, Mrs. (Beila)","female",27,0,1,"392096",12.4750,"E121","S","14",,
+3,0,"Moore, Mr. Leonard Charles","male",,0,0,"A4. 54510",8.0500,,"S",,,
+3,1,"Moran, Miss. Bertha","female",,1,0,"371110",24.1500,,"Q","16",,
+3,0,"Moran, Mr. Daniel J","male",,1,0,"371110",24.1500,,"Q",,,
+3,0,"Moran, Mr. James","male",,0,0,"330877",8.4583,,"Q",,,
+3,0,"Morley, Mr. William","male",34,0,0,"364506",8.0500,,"S",,,
+3,0,"Morrow, Mr. Thomas Rowan","male",,0,0,"372622",7.7500,,"Q",,,
+3,1,"Moss, Mr. Albert Johan","male",,0,0,"312991",7.7750,,"S","B",,
+3,1,"Moubarek, Master. Gerios","male",,1,1,"2661",15.2458,,"C","C",,
+3,1,"Moubarek, Master. Halim Gonios (""William George"")","male",,1,1,"2661",15.2458,,"C","C",,
+3,1,"Moubarek, Mrs. George (Omine ""Amenia"" Alexander)","female",,0,2,"2661",15.2458,,"C","C",,
+3,1,"Moussa, Mrs. (Mantoura Boulos)","female",,0,0,"2626",7.2292,,"C",,,
+3,0,"Moutal, Mr. Rahamin Haim","male",,0,0,"374746",8.0500,,"S",,,
+3,1,"Mullens, Miss. Katherine ""Katie""","female",,0,0,"35852",7.7333,,"Q","16",,
+3,1,"Mulvihill, Miss. Bertha E","female",24,0,0,"382653",7.7500,,"Q","15",,
+3,0,"Murdlin, Mr. Joseph","male",,0,0,"A./5. 3235",8.0500,,"S",,,
+3,1,"Murphy, Miss. Katherine ""Kate""","female",,1,0,"367230",15.5000,,"Q","16",,
+3,1,"Murphy, Miss. Margaret Jane","female",,1,0,"367230",15.5000,,"Q","16",,
+3,1,"Murphy, Miss. Nora","female",,0,0,"36568",15.5000,,"Q","16",,
+3,0,"Myhrman, Mr. Pehr Fabian Oliver Malkolm","male",18,0,0,"347078",7.7500,,"S",,,
+3,0,"Naidenoff, Mr. Penko","male",22,0,0,"349206",7.8958,,"S",,,
+3,1,"Najib, Miss. Adele Kiamie ""Jane""","female",15,0,0,"2667",7.2250,,"C","C",,
+3,1,"Nakid, Miss. Maria (""Mary"")","female",1,0,2,"2653",15.7417,,"C","C",,
+3,1,"Nakid, Mr. Sahid","male",20,1,1,"2653",15.7417,,"C","C",,
+3,1,"Nakid, Mrs. Said (Waika ""Mary"" Mowad)","female",19,1,1,"2653",15.7417,,"C","C",,
+3,0,"Nancarrow, Mr. William Henry","male",33,0,0,"A./5. 3338",8.0500,,"S",,,
+3,0,"Nankoff, Mr. Minko","male",,0,0,"349218",7.8958,,"S",,,
+3,0,"Nasr, Mr. Mustafa","male",,0,0,"2652",7.2292,,"C",,,
+3,0,"Naughton, Miss. Hannah","female",,0,0,"365237",7.7500,,"Q",,,
+3,0,"Nenkoff, Mr. Christo","male",,0,0,"349234",7.8958,,"S",,,
+3,1,"Nicola-Yarred, Master. Elias","male",12,1,0,"2651",11.2417,,"C","C",,
+3,1,"Nicola-Yarred, Miss. Jamila","female",14,1,0,"2651",11.2417,,"C","C",,
+3,0,"Nieminen, Miss. Manta Josefina","female",29,0,0,"3101297",7.9250,,"S",,,
+3,0,"Niklasson, Mr. Samuel","male",28,0,0,"363611",8.0500,,"S",,,
+3,1,"Nilsson, Miss. Berta Olivia","female",18,0,0,"347066",7.7750,,"S","D",,
+3,1,"Nilsson, Miss. Helmina Josefina","female",26,0,0,"347470",7.8542,,"S","13",,
+3,0,"Nilsson, Mr. August Ferdinand","male",21,0,0,"350410",7.8542,,"S",,,
+3,0,"Nirva, Mr. Iisakki Antino Aijo","male",41,0,0,"SOTON/O2 3101272",7.1250,,"S",,,"Finland Sudbury, ON"
+3,1,"Niskanen, Mr. Juha","male",39,0,0,"STON/O 2. 3101289",7.9250,,"S","9",,
+3,0,"Nosworthy, Mr. Richard Cater","male",21,0,0,"A/4. 39886",7.8000,,"S",,,
+3,0,"Novel, Mr. Mansouer","male",28.5,0,0,"2697",7.2292,,"C",,"181",
+3,1,"Nysten, Miss. Anna Sofia","female",22,0,0,"347081",7.7500,,"S","13",,
+3,0,"Nysveen, Mr. Johan Hansen","male",61,0,0,"345364",6.2375,,"S",,,
+3,0,"O'Brien, Mr. Thomas","male",,1,0,"370365",15.5000,,"Q",,,
+3,0,"O'Brien, Mr. Timothy","male",,0,0,"330979",7.8292,,"Q",,,
+3,1,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)","female",,1,0,"370365",15.5000,,"Q",,,
+3,0,"O'Connell, Mr. Patrick D","male",,0,0,"334912",7.7333,,"Q",,,
+3,0,"O'Connor, Mr. Maurice","male",,0,0,"371060",7.7500,,"Q",,,
+3,0,"O'Connor, Mr. Patrick","male",,0,0,"366713",7.7500,,"Q",,,
+3,0,"Odahl, Mr. Nils Martin","male",23,0,0,"7267",9.2250,,"S",,,
+3,0,"O'Donoghue, Ms. Bridget","female",,0,0,"364856",7.7500,,"Q",,,
+3,1,"O'Driscoll, Miss. Bridget","female",,0,0,"14311",7.7500,,"Q","D",,
+3,1,"O'Dwyer, Miss. Ellen ""Nellie""","female",,0,0,"330959",7.8792,,"Q",,,
+3,1,"Ohman, Miss. Velin","female",22,0,0,"347085",7.7750,,"S","C",,
+3,1,"O'Keefe, Mr. Patrick","male",,0,0,"368402",7.7500,,"Q","B",,
+3,1,"O'Leary, Miss. Hanora ""Norah""","female",,0,0,"330919",7.8292,,"Q","13",,
+3,1,"Olsen, Master. Artur Karl","male",9,0,1,"C 17368",3.1708,,"S","13",,
+3,0,"Olsen, Mr. Henry Margido","male",28,0,0,"C 4001",22.5250,,"S",,"173",
+3,0,"Olsen, Mr. Karl Siegwart Andreas","male",42,0,1,"4579",8.4042,,"S",,,
+3,0,"Olsen, Mr. Ole Martin","male",,0,0,"Fa 265302",7.3125,,"S",,,
+3,0,"Olsson, Miss. Elina","female",31,0,0,"350407",7.8542,,"S",,,
+3,0,"Olsson, Mr. Nils Johan Goransson","male",28,0,0,"347464",7.8542,,"S",,,
+3,1,"Olsson, Mr. Oscar Wilhelm","male",32,0,0,"347079",7.7750,,"S","A",,
+3,0,"Olsvigen, Mr. Thor Anderson","male",20,0,0,"6563",9.2250,,"S",,"89","Oslo, Norway Cameron, WI"
+3,0,"Oreskovic, Miss. Jelka","female",23,0,0,"315085",8.6625,,"S",,,
+3,0,"Oreskovic, Miss. Marija","female",20,0,0,"315096",8.6625,,"S",,,
+3,0,"Oreskovic, Mr. Luka","male",20,0,0,"315094",8.6625,,"S",,,
+3,0,"Osen, Mr. Olaf Elon","male",16,0,0,"7534",9.2167,,"S",,,
+3,1,"Osman, Mrs. Mara","female",31,0,0,"349244",8.6833,,"S",,,
+3,0,"O'Sullivan, Miss. Bridget Mary","female",,0,0,"330909",7.6292,,"Q",,,
+3,0,"Palsson, Master. Gosta Leonard","male",2,3,1,"349909",21.0750,,"S",,"4",
+3,0,"Palsson, Master. Paul Folke","male",6,3,1,"349909",21.0750,,"S",,,
+3,0,"Palsson, Miss. Stina Viola","female",3,3,1,"349909",21.0750,,"S",,,
+3,0,"Palsson, Miss. Torborg Danira","female",8,3,1,"349909",21.0750,,"S",,,
+3,0,"Palsson, Mrs. Nils (Alma Cornelia Berglund)","female",29,0,4,"349909",21.0750,,"S",,"206",
+3,0,"Panula, Master. Eino Viljami","male",1,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Master. Juha Niilo","male",7,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Master. Urho Abraham","male",2,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Mr. Ernesti Arvid","male",16,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Mr. Jaako Arnold","male",14,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Mrs. Juha (Maria Emilia Ojala)","female",41,0,5,"3101295",39.6875,,"S",,,
+3,0,"Pasic, Mr. Jakob","male",21,0,0,"315097",8.6625,,"S",,,
+3,0,"Patchett, Mr. George","male",19,0,0,"358585",14.5000,,"S",,,
+3,0,"Paulner, Mr. Uscher","male",,0,0,"3411",8.7125,,"C",,,
+3,0,"Pavlovic, Mr. Stefo","male",32,0,0,"349242",7.8958,,"S",,,
+3,0,"Peacock, Master. Alfred Edward","male",0.75,1,1,"SOTON/O.Q. 3101315",13.7750,,"S",,,
+3,0,"Peacock, Miss. Treasteall","female",3,1,1,"SOTON/O.Q. 3101315",13.7750,,"S",,,
+3,0,"Peacock, Mrs. Benjamin (Edith Nile)","female",26,0,2,"SOTON/O.Q. 3101315",13.7750,,"S",,,
+3,0,"Pearce, Mr. Ernest","male",,0,0,"343271",7.0000,,"S",,,
+3,0,"Pedersen, Mr. Olaf","male",,0,0,"345498",7.7750,,"S",,,
+3,0,"Peduzzi, Mr. Joseph","male",,0,0,"A/5 2817",8.0500,,"S",,,
+3,0,"Pekoniemi, Mr. Edvard","male",21,0,0,"STON/O 2. 3101294",7.9250,,"S",,,
+3,0,"Peltomaki, Mr. Nikolai Johannes","male",25,0,0,"STON/O 2. 3101291",7.9250,,"S",,,
+3,0,"Perkin, Mr. John Henry","male",22,0,0,"A/5 21174",7.2500,,"S",,,
+3,1,"Persson, Mr. Ernst Ulrik","male",25,1,0,"347083",7.7750,,"S","15",,
+3,1,"Peter, Master. Michael J","male",,1,1,"2668",22.3583,,"C","C",,
+3,1,"Peter, Miss. Anna","female",,1,1,"2668",22.3583,"F E69","C","D",,
+3,1,"Peter, Mrs. Catherine (Catherine Rizk)","female",,0,2,"2668",22.3583,,"C","D",,
+3,0,"Peters, Miss. Katie","female",,0,0,"330935",8.1375,,"Q",,,
+3,0,"Petersen, Mr. Marius","male",24,0,0,"342441",8.0500,,"S",,,
+3,0,"Petranec, Miss. Matilda","female",28,0,0,"349245",7.8958,,"S",,,
+3,0,"Petroff, Mr. Nedelio","male",19,0,0,"349212",7.8958,,"S",,,
+3,0,"Petroff, Mr. Pastcho (""Pentcho"")","male",,0,0,"349215",7.8958,,"S",,,
+3,0,"Petterson, Mr. Johan Emil","male",25,1,0,"347076",7.7750,,"S",,,
+3,0,"Pettersson, Miss. Ellen Natalia","female",18,0,0,"347087",7.7750,,"S",,,
+3,1,"Pickard, Mr. Berk (Berk Trembisky)","male",32,0,0,"SOTON/O.Q. 392078",8.0500,"E10","S","9",,
+3,0,"Plotcharsky, Mr. Vasil","male",,0,0,"349227",7.8958,,"S",,,
+3,0,"Pokrnic, Mr. Mate","male",17,0,0,"315095",8.6625,,"S",,,
+3,0,"Pokrnic, Mr. Tome","male",24,0,0,"315092",8.6625,,"S",,,
+3,0,"Radeff, Mr. Alexander","male",,0,0,"349223",7.8958,,"S",,,
+3,0,"Rasmussen, Mrs. (Lena Jacobsen Solvang)","female",,0,0,"65305",8.1125,,"S",,,
+3,0,"Razi, Mr. Raihed","male",,0,0,"2629",7.2292,,"C",,,
+3,0,"Reed, Mr. James George","male",,0,0,"362316",7.2500,,"S",,,
+3,0,"Rekic, Mr. Tido","male",38,0,0,"349249",7.8958,,"S",,,
+3,0,"Reynolds, Mr. Harold J","male",21,0,0,"342684",8.0500,,"S",,,
+3,0,"Rice, Master. Albert","male",10,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Master. Arthur","male",4,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Master. Eric","male",7,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Master. Eugene","male",2,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Master. George Hugh","male",8,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Mrs. William (Margaret Norton)","female",39,0,5,"382652",29.1250,,"Q",,"327",
+3,0,"Riihivouri, Miss. Susanna Juhantytar ""Sanni""","female",22,0,0,"3101295",39.6875,,"S",,,
+3,0,"Rintamaki, Mr. Matti","male",35,0,0,"STON/O 2. 3101273",7.1250,,"S",,,
+3,1,"Riordan, Miss. Johanna ""Hannah""","female",,0,0,"334915",7.7208,,"Q","13",,
+3,0,"Risien, Mr. Samuel Beard","male",,0,0,"364498",14.5000,,"S",,,
+3,0,"Risien, Mrs. Samuel (Emma)","female",,0,0,"364498",14.5000,,"S",,,
+3,0,"Robins, Mr. Alexander A","male",50,1,0,"A/5. 3337",14.5000,,"S",,"119",
+3,0,"Robins, Mrs. Alexander A (Grace Charity Laury)","female",47,1,0,"A/5. 3337",14.5000,,"S",,"7",
+3,0,"Rogers, Mr. William John","male",,0,0,"S.C./A.4. 23567",8.0500,,"S",,,
+3,0,"Rommetvedt, Mr. Knud Paust","male",,0,0,"312993",7.7750,,"S",,,
+3,0,"Rosblom, Miss. Salli Helena","female",2,1,1,"370129",20.2125,,"S",,,
+3,0,"Rosblom, Mr. Viktor Richard","male",18,1,1,"370129",20.2125,,"S",,,
+3,0,"Rosblom, Mrs. Viktor (Helena Wilhelmina)","female",41,0,2,"370129",20.2125,,"S",,,
+3,1,"Roth, Miss. Sarah A","female",,0,0,"342712",8.0500,,"S","C",,
+3,0,"Rouse, Mr. Richard Henry","male",50,0,0,"A/5 3594",8.0500,,"S",,,
+3,0,"Rush, Mr. Alfred George John","male",16,0,0,"A/4. 20589",8.0500,,"S",,,
+3,1,"Ryan, Mr. Edward","male",,0,0,"383162",7.7500,,"Q","14",,
+3,0,"Ryan, Mr. Patrick","male",,0,0,"371110",24.1500,,"Q",,,
+3,0,"Saad, Mr. Amin","male",,0,0,"2671",7.2292,,"C",,,
+3,0,"Saad, Mr. Khalil","male",25,0,0,"2672",7.2250,,"C",,,
+3,0,"Saade, Mr. Jean Nassr","male",,0,0,"2676",7.2250,,"C",,,
+3,0,"Sadlier, Mr. Matthew","male",,0,0,"367655",7.7292,,"Q",,,
+3,0,"Sadowitz, Mr. Harry","male",,0,0,"LP 1588",7.5750,,"S",,,
+3,0,"Saether, Mr. Simon Sivertsen","male",38.5,0,0,"SOTON/O.Q. 3101262",7.2500,,"S",,"32",
+3,0,"Sage, Master. Thomas Henry","male",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Master. William Henry","male",14.5,8,2,"CA. 2343",69.5500,,"S",,"67",
+3,0,"Sage, Miss. Ada","female",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Miss. Constance Gladys","female",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Miss. Dorothy Edith ""Dolly""","female",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Miss. Stella Anna","female",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mr. Douglas Bullen","male",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mr. Frederick","male",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mr. George John Jr","male",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mr. John George","male",,1,9,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mrs. John (Annie Bullen)","female",,1,9,"CA. 2343",69.5500,,"S",,,
+3,0,"Salander, Mr. Karl Johan","male",24,0,0,"7266",9.3250,,"S",,,
+3,1,"Salkjelsvik, Miss. Anna Kristine","female",21,0,0,"343120",7.6500,,"S","C",,
+3,0,"Salonen, Mr. Johan Werner","male",39,0,0,"3101296",7.9250,,"S",,,
+3,0,"Samaan, Mr. Elias","male",,2,0,"2662",21.6792,,"C",,,
+3,0,"Samaan, Mr. Hanna","male",,2,0,"2662",21.6792,,"C",,,
+3,0,"Samaan, Mr. Youssef","male",,2,0,"2662",21.6792,,"C",,,
+3,1,"Sandstrom, Miss. Beatrice Irene","female",1,1,1,"PP 9549",16.7000,"G6","S","13",,
+3,1,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)","female",24,0,2,"PP 9549",16.7000,"G6","S","13",,
+3,1,"Sandstrom, Miss. Marguerite Rut","female",4,1,1,"PP 9549",16.7000,"G6","S","13",,
+3,1,"Sap, Mr. Julius","male",25,0,0,"345768",9.5000,,"S","11",,
+3,0,"Saundercock, Mr. William Henry","male",20,0,0,"A/5. 2151",8.0500,,"S",,,
+3,0,"Sawyer, Mr. Frederick Charles","male",24.5,0,0,"342826",8.0500,,"S",,"284",
+3,0,"Scanlan, Mr. James","male",,0,0,"36209",7.7250,,"Q",,,
+3,0,"Sdycoff, Mr. Todor","male",,0,0,"349222",7.8958,,"S",,,
+3,0,"Shaughnessy, Mr. Patrick","male",,0,0,"370374",7.7500,,"Q",,,
+3,1,"Sheerlinck, Mr. Jan Baptist","male",29,0,0,"345779",9.5000,,"S","11",,
+3,0,"Shellard, Mr. Frederick William","male",,0,0,"C.A. 6212",15.1000,,"S",,,
+3,1,"Shine, Miss. Ellen Natalia","female",,0,0,"330968",7.7792,,"Q",,,
+3,0,"Shorney, Mr. Charles Joseph","male",,0,0,"374910",8.0500,,"S",,,
+3,0,"Simmons, Mr. John","male",,0,0,"SOTON/OQ 392082",8.0500,,"S",,,
+3,0,"Sirayanian, Mr. Orsen","male",22,0,0,"2669",7.2292,,"C",,,
+3,0,"Sirota, Mr. Maurice","male",,0,0,"392092",8.0500,,"S",,,
+3,0,"Sivic, Mr. Husein","male",40,0,0,"349251",7.8958,,"S",,,
+3,0,"Sivola, Mr. Antti Wilhelm","male",21,0,0,"STON/O 2. 3101280",7.9250,,"S",,,
+3,1,"Sjoblom, Miss. Anna Sofia","female",18,0,0,"3101265",7.4958,,"S","16",,
+3,0,"Skoog, Master. Harald","male",4,3,2,"347088",27.9000,,"S",,,
+3,0,"Skoog, Master. Karl Thorsten","male",10,3,2,"347088",27.9000,,"S",,,
+3,0,"Skoog, Miss. Mabel","female",9,3,2,"347088",27.9000,,"S",,,
+3,0,"Skoog, Miss. Margit Elizabeth","female",2,3,2,"347088",27.9000,,"S",,,
+3,0,"Skoog, Mr. Wilhelm","male",40,1,4,"347088",27.9000,,"S",,,
+3,0,"Skoog, Mrs. William (Anna Bernhardina Karlsson)","female",45,1,4,"347088",27.9000,,"S",,,
+3,0,"Slabenoff, Mr. Petco","male",,0,0,"349214",7.8958,,"S",,,
+3,0,"Slocovski, Mr. Selman Francis","male",,0,0,"SOTON/OQ 392086",8.0500,,"S",,,
+3,0,"Smiljanic, Mr. Mile","male",,0,0,"315037",8.6625,,"S",,,
+3,0,"Smith, Mr. Thomas","male",,0,0,"384461",7.7500,,"Q",,,
+3,1,"Smyth, Miss. Julia","female",,0,0,"335432",7.7333,,"Q","13",,
+3,0,"Soholt, Mr. Peter Andreas Lauritz Andersen","male",19,0,0,"348124",7.6500,"F G73","S",,,
+3,0,"Somerton, Mr. Francis William","male",30,0,0,"A.5. 18509",8.0500,,"S",,,
+3,0,"Spector, Mr. Woolf","male",,0,0,"A.5. 3236",8.0500,,"S",,,
+3,0,"Spinner, Mr. Henry John","male",32,0,0,"STON/OQ. 369943",8.0500,,"S",,,
+3,0,"Staneff, Mr. Ivan","male",,0,0,"349208",7.8958,,"S",,,
+3,0,"Stankovic, Mr. Ivan","male",33,0,0,"349239",8.6625,,"C",,,
+3,1,"Stanley, Miss. Amy Zillah Elsie","female",23,0,0,"CA. 2314",7.5500,,"S","C",,
+3,0,"Stanley, Mr. Edward Roland","male",21,0,0,"A/4 45380",8.0500,,"S",,,
+3,0,"Storey, Mr. Thomas","male",60.5,0,0,"3701",,,"S",,"261",
+3,0,"Stoytcheff, Mr. Ilia","male",19,0,0,"349205",7.8958,,"S",,,
+3,0,"Strandberg, Miss. Ida Sofia","female",22,0,0,"7553",9.8375,,"S",,,
+3,1,"Stranden, Mr. Juho","male",31,0,0,"STON/O 2. 3101288",7.9250,,"S","9",,
+3,0,"Strilic, Mr. Ivan","male",27,0,0,"315083",8.6625,,"S",,,
+3,0,"Strom, Miss. Telma Matilda","female",2,0,1,"347054",10.4625,"G6","S",,,
+3,0,"Strom, Mrs. Wilhelm (Elna Matilda Persson)","female",29,1,1,"347054",10.4625,"G6","S",,,
+3,1,"Sunderland, Mr. Victor Francis","male",16,0,0,"SOTON/OQ 392089",8.0500,,"S","B",,
+3,1,"Sundman, Mr. Johan Julian","male",44,0,0,"STON/O 2. 3101269",7.9250,,"S","15",,
+3,0,"Sutehall, Mr. Henry Jr","male",25,0,0,"SOTON/OQ 392076",7.0500,,"S",,,
+3,0,"Svensson, Mr. Johan","male",74,0,0,"347060",7.7750,,"S",,,
+3,1,"Svensson, Mr. Johan Cervin","male",14,0,0,"7538",9.2250,,"S","13",,
+3,0,"Svensson, Mr. Olof","male",24,0,0,"350035",7.7958,,"S",,,
+3,1,"Tenglin, Mr. Gunnar Isidor","male",25,0,0,"350033",7.7958,,"S","13 15",,
+3,0,"Theobald, Mr. Thomas Leonard","male",34,0,0,"363294",8.0500,,"S",,"176",
+3,1,"Thomas, Master. Assad Alexander","male",0.42,0,1,"2625",8.5167,,"C","16",,
+3,0,"Thomas, Mr. Charles P","male",,1,0,"2621",6.4375,,"C",,,
+3,0,"Thomas, Mr. John","male",,0,0,"2681",6.4375,,"C",,,
+3,0,"Thomas, Mr. Tannous","male",,0,0,"2684",7.2250,,"C",,,
+3,1,"Thomas, Mrs. Alexander (Thamine ""Thelma"")","female",16,1,1,"2625",8.5167,,"C","14",,
+3,0,"Thomson, Mr. Alexander Morrison","male",,0,0,"32302",8.0500,,"S",,,
+3,0,"Thorneycroft, Mr. Percival","male",,1,0,"376564",16.1000,,"S",,,
+3,1,"Thorneycroft, Mrs. Percival (Florence Kate White)","female",,1,0,"376564",16.1000,,"S","10",,
+3,0,"Tikkanen, Mr. Juho","male",32,0,0,"STON/O 2. 3101293",7.9250,,"S",,,
+3,0,"Tobin, Mr. Roger","male",,0,0,"383121",7.7500,"F38","Q",,,
+3,0,"Todoroff, Mr. Lalio","male",,0,0,"349216",7.8958,,"S",,,
+3,0,"Tomlin, Mr. Ernest Portage","male",30.5,0,0,"364499",8.0500,,"S",,"50",
+3,0,"Torber, Mr. Ernst William","male",44,0,0,"364511",8.0500,,"S",,,
+3,0,"Torfa, Mr. Assad","male",,0,0,"2673",7.2292,,"C",,,
+3,1,"Tornquist, Mr. William Henry","male",25,0,0,"LINE",0.0000,,"S","15",,
+3,0,"Toufik, Mr. Nakli","male",,0,0,"2641",7.2292,,"C",,,
+3,1,"Touma, Master. Georges Youssef","male",7,1,1,"2650",15.2458,,"C","C",,
+3,1,"Touma, Miss. Maria Youssef","female",9,1,1,"2650",15.2458,,"C","C",,
+3,1,"Touma, Mrs. Darwis (Hanne Youssef Razi)","female",29,0,2,"2650",15.2458,,"C","C",,
+3,0,"Turcin, Mr. Stjepan","male",36,0,0,"349247",7.8958,,"S",,,
+3,1,"Turja, Miss. Anna Sofia","female",18,0,0,"4138",9.8417,,"S","15",,
+3,1,"Turkula, Mrs. (Hedwig)","female",63,0,0,"4134",9.5875,,"S","15",,
+3,0,"van Billiard, Master. James William","male",,1,1,"A/5. 851",14.5000,,"S",,,
+3,0,"van Billiard, Master. Walter John","male",11.5,1,1,"A/5. 851",14.5000,,"S",,"1",
+3,0,"van Billiard, Mr. Austin Blyler","male",40.5,0,2,"A/5. 851",14.5000,,"S",,"255",
+3,0,"Van Impe, Miss. Catharina","female",10,0,2,"345773",24.1500,,"S",,,
+3,0,"Van Impe, Mr. Jean Baptiste","male",36,1,1,"345773",24.1500,,"S",,,
+3,0,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)","female",30,1,1,"345773",24.1500,,"S",,,
+3,0,"van Melkebeke, Mr. Philemon","male",,0,0,"345777",9.5000,,"S",,,
+3,0,"Vande Velde, Mr. Johannes Joseph","male",33,0,0,"345780",9.5000,,"S",,,
+3,0,"Vande Walle, Mr. Nestor Cyriel","male",28,0,0,"345770",9.5000,,"S",,,
+3,0,"Vanden Steen, Mr. Leo Peter","male",28,0,0,"345783",9.5000,,"S",,,
+3,0,"Vander Cruyssen, Mr. Victor","male",47,0,0,"345765",9.0000,,"S",,,
+3,0,"Vander Planke, Miss. Augusta Maria","female",18,2,0,"345764",18.0000,,"S",,,
+3,0,"Vander Planke, Mr. Julius","male",31,3,0,"345763",18.0000,,"S",,,
+3,0,"Vander Planke, Mr. Leo Edmondus","male",16,2,0,"345764",18.0000,,"S",,,
+3,0,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)","female",31,1,0,"345763",18.0000,,"S",,,
+3,1,"Vartanian, Mr. David","male",22,0,0,"2658",7.2250,,"C","13 15",,
+3,0,"Vendel, Mr. Olof Edvin","male",20,0,0,"350416",7.8542,,"S",,,
+3,0,"Vestrom, Miss. Hulda Amanda Adolfina","female",14,0,0,"350406",7.8542,,"S",,,
+3,0,"Vovk, Mr. Janko","male",22,0,0,"349252",7.8958,,"S",,,
+3,0,"Waelens, Mr. Achille","male",22,0,0,"345767",9.0000,,"S",,,"Antwerp, Belgium / Stanton, OH"
+3,0,"Ware, Mr. Frederick","male",,0,0,"359309",8.0500,,"S",,,
+3,0,"Warren, Mr. Charles William","male",,0,0,"C.A. 49867",7.5500,,"S",,,
+3,0,"Webber, Mr. James","male",,0,0,"SOTON/OQ 3101316",8.0500,,"S",,,
+3,0,"Wenzel, Mr. Linhart","male",32.5,0,0,"345775",9.5000,,"S",,"298",
+3,1,"Whabee, Mrs. George Joseph (Shawneene Abi-Saab)","female",38,0,0,"2688",7.2292,,"C","C",,
+3,0,"Widegren, Mr. Carl/Charles Peter","male",51,0,0,"347064",7.7500,,"S",,,
+3,0,"Wiklund, Mr. Jakob Alfred","male",18,1,0,"3101267",6.4958,,"S",,"314",
+3,0,"Wiklund, Mr. Karl Johan","male",21,1,0,"3101266",6.4958,,"S",,,
+3,1,"Wilkes, Mrs. James (Ellen Needs)","female",47,1,0,"363272",7.0000,,"S",,,
+3,0,"Willer, Mr. Aaron (""Abi Weller"")","male",,0,0,"3410",8.7125,,"S",,,
+3,0,"Willey, Mr. Edward","male",,0,0,"S.O./P.P. 751",7.5500,,"S",,,
+3,0,"Williams, Mr. Howard Hugh ""Harry""","male",,0,0,"A/5 2466",8.0500,,"S",,,
+3,0,"Williams, Mr. Leslie","male",28.5,0,0,"54636",16.1000,,"S",,"14",
+3,0,"Windelov, Mr. Einar","male",21,0,0,"SOTON/OQ 3101317",7.2500,,"S",,,
+3,0,"Wirz, Mr. Albert","male",27,0,0,"315154",8.6625,,"S",,"131",
+3,0,"Wiseman, Mr. Phillippe","male",,0,0,"A/4. 34244",7.2500,,"S",,,
+3,0,"Wittevrongel, Mr. Camille","male",36,0,0,"345771",9.5000,,"S",,,
+3,0,"Yasbeck, Mr. Antoni","male",27,1,0,"2659",14.4542,,"C","C",,
+3,1,"Yasbeck, Mrs. Antoni (Selini Alexander)","female",15,1,0,"2659",14.4542,,"C",,,
+3,0,"Youseff, Mr. Gerious","male",45.5,0,0,"2628",7.2250,,"C",,"312",
+3,0,"Yousif, Mr. Wazli","male",,0,0,"2647",7.2250,,"C",,,
+3,0,"Yousseff, Mr. Gerious","male",,0,0,"2627",14.4583,,"C",,,
+3,0,"Zabour, Miss. Hileni","female",14.5,1,0,"2665",14.4542,,"C",,"328",
+3,0,"Zabour, Miss. Thamine","female",,1,0,"2665",14.4542,,"C",,,
+3,0,"Zakarian, Mr. Mapriededer","male",26.5,0,0,"2656",7.2250,,"C",,"304",
+3,0,"Zakarian, Mr. Ortin","male",27,0,0,"2670",7.2250,,"C",,,
+3,0,"Zimmerman, Mr. Leo","male",29,0,0,"315082",7.8750,,"S",,,
From d1e1fc5c9d637395e32235e45891698478929700 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 18 May 2024 22:37:38 +0530
Subject: [PATCH 05/72] Add files via upload
---
.../Importing_and_Exporting_Data_in_Pandas.md | 291 ++++++++++++++++++
1 file changed, 291 insertions(+)
create mode 100644 contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
diff --git a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
new file mode 100644
index 0000000..a6949d2
--- /dev/null
+++ b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
@@ -0,0 +1,291 @@
+# Importing_and_Exporting_Data_in_Pandas
+
+>Created by Krishna Kaushik
+
+- **Now we're able to create `Series` and `DataFrames` in pandas, but we usually do not do this , in practice we import the data which is in the form of .csv (Comma Seperated Values) , a spreadsheet file or something similar.**
+
+- *Good news is that pandas allows for easy importing of data like this through functions such as ``pd.read_csv()`` and ``pd.read_excel()`` for Microsoft Excel files.*
+
+## 1. Importing from a Google sheet to a pandas dataframe
+
+*Let's say that you wanted to get the information from Google Sheet document into a pandas DataFrame.*.
+
+*You could export it as a .csv file and then import it using ``pd.read_csv()``.*
+
+*In this case, the exported .csv file is called `Titanic.csv`*
+
+
+```python
+## Importing Titanic Data set
+import pandas as pd
+
+titanic_df= pd.read_csv("https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Titanic.csv")
+titanic_df
+```
+
+
+
+
+
+
+
+
+
+
+
pclass
+
survived
+
name
+
sex
+
age
+
sibsp
+
parch
+
ticket
+
fare
+
cabin
+
embarked
+
boat
+
body
+
home.dest
+
+
+
+
+
0
+
1
+
1
+
Allen, Miss. Elisabeth Walton
+
female
+
29.00
+
0
+
0
+
24160
+
211.3375
+
B5
+
S
+
2
+
NaN
+
St Louis, MO
+
+
+
1
+
1
+
1
+
Allison, Master. Hudson Trevor
+
male
+
0.92
+
1
+
2
+
113781
+
151.5500
+
C22 C26
+
S
+
11
+
NaN
+
Montreal, PQ / Chesterville, ON
+
+
+
2
+
1
+
0
+
Allison, Miss. Helen Loraine
+
female
+
2.00
+
1
+
2
+
113781
+
151.5500
+
C22 C26
+
S
+
NaN
+
NaN
+
Montreal, PQ / Chesterville, ON
+
+
+
3
+
1
+
0
+
Allison, Mr. Hudson Joshua Creighton
+
male
+
30.00
+
1
+
2
+
113781
+
151.5500
+
C22 C26
+
S
+
NaN
+
135.0
+
Montreal, PQ / Chesterville, ON
+
+
+
4
+
1
+
0
+
Allison, Mrs. Hudson J C (Bessie Waldo Daniels)
+
female
+
25.00
+
1
+
2
+
113781
+
151.5500
+
C22 C26
+
S
+
NaN
+
NaN
+
Montreal, PQ / Chesterville, ON
+
+
+
...
+
...
+
...
+
...
+
...
+
...
+
...
+
...
+
...
+
...
+
...
+
...
+
...
+
...
+
...
+
+
+
1304
+
3
+
0
+
Zabour, Miss. Hileni
+
female
+
14.50
+
1
+
0
+
2665
+
14.4542
+
NaN
+
C
+
NaN
+
328.0
+
NaN
+
+
+
1305
+
3
+
0
+
Zabour, Miss. Thamine
+
female
+
NaN
+
1
+
0
+
2665
+
14.4542
+
NaN
+
C
+
NaN
+
NaN
+
NaN
+
+
+
1306
+
3
+
0
+
Zakarian, Mr. Mapriededer
+
male
+
26.50
+
0
+
0
+
2656
+
7.2250
+
NaN
+
C
+
NaN
+
304.0
+
NaN
+
+
+
1307
+
3
+
0
+
Zakarian, Mr. Ortin
+
male
+
27.00
+
0
+
0
+
2670
+
7.2250
+
NaN
+
C
+
NaN
+
NaN
+
NaN
+
+
+
1308
+
3
+
0
+
Zimmerman, Mr. Leo
+
male
+
29.00
+
0
+
0
+
315082
+
7.8750
+
NaN
+
S
+
NaN
+
NaN
+
NaN
+
+
+
+
1309 rows × 14 columns
+
+
+
+
+The dataset I am using here for your reference is taken from the same repository i.e ``learn-python`` (https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Titanic.csv) I uploaded it you can use it from there.
+
+**Now we've got the same data from the Google Spreadsheet , but now available as ``pandas DataFrame`` which means we can now apply all pandas functionality over it.**
+
+#### Note: The quiet important thing i am telling is that ``pd.read_csv()`` takes the location of the file (which is in your current working directory) or the hyperlink of the dataset from the other source.
+
+#### But if you want to import the data from Github you can't directly use its link , you have to first convert it to raw by clicking on the raw button present in the repo .
+
+#### Also you can't use the data directly from `Kaggle` you have to use ``kaggle API``
+
+## 2. The Anatomy of DataFrame
+
+**Different functions use different labels for different things, and can get a little confusing.**
+
+- Rows are refer as ``axis=0``
+- columns are refer as ``axis=1``
+
+## 3. Exporting Data
+
+**OK, so after you've made a few changes to your data, you might want to export it and save it so someone else can access the changes.**
+
+**pandas allows you to export ``DataFrame's`` to ``.csv`` format using ``.to_csv()``, or to a spreadsheet format using .to_excel().**
+
+### Exporting a dataframe to a CSV
+
+**We haven't made any changes yet to the ``titanic_df`` DataFrame but let's try to export it.**
+
+
+```python
+#Export the titanic_df DataFrame to csv
+titanic_df.to_csv("exported_titanic.csv")
+```
+
+Running this will save a file called ``exported_titanic.csv`` to the current folder.
From bf4dcff08b1c47b0f15a63634879390156d2f995 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 18 May 2024 22:39:54 +0530
Subject: [PATCH 06/72] Update index.md
---
contrib/pandas/index.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/contrib/pandas/index.md b/contrib/pandas/index.md
index f2a3fa7..84871dd 100644
--- a/contrib/pandas/index.md
+++ b/contrib/pandas/index.md
@@ -2,3 +2,4 @@
- [Pandas Series Vs NumPy ndarray](pandas_series_vs_numpy_ndarray.md)
- [Pandas Introduction and Dataframes in Pandas](Introduction_to_Pandas_Library_and_DataFrames.md)
+- [Importing and Exportin data in pandas](Importing_and_Exporting_Data_in_Pandas.md)
From 849f5abc6e072a7f96aec848fb8d0c5658518be8 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 18 May 2024 22:40:30 +0530
Subject: [PATCH 07/72] Update Importing_and_Exporting_Data_in_Pandas.md
---
.../Importing_and_Exporting_Data_in_Pandas.md | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
index a6949d2..4d0ffad 100644
--- a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
+++ b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
@@ -22,24 +22,6 @@ import pandas as pd
titanic_df= pd.read_csv("https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Titanic.csv")
titanic_df
```
-
-
-
-
-
-
From f012e8c481de8f98a8a32e822268602bfe93f6b6 Mon Sep 17 00:00:00 2001
From: Labqari
Date: Thu, 23 May 2024 15:38:35 +0530
Subject: [PATCH 08/72] adding flask
---
contrib/advanced-python/index.md | 1 +
...duction-to-flask-a-python-web-framework.md | 440 ++++++++++++++++++
2 files changed, 441 insertions(+)
create mode 100644 contrib/advanced-python/introduction-to-flask-a-python-web-framework.md
diff --git a/contrib/advanced-python/index.md b/contrib/advanced-python/index.md
index 5ea5081..027f989 100644
--- a/contrib/advanced-python/index.md
+++ b/contrib/advanced-python/index.md
@@ -1,3 +1,4 @@
# List of sections
- [Decorators/\*args/**kwargs](decorator-kwargs-args.md)
+- [Decorators/\*args/**kwargs](introduction-to-flask-a-python-web-framework.md)
diff --git a/contrib/advanced-python/introduction-to-flask-a-python-web-framework.md b/contrib/advanced-python/introduction-to-flask-a-python-web-framework.md
new file mode 100644
index 0000000..957f39b
--- /dev/null
+++ b/contrib/advanced-python/introduction-to-flask-a-python-web-framework.md
@@ -0,0 +1,440 @@
+Sure, here's the guide without Markdown formatting:
+
+---
+
+# Introduction to Flask: A Python Web Framework
+
+## Table of Contents
+1. Introduction
+2. Prerequisites
+3. Setting Up Your Environment
+4. Creating Your First Flask Application
+ - Project Structure
+ - Hello World Application
+5. Routing
+6. Templates and Static Files
+ - Jinja2 Templating Engine
+ - Serving Static Files
+7. Working with Forms
+ - Handling Form Data
+8. Database Integration
+ - Setting Up SQLAlchemy
+ - Performing CRUD Operations
+9. Error Handling
+10. Testing Your Application
+11. Deploying Your Flask Application
+ - Using Gunicorn
+ - Deploying to Render
+12. Conclusion
+13. Further Reading and Resources
+
+---
+
+## 1. Introduction
+Flask is a lightweight WSGI web application framework in Python. It is designed with simplicity and flexibility in mind, allowing developers to create web applications with minimal setup. Flask was created by Armin Ronacher as part of the Pocoo project and has gained popularity for its ease of use and extensive documentation.
+
+## 2. Prerequisites
+Before starting with Flask, ensure you have the following:
+- Basic knowledge of Python.
+- Understanding of web development concepts (HTML, CSS, JavaScript).
+- Python installed on your machine (version 3.6 or higher).
+- pip (Python package installer) installed.
+
+## 3. Setting Up Your Environment
+1. **Install Python**: Download and install Python from python.org.
+2. **Create a Virtual Environment**:
+ ```
+ python -m venv venv
+ ```
+3. **Activate the Virtual Environment**:
+ - On Windows:
+ ```
+ venv\Scripts\activate
+ ```
+ - On macOS/Linux:
+ ```
+ source venv/bin/activate
+ ```
+4. **Install Flask**:
+ ```
+ pip install Flask
+ ```
+
+## 4. Creating Your First Flask Application
+### Project Structure
+A typical Flask project structure might look like this:
+```
+my_flask_app/
+ app/
+ __init__.py
+ routes.py
+ templates/
+ static/
+ venv/
+ run.py
+```
+
+### Hello World Application
+1. **Create a Directory for Your Project**:
+ ```
+ mkdir my_flask_app
+ cd my_flask_app
+ ```
+2. **Initialize the Application**:
+ - Create `app/__init__.py`:
+ ```python
+ from flask import Flask
+
+ def create_app():
+ app = Flask(__name__)
+
+ with app.app_context():
+ from . import routes
+ return app
+ ```
+ - Create `run.py`:
+ ```python
+ from app import create_app
+
+ app = create_app()
+
+ if __name__ == "__main__":
+ app.run(debug=True)
+ ```
+ - Create `app/routes.py`:
+ ```python
+ from flask import current_app as app
+
+ @app.route('/')
+ def hello_world():
+ return 'Hello, World!'
+ ```
+
+3. **Run the Application**:
+ ```
+ python run.py
+ ```
+ Navigate to `http://127.0.0.1:5000` in your browser to see "Hello, World!".
+
+## 5. Routing
+In Flask, routes are defined using the `@app.route` decorator. Here's an example of different routes:
+
+```python
+from flask import Flask
+
+app = Flask(__name__)
+
+@app.route('/')
+def home():
+ return 'Home Page'
+
+@app.route('/about')
+def about():
+ return 'About Page'
+
+@app.route('/user/')
+def show_user_profile(username):
+ return f'User: {username}'
+```
+
+- **Explanation**:
+ - The `@app.route('/')` decorator binds the URL `'/'` to the `home` function, which returns 'Home Page'.
+ - The `@app.route('/about')` decorator binds the URL `/about` to the `about` function.
+ - The `@app.route('/user/')` decorator binds the URL `/user/` to the `show_user_profile` function, capturing the part of the URL as the `username` variable.
+
+## 6. Templates and Static Files
+### Jinja2 Templating Engine
+Jinja2 is Flask's templating engine. Templates are HTML files that can include dynamic content.
+
+- **Create a Template**:
+ - `app/templates/index.html`:
+ ```html
+
+
+
+ {{ title }}
+
+
+
{{ heading }}
+
{{ content }}
+
+
+ ```
+
+- **Render the Template**:
+ ```python
+ from flask import Flask, render_template
+
+ app = Flask(__name__)
+
+ @app.route('/')
+ def home():
+ return render_template('index.html', title='Home', heading='Welcome to Flask', content='This is a Flask application.')
+ ```
+
+### Serving Static Files
+Static files like CSS, JavaScript, and images are placed in the `static` directory.
+
+- **Create Static Files**:
+ - `app/static/style.css`:
+ ```css
+ body {
+ font-family: Arial, sans-serif;
+ }
+ ```
+
+- **Include Static Files in Templates**:
+ ```html
+
+
+
+ {{ title }}
+
+
+
+
{{ heading }}
+
{{ content }}
+
+
+ ```
+
+## 7. Working with Forms
+### Handling Form Data
+Forms are used to collect user input. Flask provides utilities to handle form submissions.
+
+- **Create a Form**:
+ - `app/templates/form.html`:
+ ```html
+
+
+
+ Form
+
+
+
+
+
+ ```
+
+- **Handle Form Submission**:
+ ```python
+ from flask import Flask, request, render_template
+
+ app = Flask(__name__)
+
+ @app.route('/form')
+ def form():
+ return render_template('form.html')
+
+ @app.route('/submit', methods=['POST'])
+ def submit():
+ name = request.form['name']
+ return f'Hello, {name}!'
+ ```
+
+- **Explanation**:
+ - The `@app.route('/form')` route renders the form.
+ - The `@app.route('/submit', methods=['POST'])` route handles the form submission and displays the input name.
+
+## 8. Database Integration
+### Setting Up SQLAlchemy
+SQLAlchemy is an ORM that allows you to interact with databases using Python objects.
+
+- **Install SQLAlchemy**:
+ ```
+ pip install flask_sqlalchemy
+ ```
+
+- **Configure SQLAlchemy**:
+ - `app/__init__.py`:
+ ```python
+ from flask import Flask
+ from flask_sqlalchemy import SQLAlchemy
+
+ db = SQLAlchemy()
+
+ def create_app():
+ app = Flask(__name__)
+ app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///site.db'
+ db.init_app(app)
+ return app
+ ```
+
+### Performing CRUD Operations
+Define models and perform CRUD operations.
+
+- **Define a Model**:
+ - `app/models.py`:
+ ```python
+ from app import db
+
+ class User(db.Model):
+ id = db.Column(db.Integer, primary key=True)
+ username = db.Column(db.String(80), unique=True, nullable=False)
+
+ def __repr__(self):
+ return f''
+ ```
+
+- **Create the Database**:
+ ```python
+ from app import create_app, db
+ from app.models import User
+
+ app = create_app()
+ with app.app_context():
+ db.create_all()
+ ```
+
+- **Perform CRUD Operations**:
+ ```python
+ from app import db
+ from app.models import User
+
+ # Create
+ new_user = User(username='new_user')
+ db.session.add(new_user)
+ db.session.commit()
+
+ # Read
+ user = User.query.first()
+
+ # Update
+ user.username = 'updated_user'
+ db.session.commit()
+
+ # Delete
+ db.session.delete(user)
+ db.session.commit()
+ ```
+
+## 9. Error Handling
+Error handling in Flask can be managed by defining error handlers for different HTTP status codes.
+
+- **Define an Error Handler**:
+ ```python
+ from flask import Flask, render_template
+
+ app = Flask(__name__)
+
+ @app.errorhandler(404)
+ def page_not_found(e):
+ return render_template('404.html'), 404
+
+ @app.errorhandler(500)
+ def internal_server_error(e):
+ return render_template('500.html'), 500
+ ```
+
+ - **Create Error Pages**:
+ `app/templates/404.html`:
+
+
+
+
+ Page Not Found
+
+
+
Something went wrong on our end. Please try again later.
+
+
+
+
+## 10. Testing Your Application
+Flask applications can be tested using Python's built-in `unittest` framework.
+
+- **Write a Test Case**:
+ - `tests/test_app.py`:
+ ```python
+ import unittest
+ from app import create_app
+
+ class BasicTestCase(unittest.TestCase):
+ def setUp(self):
+ self.app = create_app()
+ self.app.config['TESTING'] = True
+ self.client = self.app.test_client()
+
+ def test_home(self):
+ response = self.client.get('/')
+ self.assertEqual(response.status_code, 200)
+ self.assertIn(b'Hello, World!', response.data)
+
+ if __name__ == '__main__':
+ unittest.main()
+ ```
+
+ - **Run the Tests**:
+ ```
+ python -m unittest discover -s tests
+ ```
+
+## 11. Deploying Your Flask Application
+### Using Gunicorn
+Gunicorn is a Python WSGI HTTP Server for UNIX. It’s a pre-fork worker model, meaning that it forks multiple worker processes to handle requests.
+
+- **Install Gunicorn**:
+ ```
+ pip install gunicorn
+ ```
+
+- **Run Your Application with Gunicorn**:
+ ```
+ gunicorn -w 4 run:app
+ ```
+
+### Deploying to Render
+Render is a cloud platform for deploying web applications.
+
+- **Create a `requirements.txt` File**:
+ ```
+ Flask
+ gunicorn
+ flask_sqlalchemy
+ ```
+
+- **Create a `render.yaml` File**:
+ ```yaml
+ services:
+ - type: web
+ name: my-flask-app
+ env: python
+ plan: free
+ buildCommand: pip install -r requirements.txt
+ startCommand: gunicorn -w 4 run:app
+ ```
+
+- **Deploy Your Application**:
+ 1. Push your code to a Git repository.
+ 2. Sign in to Render and create a new Web Service.
+ 3. Connect your repository and select the branch to deploy.
+ 4. Render will automatically use the `render.yaml` file to configure and deploy your application.
+
+## 12. Conclusion
+Flask is a powerful and flexible framework for building web applications in Python. It offers simplicity and ease of use, making it a great choice for both beginners and experienced developers. This guide covered the basics of setting up a Flask application, routing, templating, working with forms, integrating databases, error handling, testing, and deployment.
+
+## 13. Further Reading and Resources
+- Flask Documentation: https://flask.palletsprojects.com/en/latest/
+- Jinja2 Documentation: https://jinja.palletsprojects.com/en/latest/
+- SQLAlchemy Documentation: https://docs.sqlalchemy.org/en/latest/
+- Render Documentation: https://render.com/docs
\ No newline at end of file
From cdb57900d40905a8cb0685bba807e4a6484475d2 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Fri, 24 May 2024 21:11:33 +0530
Subject: [PATCH 09/72] Delete
contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
---
.../Importing_and_Exporting_Data_in_Pandas.md | 273 ------------------
1 file changed, 273 deletions(-)
delete mode 100644 contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
diff --git a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
deleted file mode 100644
index 4d0ffad..0000000
--- a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
+++ /dev/null
@@ -1,273 +0,0 @@
-# Importing_and_Exporting_Data_in_Pandas
-
->Created by Krishna Kaushik
-
-- **Now we're able to create `Series` and `DataFrames` in pandas, but we usually do not do this , in practice we import the data which is in the form of .csv (Comma Seperated Values) , a spreadsheet file or something similar.**
-
-- *Good news is that pandas allows for easy importing of data like this through functions such as ``pd.read_csv()`` and ``pd.read_excel()`` for Microsoft Excel files.*
-
-## 1. Importing from a Google sheet to a pandas dataframe
-
-*Let's say that you wanted to get the information from Google Sheet document into a pandas DataFrame.*.
-
-*You could export it as a .csv file and then import it using ``pd.read_csv()``.*
-
-*In this case, the exported .csv file is called `Titanic.csv`*
-
-
-```python
-## Importing Titanic Data set
-import pandas as pd
-
-titanic_df= pd.read_csv("https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Titanic.csv")
-titanic_df
-```
-
-
-
-
-
pclass
-
survived
-
name
-
sex
-
age
-
sibsp
-
parch
-
ticket
-
fare
-
cabin
-
embarked
-
boat
-
body
-
home.dest
-
-
-
-
-
0
-
1
-
1
-
Allen, Miss. Elisabeth Walton
-
female
-
29.00
-
0
-
0
-
24160
-
211.3375
-
B5
-
S
-
2
-
NaN
-
St Louis, MO
-
-
-
1
-
1
-
1
-
Allison, Master. Hudson Trevor
-
male
-
0.92
-
1
-
2
-
113781
-
151.5500
-
C22 C26
-
S
-
11
-
NaN
-
Montreal, PQ / Chesterville, ON
-
-
-
2
-
1
-
0
-
Allison, Miss. Helen Loraine
-
female
-
2.00
-
1
-
2
-
113781
-
151.5500
-
C22 C26
-
S
-
NaN
-
NaN
-
Montreal, PQ / Chesterville, ON
-
-
-
3
-
1
-
0
-
Allison, Mr. Hudson Joshua Creighton
-
male
-
30.00
-
1
-
2
-
113781
-
151.5500
-
C22 C26
-
S
-
NaN
-
135.0
-
Montreal, PQ / Chesterville, ON
-
-
-
4
-
1
-
0
-
Allison, Mrs. Hudson J C (Bessie Waldo Daniels)
-
female
-
25.00
-
1
-
2
-
113781
-
151.5500
-
C22 C26
-
S
-
NaN
-
NaN
-
Montreal, PQ / Chesterville, ON
-
-
-
...
-
...
-
...
-
...
-
...
-
...
-
...
-
...
-
...
-
...
-
...
-
...
-
...
-
...
-
...
-
-
-
1304
-
3
-
0
-
Zabour, Miss. Hileni
-
female
-
14.50
-
1
-
0
-
2665
-
14.4542
-
NaN
-
C
-
NaN
-
328.0
-
NaN
-
-
-
1305
-
3
-
0
-
Zabour, Miss. Thamine
-
female
-
NaN
-
1
-
0
-
2665
-
14.4542
-
NaN
-
C
-
NaN
-
NaN
-
NaN
-
-
-
1306
-
3
-
0
-
Zakarian, Mr. Mapriededer
-
male
-
26.50
-
0
-
0
-
2656
-
7.2250
-
NaN
-
C
-
NaN
-
304.0
-
NaN
-
-
-
1307
-
3
-
0
-
Zakarian, Mr. Ortin
-
male
-
27.00
-
0
-
0
-
2670
-
7.2250
-
NaN
-
C
-
NaN
-
NaN
-
NaN
-
-
-
1308
-
3
-
0
-
Zimmerman, Mr. Leo
-
male
-
29.00
-
0
-
0
-
315082
-
7.8750
-
NaN
-
S
-
NaN
-
NaN
-
NaN
-
-
-
-
1309 rows × 14 columns
-
-
-
-
-The dataset I am using here for your reference is taken from the same repository i.e ``learn-python`` (https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Titanic.csv) I uploaded it you can use it from there.
-
-**Now we've got the same data from the Google Spreadsheet , but now available as ``pandas DataFrame`` which means we can now apply all pandas functionality over it.**
-
-#### Note: The quiet important thing i am telling is that ``pd.read_csv()`` takes the location of the file (which is in your current working directory) or the hyperlink of the dataset from the other source.
-
-#### But if you want to import the data from Github you can't directly use its link , you have to first convert it to raw by clicking on the raw button present in the repo .
-
-#### Also you can't use the data directly from `Kaggle` you have to use ``kaggle API``
-
-## 2. The Anatomy of DataFrame
-
-**Different functions use different labels for different things, and can get a little confusing.**
-
-- Rows are refer as ``axis=0``
-- columns are refer as ``axis=1``
-
-## 3. Exporting Data
-
-**OK, so after you've made a few changes to your data, you might want to export it and save it so someone else can access the changes.**
-
-**pandas allows you to export ``DataFrame's`` to ``.csv`` format using ``.to_csv()``, or to a spreadsheet format using .to_excel().**
-
-### Exporting a dataframe to a CSV
-
-**We haven't made any changes yet to the ``titanic_df`` DataFrame but let's try to export it.**
-
-
-```python
-#Export the titanic_df DataFrame to csv
-titanic_df.to_csv("exported_titanic.csv")
-```
-
-Running this will save a file called ``exported_titanic.csv`` to the current folder.
From bd52a3a43bf558f158b3bf2880d8212a93ad8a83 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Fri, 24 May 2024 21:12:23 +0530
Subject: [PATCH 10/72] Delete contrib/pandas/Titanic.csv
---
contrib/pandas/Titanic.csv | 1310 ------------------------------------
1 file changed, 1310 deletions(-)
delete mode 100644 contrib/pandas/Titanic.csv
diff --git a/contrib/pandas/Titanic.csv b/contrib/pandas/Titanic.csv
deleted file mode 100644
index f8d49dc..0000000
--- a/contrib/pandas/Titanic.csv
+++ /dev/null
@@ -1,1310 +0,0 @@
-"pclass","survived","name","sex","age","sibsp","parch","ticket","fare","cabin","embarked","boat","body","home.dest"
-1,1,"Allen, Miss. Elisabeth Walton","female",29,0,0,"24160",211.3375,"B5","S","2",,"St Louis, MO"
-1,1,"Allison, Master. Hudson Trevor","male",0.92,1,2,"113781",151.5500,"C22 C26","S","11",,"Montreal, PQ / Chesterville, ON"
-1,0,"Allison, Miss. Helen Loraine","female",2,1,2,"113781",151.5500,"C22 C26","S",,,"Montreal, PQ / Chesterville, ON"
-1,0,"Allison, Mr. Hudson Joshua Creighton","male",30,1,2,"113781",151.5500,"C22 C26","S",,"135","Montreal, PQ / Chesterville, ON"
-1,0,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)","female",25,1,2,"113781",151.5500,"C22 C26","S",,,"Montreal, PQ / Chesterville, ON"
-1,1,"Anderson, Mr. Harry","male",48,0,0,"19952",26.5500,"E12","S","3",,"New York, NY"
-1,1,"Andrews, Miss. Kornelia Theodosia","female",63,1,0,"13502",77.9583,"D7","S","10",,"Hudson, NY"
-1,0,"Andrews, Mr. Thomas Jr","male",39,0,0,"112050",0.0000,"A36","S",,,"Belfast, NI"
-1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)","female",53,2,0,"11769",51.4792,"C101","S","D",,"Bayside, Queens, NY"
-1,0,"Artagaveytia, Mr. Ramon","male",71,0,0,"PC 17609",49.5042,,"C",,"22","Montevideo, Uruguay"
-1,0,"Astor, Col. John Jacob","male",47,1,0,"PC 17757",227.5250,"C62 C64","C",,"124","New York, NY"
-1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)","female",18,1,0,"PC 17757",227.5250,"C62 C64","C","4",,"New York, NY"
-1,1,"Aubart, Mme. Leontine Pauline","female",24,0,0,"PC 17477",69.3000,"B35","C","9",,"Paris, France"
-1,1,"Barber, Miss. Ellen ""Nellie""","female",26,0,0,"19877",78.8500,,"S","6",,
-1,1,"Barkworth, Mr. Algernon Henry Wilson","male",80,0,0,"27042",30.0000,"A23","S","B",,"Hessle, Yorks"
-1,0,"Baumann, Mr. John D","male",,0,0,"PC 17318",25.9250,,"S",,,"New York, NY"
-1,0,"Baxter, Mr. Quigg Edmond","male",24,0,1,"PC 17558",247.5208,"B58 B60","C",,,"Montreal, PQ"
-1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)","female",50,0,1,"PC 17558",247.5208,"B58 B60","C","6",,"Montreal, PQ"
-1,1,"Bazzani, Miss. Albina","female",32,0,0,"11813",76.2917,"D15","C","8",,
-1,0,"Beattie, Mr. Thomson","male",36,0,0,"13050",75.2417,"C6","C","A",,"Winnipeg, MN"
-1,1,"Beckwith, Mr. Richard Leonard","male",37,1,1,"11751",52.5542,"D35","S","5",,"New York, NY"
-1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)","female",47,1,1,"11751",52.5542,"D35","S","5",,"New York, NY"
-1,1,"Behr, Mr. Karl Howell","male",26,0,0,"111369",30.0000,"C148","C","5",,"New York, NY"
-1,1,"Bidois, Miss. Rosalie","female",42,0,0,"PC 17757",227.5250,,"C","4",,
-1,1,"Bird, Miss. Ellen","female",29,0,0,"PC 17483",221.7792,"C97","S","8",,
-1,0,"Birnbaum, Mr. Jakob","male",25,0,0,"13905",26.0000,,"C",,"148","San Francisco, CA"
-1,1,"Bishop, Mr. Dickinson H","male",25,1,0,"11967",91.0792,"B49","C","7",,"Dowagiac, MI"
-1,1,"Bishop, Mrs. Dickinson H (Helen Walton)","female",19,1,0,"11967",91.0792,"B49","C","7",,"Dowagiac, MI"
-1,1,"Bissette, Miss. Amelia","female",35,0,0,"PC 17760",135.6333,"C99","S","8",,
-1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan","male",28,0,0,"110564",26.5500,"C52","S","D",,"Stockholm, Sweden / Washington, DC"
-1,0,"Blackwell, Mr. Stephen Weart","male",45,0,0,"113784",35.5000,"T","S",,,"Trenton, NJ"
-1,1,"Blank, Mr. Henry","male",40,0,0,"112277",31.0000,"A31","C","7",,"Glen Ridge, NJ"
-1,1,"Bonnell, Miss. Caroline","female",30,0,0,"36928",164.8667,"C7","S","8",,"Youngstown, OH"
-1,1,"Bonnell, Miss. Elizabeth","female",58,0,0,"113783",26.5500,"C103","S","8",,"Birkdale, England Cleveland, Ohio"
-1,0,"Borebank, Mr. John James","male",42,0,0,"110489",26.5500,"D22","S",,,"London / Winnipeg, MB"
-1,1,"Bowen, Miss. Grace Scott","female",45,0,0,"PC 17608",262.3750,,"C","4",,"Cooperstown, NY"
-1,1,"Bowerman, Miss. Elsie Edith","female",22,0,1,"113505",55.0000,"E33","S","6",,"St Leonards-on-Sea, England Ohio"
-1,1,"Bradley, Mr. George (""George Arthur Brayton"")","male",,0,0,"111427",26.5500,,"S","9",,"Los Angeles, CA"
-1,0,"Brady, Mr. John Bertram","male",41,0,0,"113054",30.5000,"A21","S",,,"Pomeroy, WA"
-1,0,"Brandeis, Mr. Emil","male",48,0,0,"PC 17591",50.4958,"B10","C",,"208","Omaha, NE"
-1,0,"Brewe, Dr. Arthur Jackson","male",,0,0,"112379",39.6000,,"C",,,"Philadelphia, PA"
-1,1,"Brown, Mrs. James Joseph (Margaret Tobin)","female",44,0,0,"PC 17610",27.7208,"B4","C","6",,"Denver, CO"
-1,1,"Brown, Mrs. John Murray (Caroline Lane Lamson)","female",59,2,0,"11769",51.4792,"C101","S","D",,"Belmont, MA"
-1,1,"Bucknell, Mrs. William Robert (Emma Eliza Ward)","female",60,0,0,"11813",76.2917,"D15","C","8",,"Philadelphia, PA"
-1,1,"Burns, Miss. Elizabeth Margaret","female",41,0,0,"16966",134.5000,"E40","C","3",,
-1,0,"Butt, Major. Archibald Willingham","male",45,0,0,"113050",26.5500,"B38","S",,,"Washington, DC"
-1,0,"Cairns, Mr. Alexander","male",,0,0,"113798",31.0000,,"S",,,
-1,1,"Calderhead, Mr. Edward Pennington","male",42,0,0,"PC 17476",26.2875,"E24","S","5",,"New York, NY"
-1,1,"Candee, Mrs. Edward (Helen Churchill Hungerford)","female",53,0,0,"PC 17606",27.4458,,"C","6",,"Washington, DC"
-1,1,"Cardeza, Mr. Thomas Drake Martinez","male",36,0,1,"PC 17755",512.3292,"B51 B53 B55","C","3",,"Austria-Hungary / Germantown, Philadelphia, PA"
-1,1,"Cardeza, Mrs. James Warburton Martinez (Charlotte Wardle Drake)","female",58,0,1,"PC 17755",512.3292,"B51 B53 B55","C","3",,"Germantown, Philadelphia, PA"
-1,0,"Carlsson, Mr. Frans Olof","male",33,0,0,"695",5.0000,"B51 B53 B55","S",,,"New York, NY"
-1,0,"Carrau, Mr. Francisco M","male",28,0,0,"113059",47.1000,,"S",,,"Montevideo, Uruguay"
-1,0,"Carrau, Mr. Jose Pedro","male",17,0,0,"113059",47.1000,,"S",,,"Montevideo, Uruguay"
-1,1,"Carter, Master. William Thornton II","male",11,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
-1,1,"Carter, Miss. Lucile Polk","female",14,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
-1,1,"Carter, Mr. William Ernest","male",36,1,2,"113760",120.0000,"B96 B98","S","C",,"Bryn Mawr, PA"
-1,1,"Carter, Mrs. William Ernest (Lucile Polk)","female",36,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
-1,0,"Case, Mr. Howard Brown","male",49,0,0,"19924",26.0000,,"S",,,"Ascot, Berkshire / Rochester, NY"
-1,1,"Cassebeer, Mrs. Henry Arthur Jr (Eleanor Genevieve Fosdick)","female",,0,0,"17770",27.7208,,"C","5",,"New York, NY"
-1,0,"Cavendish, Mr. Tyrell William","male",36,1,0,"19877",78.8500,"C46","S",,"172","Little Onn Hall, Staffs"
-1,1,"Cavendish, Mrs. Tyrell William (Julia Florence Siegel)","female",76,1,0,"19877",78.8500,"C46","S","6",,"Little Onn Hall, Staffs"
-1,0,"Chaffee, Mr. Herbert Fuller","male",46,1,0,"W.E.P. 5734",61.1750,"E31","S",,,"Amenia, ND"
-1,1,"Chaffee, Mrs. Herbert Fuller (Carrie Constance Toogood)","female",47,1,0,"W.E.P. 5734",61.1750,"E31","S","4",,"Amenia, ND"
-1,1,"Chambers, Mr. Norman Campbell","male",27,1,0,"113806",53.1000,"E8","S","5",,"New York, NY / Ithaca, NY"
-1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)","female",33,1,0,"113806",53.1000,"E8","S","5",,"New York, NY / Ithaca, NY"
-1,1,"Chaudanson, Miss. Victorine","female",36,0,0,"PC 17608",262.3750,"B61","C","4",,
-1,1,"Cherry, Miss. Gladys","female",30,0,0,"110152",86.5000,"B77","S","8",,"London, England"
-1,1,"Chevre, Mr. Paul Romaine","male",45,0,0,"PC 17594",29.7000,"A9","C","7",,"Paris, France"
-1,1,"Chibnall, Mrs. (Edith Martha Bowerman)","female",,0,1,"113505",55.0000,"E33","S","6",,"St Leonards-on-Sea, England Ohio"
-1,0,"Chisholm, Mr. Roderick Robert Crispin","male",,0,0,"112051",0.0000,,"S",,,"Liverpool, England / Belfast"
-1,0,"Clark, Mr. Walter Miller","male",27,1,0,"13508",136.7792,"C89","C",,,"Los Angeles, CA"
-1,1,"Clark, Mrs. Walter Miller (Virginia McDowell)","female",26,1,0,"13508",136.7792,"C89","C","4",,"Los Angeles, CA"
-1,1,"Cleaver, Miss. Alice","female",22,0,0,"113781",151.5500,,"S","11",,
-1,0,"Clifford, Mr. George Quincy","male",,0,0,"110465",52.0000,"A14","S",,,"Stoughton, MA"
-1,0,"Colley, Mr. Edward Pomeroy","male",47,0,0,"5727",25.5875,"E58","S",,,"Victoria, BC"
-1,1,"Compton, Miss. Sara Rebecca","female",39,1,1,"PC 17756",83.1583,"E49","C","14",,"Lakewood, NJ"
-1,0,"Compton, Mr. Alexander Taylor Jr","male",37,1,1,"PC 17756",83.1583,"E52","C",,,"Lakewood, NJ"
-1,1,"Compton, Mrs. Alexander Taylor (Mary Eliza Ingersoll)","female",64,0,2,"PC 17756",83.1583,"E45","C","14",,"Lakewood, NJ"
-1,1,"Cornell, Mrs. Robert Clifford (Malvina Helen Lamson)","female",55,2,0,"11770",25.7000,"C101","S","2",,"New York, NY"
-1,0,"Crafton, Mr. John Bertram","male",,0,0,"113791",26.5500,,"S",,,"Roachdale, IN"
-1,0,"Crosby, Capt. Edward Gifford","male",70,1,1,"WE/P 5735",71.0000,"B22","S",,"269","Milwaukee, WI"
-1,1,"Crosby, Miss. Harriet R","female",36,0,2,"WE/P 5735",71.0000,"B22","S","7",,"Milwaukee, WI"
-1,1,"Crosby, Mrs. Edward Gifford (Catherine Elizabeth Halstead)","female",64,1,1,"112901",26.5500,"B26","S","7",,"Milwaukee, WI"
-1,0,"Cumings, Mr. John Bradley","male",39,1,0,"PC 17599",71.2833,"C85","C",,,"New York, NY"
-1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)","female",38,1,0,"PC 17599",71.2833,"C85","C","4",,"New York, NY"
-1,1,"Daly, Mr. Peter Denis ","male",51,0,0,"113055",26.5500,"E17","S","5 9",,"Lima, Peru"
-1,1,"Daniel, Mr. Robert Williams","male",27,0,0,"113804",30.5000,,"S","3",,"Philadelphia, PA"
-1,1,"Daniels, Miss. Sarah","female",33,0,0,"113781",151.5500,,"S","8",,
-1,0,"Davidson, Mr. Thornton","male",31,1,0,"F.C. 12750",52.0000,"B71","S",,,"Montreal, PQ"
-1,1,"Davidson, Mrs. Thornton (Orian Hays)","female",27,1,2,"F.C. 12750",52.0000,"B71","S","3",,"Montreal, PQ"
-1,1,"Dick, Mr. Albert Adrian","male",31,1,0,"17474",57.0000,"B20","S","3",,"Calgary, AB"
-1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)","female",17,1,0,"17474",57.0000,"B20","S","3",,"Calgary, AB"
-1,1,"Dodge, Dr. Washington","male",53,1,1,"33638",81.8583,"A34","S","13",,"San Francisco, CA"
-1,1,"Dodge, Master. Washington","male",4,0,2,"33638",81.8583,"A34","S","5",,"San Francisco, CA"
-1,1,"Dodge, Mrs. Washington (Ruth Vidaver)","female",54,1,1,"33638",81.8583,"A34","S","5",,"San Francisco, CA"
-1,0,"Douglas, Mr. Walter Donald","male",50,1,0,"PC 17761",106.4250,"C86","C",,"62","Deephaven, MN / Cedar Rapids, IA"
-1,1,"Douglas, Mrs. Frederick Charles (Mary Helene Baxter)","female",27,1,1,"PC 17558",247.5208,"B58 B60","C","6",,"Montreal, PQ"
-1,1,"Douglas, Mrs. Walter Donald (Mahala Dutton)","female",48,1,0,"PC 17761",106.4250,"C86","C","2",,"Deephaven, MN / Cedar Rapids, IA"
-1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")","female",48,1,0,"11755",39.6000,"A16","C","1",,"London / Paris"
-1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")","male",49,1,0,"PC 17485",56.9292,"A20","C","1",,"London / Paris"
-1,0,"Dulles, Mr. William Crothers","male",39,0,0,"PC 17580",29.7000,"A18","C",,"133","Philadelphia, PA"
-1,1,"Earnshaw, Mrs. Boulton (Olive Potter)","female",23,0,1,"11767",83.1583,"C54","C","7",,"Mt Airy, Philadelphia, PA"
-1,1,"Endres, Miss. Caroline Louise","female",38,0,0,"PC 17757",227.5250,"C45","C","4",,"New York, NY"
-1,1,"Eustis, Miss. Elizabeth Mussey","female",54,1,0,"36947",78.2667,"D20","C","4",,"Brookline, MA"
-1,0,"Evans, Miss. Edith Corse","female",36,0,0,"PC 17531",31.6792,"A29","C",,,"New York, NY"
-1,0,"Farthing, Mr. John","male",,0,0,"PC 17483",221.7792,"C95","S",,,
-1,1,"Flegenheim, Mrs. Alfred (Antoinette)","female",,0,0,"PC 17598",31.6833,,"S","7",,"New York, NY"
-1,1,"Fleming, Miss. Margaret","female",,0,0,"17421",110.8833,,"C","4",,
-1,1,"Flynn, Mr. John Irwin (""Irving"")","male",36,0,0,"PC 17474",26.3875,"E25","S","5",,"Brooklyn, NY"
-1,0,"Foreman, Mr. Benjamin Laventall","male",30,0,0,"113051",27.7500,"C111","C",,,"New York, NY"
-1,1,"Fortune, Miss. Alice Elizabeth","female",24,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
-1,1,"Fortune, Miss. Ethel Flora","female",28,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
-1,1,"Fortune, Miss. Mabel Helen","female",23,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
-1,0,"Fortune, Mr. Charles Alexander","male",19,3,2,"19950",263.0000,"C23 C25 C27","S",,,"Winnipeg, MB"
-1,0,"Fortune, Mr. Mark","male",64,1,4,"19950",263.0000,"C23 C25 C27","S",,,"Winnipeg, MB"
-1,1,"Fortune, Mrs. Mark (Mary McDougald)","female",60,1,4,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
-1,1,"Francatelli, Miss. Laura Mabel","female",30,0,0,"PC 17485",56.9292,"E36","C","1",,
-1,0,"Franklin, Mr. Thomas Parham","male",,0,0,"113778",26.5500,"D34","S",,,"Westcliff-on-Sea, Essex"
-1,1,"Frauenthal, Dr. Henry William","male",50,2,0,"PC 17611",133.6500,,"S","5",,"New York, NY"
-1,1,"Frauenthal, Mr. Isaac Gerald","male",43,1,0,"17765",27.7208,"D40","C","5",,"New York, NY"
-1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)","female",,1,0,"PC 17611",133.6500,,"S","5",,"New York, NY"
-1,1,"Frolicher, Miss. Hedwig Margaritha","female",22,0,2,"13568",49.5000,"B39","C","5",,"Zurich, Switzerland"
-1,1,"Frolicher-Stehli, Mr. Maxmillian","male",60,1,1,"13567",79.2000,"B41","C","5",,"Zurich, Switzerland"
-1,1,"Frolicher-Stehli, Mrs. Maxmillian (Margaretha Emerentia Stehli)","female",48,1,1,"13567",79.2000,"B41","C","5",,"Zurich, Switzerland"
-1,0,"Fry, Mr. Richard","male",,0,0,"112058",0.0000,"B102","S",,,
-1,0,"Futrelle, Mr. Jacques Heath","male",37,1,0,"113803",53.1000,"C123","S",,,"Scituate, MA"
-1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)","female",35,1,0,"113803",53.1000,"C123","S","D",,"Scituate, MA"
-1,0,"Gee, Mr. Arthur H","male",47,0,0,"111320",38.5000,"E63","S",,"275","St Anne's-on-Sea, Lancashire"
-1,1,"Geiger, Miss. Amalie","female",35,0,0,"113503",211.5000,"C130","C","4",,
-1,1,"Gibson, Miss. Dorothy Winifred","female",22,0,1,"112378",59.4000,,"C","7",,"New York, NY"
-1,1,"Gibson, Mrs. Leonard (Pauline C Boeson)","female",45,0,1,"112378",59.4000,,"C","7",,"New York, NY"
-1,0,"Giglio, Mr. Victor","male",24,0,0,"PC 17593",79.2000,"B86","C",,,
-1,1,"Goldenberg, Mr. Samuel L","male",49,1,0,"17453",89.1042,"C92","C","5",,"Paris, France / New York, NY"
-1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)","female",,1,0,"17453",89.1042,"C92","C","5",,"Paris, France / New York, NY"
-1,0,"Goldschmidt, Mr. George B","male",71,0,0,"PC 17754",34.6542,"A5","C",,,"New York, NY"
-1,1,"Gracie, Col. Archibald IV","male",53,0,0,"113780",28.5000,"C51","C","B",,"Washington, DC"
-1,1,"Graham, Miss. Margaret Edith","female",19,0,0,"112053",30.0000,"B42","S","3",,"Greenwich, CT"
-1,0,"Graham, Mr. George Edward","male",38,0,1,"PC 17582",153.4625,"C91","S",,"147","Winnipeg, MB"
-1,1,"Graham, Mrs. William Thompson (Edith Junkins)","female",58,0,1,"PC 17582",153.4625,"C125","S","3",,"Greenwich, CT"
-1,1,"Greenfield, Mr. William Bertram","male",23,0,1,"PC 17759",63.3583,"D10 D12","C","7",,"New York, NY"
-1,1,"Greenfield, Mrs. Leo David (Blanche Strouse)","female",45,0,1,"PC 17759",63.3583,"D10 D12","C","7",,"New York, NY"
-1,0,"Guggenheim, Mr. Benjamin","male",46,0,0,"PC 17593",79.2000,"B82 B84","C",,,"New York, NY"
-1,1,"Harder, Mr. George Achilles","male",25,1,0,"11765",55.4417,"E50","C","5",,"Brooklyn, NY"
-1,1,"Harder, Mrs. George Achilles (Dorothy Annan)","female",25,1,0,"11765",55.4417,"E50","C","5",,"Brooklyn, NY"
-1,1,"Harper, Mr. Henry Sleeper","male",48,1,0,"PC 17572",76.7292,"D33","C","3",,"New York, NY"
-1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)","female",49,1,0,"PC 17572",76.7292,"D33","C","3",,"New York, NY"
-1,0,"Harrington, Mr. Charles H","male",,0,0,"113796",42.4000,,"S",,,
-1,0,"Harris, Mr. Henry Birkhardt","male",45,1,0,"36973",83.4750,"C83","S",,,"New York, NY"
-1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)","female",35,1,0,"36973",83.4750,"C83","S","D",,"New York, NY"
-1,0,"Harrison, Mr. William","male",40,0,0,"112059",0.0000,"B94","S",,"110",
-1,1,"Hassab, Mr. Hammad","male",27,0,0,"PC 17572",76.7292,"D49","C","3",,
-1,1,"Hawksford, Mr. Walter James","male",,0,0,"16988",30.0000,"D45","S","3",,"Kingston, Surrey"
-1,1,"Hays, Miss. Margaret Bechstein","female",24,0,0,"11767",83.1583,"C54","C","7",,"New York, NY"
-1,0,"Hays, Mr. Charles Melville","male",55,1,1,"12749",93.5000,"B69","S",,"307","Montreal, PQ"
-1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)","female",52,1,1,"12749",93.5000,"B69","S","3",,"Montreal, PQ"
-1,0,"Head, Mr. Christopher","male",42,0,0,"113038",42.5000,"B11","S",,,"London / Middlesex"
-1,0,"Hilliard, Mr. Herbert Henry","male",,0,0,"17463",51.8625,"E46","S",,,"Brighton, MA"
-1,0,"Hipkins, Mr. William Edward","male",55,0,0,"680",50.0000,"C39","S",,,"London / Birmingham"
-1,1,"Hippach, Miss. Jean Gertrude","female",16,0,1,"111361",57.9792,"B18","C","4",,"Chicago, IL"
-1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)","female",44,0,1,"111361",57.9792,"B18","C","4",,"Chicago, IL"
-1,1,"Hogeboom, Mrs. John C (Anna Andrews)","female",51,1,0,"13502",77.9583,"D11","S","10",,"Hudson, NY"
-1,0,"Holverson, Mr. Alexander Oskar","male",42,1,0,"113789",52.0000,,"S",,"38","New York, NY"
-1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)","female",35,1,0,"113789",52.0000,,"S","8",,"New York, NY"
-1,1,"Homer, Mr. Harry (""Mr E Haven"")","male",35,0,0,"111426",26.5500,,"C","15",,"Indianapolis, IN"
-1,1,"Hoyt, Mr. Frederick Maxfield","male",38,1,0,"19943",90.0000,"C93","S","D",,"New York, NY / Stamford CT"
-1,0,"Hoyt, Mr. William Fisher","male",,0,0,"PC 17600",30.6958,,"C","14",,"New York, NY"
-1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)","female",35,1,0,"19943",90.0000,"C93","S","D",,"New York, NY / Stamford CT"
-1,1,"Icard, Miss. Amelie","female",38,0,0,"113572",80.0000,"B28",,"6",,
-1,0,"Isham, Miss. Ann Elizabeth","female",50,0,0,"PC 17595",28.7125,"C49","C",,,"Paris, France New York, NY"
-1,1,"Ismay, Mr. Joseph Bruce","male",49,0,0,"112058",0.0000,"B52 B54 B56","S","C",,"Liverpool"
-1,0,"Jones, Mr. Charles Cresson","male",46,0,0,"694",26.0000,,"S",,"80","Bennington, VT"
-1,0,"Julian, Mr. Henry Forbes","male",50,0,0,"113044",26.0000,"E60","S",,,"London"
-1,0,"Keeping, Mr. Edwin","male",32.5,0,0,"113503",211.5000,"C132","C",,"45",
-1,0,"Kent, Mr. Edward Austin","male",58,0,0,"11771",29.7000,"B37","C",,"258","Buffalo, NY"
-1,0,"Kenyon, Mr. Frederick R","male",41,1,0,"17464",51.8625,"D21","S",,,"Southington / Noank, CT"
-1,1,"Kenyon, Mrs. Frederick R (Marion)","female",,1,0,"17464",51.8625,"D21","S","8",,"Southington / Noank, CT"
-1,1,"Kimball, Mr. Edwin Nelson Jr","male",42,1,0,"11753",52.5542,"D19","S","5",,"Boston, MA"
-1,1,"Kimball, Mrs. Edwin Nelson Jr (Gertrude Parsons)","female",45,1,0,"11753",52.5542,"D19","S","5",,"Boston, MA"
-1,0,"Klaber, Mr. Herman","male",,0,0,"113028",26.5500,"C124","S",,,"Portland, OR"
-1,1,"Kreuchen, Miss. Emilie","female",39,0,0,"24160",211.3375,,"S","2",,
-1,1,"Leader, Dr. Alice (Farnham)","female",49,0,0,"17465",25.9292,"D17","S","8",,"New York, NY"
-1,1,"LeRoy, Miss. Bertha","female",30,0,0,"PC 17761",106.4250,,"C","2",,
-1,1,"Lesurer, Mr. Gustave J","male",35,0,0,"PC 17755",512.3292,"B101","C","3",,
-1,0,"Lewy, Mr. Ervin G","male",,0,0,"PC 17612",27.7208,,"C",,,"Chicago, IL"
-1,0,"Lindeberg-Lind, Mr. Erik Gustaf (""Mr Edward Lingrey"")","male",42,0,0,"17475",26.5500,,"S",,,"Stockholm, Sweden"
-1,1,"Lindstrom, Mrs. Carl Johan (Sigrid Posse)","female",55,0,0,"112377",27.7208,,"C","6",,"Stockholm, Sweden"
-1,1,"Lines, Miss. Mary Conover","female",16,0,1,"PC 17592",39.4000,"D28","S","9",,"Paris, France"
-1,1,"Lines, Mrs. Ernest H (Elizabeth Lindsey James)","female",51,0,1,"PC 17592",39.4000,"D28","S","9",,"Paris, France"
-1,0,"Long, Mr. Milton Clyde","male",29,0,0,"113501",30.0000,"D6","S",,"126","Springfield, MA"
-1,1,"Longley, Miss. Gretchen Fiske","female",21,0,0,"13502",77.9583,"D9","S","10",,"Hudson, NY"
-1,0,"Loring, Mr. Joseph Holland","male",30,0,0,"113801",45.5000,,"S",,,"London / New York, NY"
-1,1,"Lurette, Miss. Elise","female",58,0,0,"PC 17569",146.5208,"B80","C",,,
-1,1,"Madill, Miss. Georgette Alexandra","female",15,0,1,"24160",211.3375,"B5","S","2",,"St Louis, MO"
-1,0,"Maguire, Mr. John Edward","male",30,0,0,"110469",26.0000,"C106","S",,,"Brockton, MA"
-1,1,"Maioni, Miss. Roberta","female",16,0,0,"110152",86.5000,"B79","S","8",,
-1,1,"Marechal, Mr. Pierre","male",,0,0,"11774",29.7000,"C47","C","7",,"Paris, France"
-1,0,"Marvin, Mr. Daniel Warner","male",19,1,0,"113773",53.1000,"D30","S",,,"New York, NY"
-1,1,"Marvin, Mrs. Daniel Warner (Mary Graham Carmichael Farquarson)","female",18,1,0,"113773",53.1000,"D30","S","10",,"New York, NY"
-1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")","female",24,0,0,"PC 17482",49.5042,"C90","C","6",,"Belgium Montreal, PQ"
-1,0,"McCaffry, Mr. Thomas Francis","male",46,0,0,"13050",75.2417,"C6","C",,"292","Vancouver, BC"
-1,0,"McCarthy, Mr. Timothy J","male",54,0,0,"17463",51.8625,"E46","S",,"175","Dorchester, MA"
-1,1,"McGough, Mr. James Robert","male",36,0,0,"PC 17473",26.2875,"E25","S","7",,"Philadelphia, PA"
-1,0,"Meyer, Mr. Edgar Joseph","male",28,1,0,"PC 17604",82.1708,,"C",,,"New York, NY"
-1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)","female",,1,0,"PC 17604",82.1708,,"C","6",,"New York, NY"
-1,0,"Millet, Mr. Francis Davis","male",65,0,0,"13509",26.5500,"E38","S",,"249","East Bridgewater, MA"
-1,0,"Minahan, Dr. William Edward","male",44,2,0,"19928",90.0000,"C78","Q",,"230","Fond du Lac, WI"
-1,1,"Minahan, Miss. Daisy E","female",33,1,0,"19928",90.0000,"C78","Q","14",,"Green Bay, WI"
-1,1,"Minahan, Mrs. William Edward (Lillian E Thorpe)","female",37,1,0,"19928",90.0000,"C78","Q","14",,"Fond du Lac, WI"
-1,1,"Mock, Mr. Philipp Edmund","male",30,1,0,"13236",57.7500,"C78","C","11",,"New York, NY"
-1,0,"Molson, Mr. Harry Markland","male",55,0,0,"113787",30.5000,"C30","S",,,"Montreal, PQ"
-1,0,"Moore, Mr. Clarence Bloomfield","male",47,0,0,"113796",42.4000,,"S",,,"Washington, DC"
-1,0,"Natsch, Mr. Charles H","male",37,0,1,"PC 17596",29.7000,"C118","C",,,"Brooklyn, NY"
-1,1,"Newell, Miss. Madeleine","female",31,1,0,"35273",113.2750,"D36","C","6",,"Lexington, MA"
-1,1,"Newell, Miss. Marjorie","female",23,1,0,"35273",113.2750,"D36","C","6",,"Lexington, MA"
-1,0,"Newell, Mr. Arthur Webster","male",58,0,2,"35273",113.2750,"D48","C",,"122","Lexington, MA"
-1,1,"Newsom, Miss. Helen Monypeny","female",19,0,2,"11752",26.2833,"D47","S","5",,"New York, NY"
-1,0,"Nicholson, Mr. Arthur Ernest","male",64,0,0,"693",26.0000,,"S",,"263","Isle of Wight, England"
-1,1,"Oliva y Ocana, Dona. Fermina","female",39,0,0,"PC 17758",108.9000,"C105","C","8",,
-1,1,"Omont, Mr. Alfred Fernand","male",,0,0,"F.C. 12998",25.7417,,"C","7",,"Paris, France"
-1,1,"Ostby, Miss. Helene Ragnhild","female",22,0,1,"113509",61.9792,"B36","C","5",,"Providence, RI"
-1,0,"Ostby, Mr. Engelhart Cornelius","male",65,0,1,"113509",61.9792,"B30","C",,"234","Providence, RI"
-1,0,"Ovies y Rodriguez, Mr. Servando","male",28.5,0,0,"PC 17562",27.7208,"D43","C",,"189","?Havana, Cuba"
-1,0,"Parr, Mr. William Henry Marsh","male",,0,0,"112052",0.0000,,"S",,,"Belfast"
-1,0,"Partner, Mr. Austen","male",45.5,0,0,"113043",28.5000,"C124","S",,"166","Surbiton Hill, Surrey"
-1,0,"Payne, Mr. Vivian Ponsonby","male",23,0,0,"12749",93.5000,"B24","S",,,"Montreal, PQ"
-1,0,"Pears, Mr. Thomas Clinton","male",29,1,0,"113776",66.6000,"C2","S",,,"Isleworth, England"
-1,1,"Pears, Mrs. Thomas (Edith Wearne)","female",22,1,0,"113776",66.6000,"C2","S","8",,"Isleworth, England"
-1,0,"Penasco y Castellana, Mr. Victor de Satode","male",18,1,0,"PC 17758",108.9000,"C65","C",,,"Madrid, Spain"
-1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)","female",17,1,0,"PC 17758",108.9000,"C65","C","8",,"Madrid, Spain"
-1,1,"Perreault, Miss. Anne","female",30,0,0,"12749",93.5000,"B73","S","3",,
-1,1,"Peuchen, Major. Arthur Godfrey","male",52,0,0,"113786",30.5000,"C104","S","6",,"Toronto, ON"
-1,0,"Porter, Mr. Walter Chamberlain","male",47,0,0,"110465",52.0000,"C110","S",,"207","Worcester, MA"
-1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)","female",56,0,1,"11767",83.1583,"C50","C","7",,"Mt Airy, Philadelphia, PA"
-1,0,"Reuchlin, Jonkheer. John George","male",38,0,0,"19972",0.0000,,"S",,,"Rotterdam, Netherlands"
-1,1,"Rheims, Mr. George Alexander Lucien","male",,0,0,"PC 17607",39.6000,,"S","A",,"Paris / New York, NY"
-1,0,"Ringhini, Mr. Sante","male",22,0,0,"PC 17760",135.6333,,"C",,"232",
-1,0,"Robbins, Mr. Victor","male",,0,0,"PC 17757",227.5250,,"C",,,
-1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)","female",43,0,1,"24160",211.3375,"B3","S","2",,"St Louis, MO"
-1,0,"Roebling, Mr. Washington Augustus II","male",31,0,0,"PC 17590",50.4958,"A24","S",,,"Trenton, NJ"
-1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")","male",45,0,0,"111428",26.5500,,"S","9",,"New York, NY"
-1,0,"Rood, Mr. Hugh Roscoe","male",,0,0,"113767",50.0000,"A32","S",,,"Seattle, WA"
-1,1,"Rosenbaum, Miss. Edith Louise","female",33,0,0,"PC 17613",27.7208,"A11","C","11",,"Paris, France"
-1,0,"Rosenshine, Mr. George (""Mr George Thorne"")","male",46,0,0,"PC 17585",79.2000,,"C",,"16","New York, NY"
-1,0,"Ross, Mr. John Hugo","male",36,0,0,"13049",40.1250,"A10","C",,,"Winnipeg, MB"
-1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)","female",33,0,0,"110152",86.5000,"B77","S","8",,"London Vancouver, BC"
-1,0,"Rothschild, Mr. Martin","male",55,1,0,"PC 17603",59.4000,,"C",,,"New York, NY"
-1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)","female",54,1,0,"PC 17603",59.4000,,"C","6",,"New York, NY"
-1,0,"Rowe, Mr. Alfred G","male",33,0,0,"113790",26.5500,,"S",,"109","London"
-1,1,"Ryerson, Master. John Borie","male",13,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
-1,1,"Ryerson, Miss. Emily Borie","female",18,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
-1,1,"Ryerson, Miss. Susan Parker ""Suzette""","female",21,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
-1,0,"Ryerson, Mr. Arthur Larned","male",61,1,3,"PC 17608",262.3750,"B57 B59 B63 B66","C",,,"Haverford, PA / Cooperstown, NY"
-1,1,"Ryerson, Mrs. Arthur Larned (Emily Maria Borie)","female",48,1,3,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
-1,1,"Saalfeld, Mr. Adolphe","male",,0,0,"19988",30.5000,"C106","S","3",,"Manchester, England"
-1,1,"Sagesser, Mlle. Emma","female",24,0,0,"PC 17477",69.3000,"B35","C","9",,
-1,1,"Salomon, Mr. Abraham L","male",,0,0,"111163",26.0000,,"S","1",,"New York, NY"
-1,1,"Schabert, Mrs. Paul (Emma Mock)","female",35,1,0,"13236",57.7500,"C28","C","11",,"New York, NY"
-1,1,"Serepeca, Miss. Augusta","female",30,0,0,"113798",31.0000,,"C","4",,
-1,1,"Seward, Mr. Frederic Kimber","male",34,0,0,"113794",26.5500,,"S","7",,"New York, NY"
-1,1,"Shutes, Miss. Elizabeth W","female",40,0,0,"PC 17582",153.4625,"C125","S","3",,"New York, NY / Greenwich CT"
-1,1,"Silverthorne, Mr. Spencer Victor","male",35,0,0,"PC 17475",26.2875,"E24","S","5",,"St Louis, MO"
-1,0,"Silvey, Mr. William Baird","male",50,1,0,"13507",55.9000,"E44","S",,,"Duluth, MN"
-1,1,"Silvey, Mrs. William Baird (Alice Munger)","female",39,1,0,"13507",55.9000,"E44","S","11",,"Duluth, MN"
-1,1,"Simonius-Blumer, Col. Oberst Alfons","male",56,0,0,"13213",35.5000,"A26","C","3",,"Basel, Switzerland"
-1,1,"Sloper, Mr. William Thompson","male",28,0,0,"113788",35.5000,"A6","S","7",,"New Britain, CT"
-1,0,"Smart, Mr. John Montgomery","male",56,0,0,"113792",26.5500,,"S",,,"New York, NY"
-1,0,"Smith, Mr. James Clinch","male",56,0,0,"17764",30.6958,"A7","C",,,"St James, Long Island, NY"
-1,0,"Smith, Mr. Lucien Philip","male",24,1,0,"13695",60.0000,"C31","S",,,"Huntington, WV"
-1,0,"Smith, Mr. Richard William","male",,0,0,"113056",26.0000,"A19","S",,,"Streatham, Surrey"
-1,1,"Smith, Mrs. Lucien Philip (Mary Eloise Hughes)","female",18,1,0,"13695",60.0000,"C31","S","6",,"Huntington, WV"
-1,1,"Snyder, Mr. John Pillsbury","male",24,1,0,"21228",82.2667,"B45","S","7",,"Minneapolis, MN"
-1,1,"Snyder, Mrs. John Pillsbury (Nelle Stevenson)","female",23,1,0,"21228",82.2667,"B45","S","7",,"Minneapolis, MN"
-1,1,"Spedden, Master. Robert Douglas","male",6,0,2,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
-1,1,"Spedden, Mr. Frederic Oakley","male",45,1,1,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
-1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)","female",40,1,1,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
-1,0,"Spencer, Mr. William Augustus","male",57,1,0,"PC 17569",146.5208,"B78","C",,,"Paris, France"
-1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)","female",,1,0,"PC 17569",146.5208,"B78","C","6",,"Paris, France"
-1,1,"Stahelin-Maeglin, Dr. Max","male",32,0,0,"13214",30.5000,"B50","C","3",,"Basel, Switzerland"
-1,0,"Stead, Mr. William Thomas","male",62,0,0,"113514",26.5500,"C87","S",,,"Wimbledon Park, London / Hayling Island, Hants"
-1,1,"Stengel, Mr. Charles Emil Henry","male",54,1,0,"11778",55.4417,"C116","C","1",,"Newark, NJ"
-1,1,"Stengel, Mrs. Charles Emil Henry (Annie May Morris)","female",43,1,0,"11778",55.4417,"C116","C","5",,"Newark, NJ"
-1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)","female",52,1,0,"36947",78.2667,"D20","C","4",,"Haverford, PA"
-1,0,"Stewart, Mr. Albert A","male",,0,0,"PC 17605",27.7208,,"C",,,"Gallipolis, Ohio / ? Paris / New York"
-1,1,"Stone, Mrs. George Nelson (Martha Evelyn)","female",62,0,0,"113572",80.0000,"B28",,"6",,"Cincinatti, OH"
-1,0,"Straus, Mr. Isidor","male",67,1,0,"PC 17483",221.7792,"C55 C57","S",,"96","New York, NY"
-1,0,"Straus, Mrs. Isidor (Rosalie Ida Blun)","female",63,1,0,"PC 17483",221.7792,"C55 C57","S",,,"New York, NY"
-1,0,"Sutton, Mr. Frederick","male",61,0,0,"36963",32.3208,"D50","S",,"46","Haddenfield, NJ"
-1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)","female",48,0,0,"17466",25.9292,"D17","S","8",,"Brooklyn, NY"
-1,1,"Taussig, Miss. Ruth","female",18,0,2,"110413",79.6500,"E68","S","8",,"New York, NY"
-1,0,"Taussig, Mr. Emil","male",52,1,1,"110413",79.6500,"E67","S",,,"New York, NY"
-1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)","female",39,1,1,"110413",79.6500,"E67","S","8",,"New York, NY"
-1,1,"Taylor, Mr. Elmer Zebley","male",48,1,0,"19996",52.0000,"C126","S","5 7",,"London / East Orange, NJ"
-1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)","female",,1,0,"19996",52.0000,"C126","S","5 7",,"London / East Orange, NJ"
-1,0,"Thayer, Mr. John Borland","male",49,1,1,"17421",110.8833,"C68","C",,,"Haverford, PA"
-1,1,"Thayer, Mr. John Borland Jr","male",17,0,2,"17421",110.8833,"C70","C","B",,"Haverford, PA"
-1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)","female",39,1,1,"17421",110.8833,"C68","C","4",,"Haverford, PA"
-1,1,"Thorne, Mrs. Gertrude Maybelle","female",,0,0,"PC 17585",79.2000,,"C","D",,"New York, NY"
-1,1,"Tucker, Mr. Gilbert Milligan Jr","male",31,0,0,"2543",28.5375,"C53","C","7",,"Albany, NY"
-1,0,"Uruchurtu, Don. Manuel E","male",40,0,0,"PC 17601",27.7208,,"C",,,"Mexico City, Mexico"
-1,0,"Van der hoef, Mr. Wyckoff","male",61,0,0,"111240",33.5000,"B19","S",,"245","Brooklyn, NY"
-1,0,"Walker, Mr. William Anderson","male",47,0,0,"36967",34.0208,"D46","S",,,"East Orange, NJ"
-1,1,"Ward, Miss. Anna","female",35,0,0,"PC 17755",512.3292,,"C","3",,
-1,0,"Warren, Mr. Frank Manley","male",64,1,0,"110813",75.2500,"D37","C",,,"Portland, OR"
-1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)","female",60,1,0,"110813",75.2500,"D37","C","5",,"Portland, OR"
-1,0,"Weir, Col. John","male",60,0,0,"113800",26.5500,,"S",,,"England Salt Lake City, Utah"
-1,0,"White, Mr. Percival Wayland","male",54,0,1,"35281",77.2875,"D26","S",,,"Brunswick, ME"
-1,0,"White, Mr. Richard Frasar","male",21,0,1,"35281",77.2875,"D26","S",,"169","Brunswick, ME"
-1,1,"White, Mrs. John Stuart (Ella Holmes)","female",55,0,0,"PC 17760",135.6333,"C32","C","8",,"New York, NY / Briarcliff Manor NY"
-1,1,"Wick, Miss. Mary Natalie","female",31,0,2,"36928",164.8667,"C7","S","8",,"Youngstown, OH"
-1,0,"Wick, Mr. George Dennick","male",57,1,1,"36928",164.8667,,"S",,,"Youngstown, OH"
-1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)","female",45,1,1,"36928",164.8667,,"S","8",,"Youngstown, OH"
-1,0,"Widener, Mr. George Dunton","male",50,1,1,"113503",211.5000,"C80","C",,,"Elkins Park, PA"
-1,0,"Widener, Mr. Harry Elkins","male",27,0,2,"113503",211.5000,"C82","C",,,"Elkins Park, PA"
-1,1,"Widener, Mrs. George Dunton (Eleanor Elkins)","female",50,1,1,"113503",211.5000,"C80","C","4",,"Elkins Park, PA"
-1,1,"Willard, Miss. Constance","female",21,0,0,"113795",26.5500,,"S","8 10",,"Duluth, MN"
-1,0,"Williams, Mr. Charles Duane","male",51,0,1,"PC 17597",61.3792,,"C",,,"Geneva, Switzerland / Radnor, PA"
-1,1,"Williams, Mr. Richard Norris II","male",21,0,1,"PC 17597",61.3792,,"C","A",,"Geneva, Switzerland / Radnor, PA"
-1,0,"Williams-Lambert, Mr. Fletcher Fellows","male",,0,0,"113510",35.0000,"C128","S",,,"London, England"
-1,1,"Wilson, Miss. Helen Alice","female",31,0,0,"16966",134.5000,"E39 E41","C","3",,
-1,1,"Woolner, Mr. Hugh","male",,0,0,"19947",35.5000,"C52","S","D",,"London, England"
-1,0,"Wright, Mr. George","male",62,0,0,"113807",26.5500,,"S",,,"Halifax, NS"
-1,1,"Young, Miss. Marie Grice","female",36,0,0,"PC 17760",135.6333,"C32","C","8",,"New York, NY / Washington, DC"
-2,0,"Abelson, Mr. Samuel","male",30,1,0,"P/PP 3381",24.0000,,"C",,,"Russia New York, NY"
-2,1,"Abelson, Mrs. Samuel (Hannah Wizosky)","female",28,1,0,"P/PP 3381",24.0000,,"C","10",,"Russia New York, NY"
-2,0,"Aldworth, Mr. Charles Augustus","male",30,0,0,"248744",13.0000,,"S",,,"Bryn Mawr, PA, USA"
-2,0,"Andrew, Mr. Edgardo Samuel","male",18,0,0,"231945",11.5000,,"S",,,"Buenos Aires, Argentina / New Jersey, NJ"
-2,0,"Andrew, Mr. Frank Thomas","male",25,0,0,"C.A. 34050",10.5000,,"S",,,"Cornwall, England Houghton, MI"
-2,0,"Angle, Mr. William A","male",34,1,0,"226875",26.0000,,"S",,,"Warwick, England"
-2,1,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)","female",36,1,0,"226875",26.0000,,"S","11",,"Warwick, England"
-2,0,"Ashby, Mr. John","male",57,0,0,"244346",13.0000,,"S",,,"West Hoboken, NJ"
-2,0,"Bailey, Mr. Percy Andrew","male",18,0,0,"29108",11.5000,,"S",,,"Penzance, Cornwall / Akron, OH"
-2,0,"Baimbrigge, Mr. Charles Robert","male",23,0,0,"C.A. 31030",10.5000,,"S",,,"Guernsey"
-2,1,"Ball, Mrs. (Ada E Hall)","female",36,0,0,"28551",13.0000,"D","S","10",,"Bristol, Avon / Jacksonville, FL"
-2,0,"Banfield, Mr. Frederick James","male",28,0,0,"C.A./SOTON 34068",10.5000,,"S",,,"Plymouth, Dorset / Houghton, MI"
-2,0,"Bateman, Rev. Robert James","male",51,0,0,"S.O.P. 1166",12.5250,,"S",,"174","Jacksonville, FL"
-2,1,"Beane, Mr. Edward","male",32,1,0,"2908",26.0000,,"S","13",,"Norwich / New York, NY"
-2,1,"Beane, Mrs. Edward (Ethel Clarke)","female",19,1,0,"2908",26.0000,,"S","13",,"Norwich / New York, NY"
-2,0,"Beauchamp, Mr. Henry James","male",28,0,0,"244358",26.0000,,"S",,,"England"
-2,1,"Becker, Master. Richard F","male",1,2,1,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
-2,1,"Becker, Miss. Marion Louise","female",4,2,1,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
-2,1,"Becker, Miss. Ruth Elizabeth","female",12,2,1,"230136",39.0000,"F4","S","13",,"Guntur, India / Benton Harbour, MI"
-2,1,"Becker, Mrs. Allen Oliver (Nellie E Baumgardner)","female",36,0,3,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
-2,1,"Beesley, Mr. Lawrence","male",34,0,0,"248698",13.0000,"D56","S","13",,"London"
-2,1,"Bentham, Miss. Lilian W","female",19,0,0,"28404",13.0000,,"S","12",,"Rochester, NY"
-2,0,"Berriman, Mr. William John","male",23,0,0,"28425",13.0000,,"S",,,"St Ives, Cornwall / Calumet, MI"
-2,0,"Botsford, Mr. William Hull","male",26,0,0,"237670",13.0000,,"S",,,"Elmira, NY / Orange, NJ"
-2,0,"Bowenur, Mr. Solomon","male",42,0,0,"211535",13.0000,,"S",,,"London"
-2,0,"Bracken, Mr. James H","male",27,0,0,"220367",13.0000,,"S",,,"Lake Arthur, Chavez County, NM"
-2,1,"Brown, Miss. Amelia ""Mildred""","female",24,0,0,"248733",13.0000,"F33","S","11",,"London / Montreal, PQ"
-2,1,"Brown, Miss. Edith Eileen","female",15,0,2,"29750",39.0000,,"S","14",,"Cape Town, South Africa / Seattle, WA"
-2,0,"Brown, Mr. Thomas William Solomon","male",60,1,1,"29750",39.0000,,"S",,,"Cape Town, South Africa / Seattle, WA"
-2,1,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)","female",40,1,1,"29750",39.0000,,"S","14",,"Cape Town, South Africa / Seattle, WA"
-2,1,"Bryhl, Miss. Dagmar Jenny Ingeborg ","female",20,1,0,"236853",26.0000,,"S","12",,"Skara, Sweden / Rockford, IL"
-2,0,"Bryhl, Mr. Kurt Arnold Gottfrid","male",25,1,0,"236853",26.0000,,"S",,,"Skara, Sweden / Rockford, IL"
-2,1,"Buss, Miss. Kate","female",36,0,0,"27849",13.0000,,"S","9",,"Sittingbourne, England / San Diego, CA"
-2,0,"Butler, Mr. Reginald Fenton","male",25,0,0,"234686",13.0000,,"S",,"97","Southsea, Hants"
-2,0,"Byles, Rev. Thomas Roussel Davids","male",42,0,0,"244310",13.0000,,"S",,,"London"
-2,1,"Bystrom, Mrs. (Karolina)","female",42,0,0,"236852",13.0000,,"S",,,"New York, NY"
-2,1,"Caldwell, Master. Alden Gates","male",0.83,0,2,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
-2,1,"Caldwell, Mr. Albert Francis","male",26,1,1,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
-2,1,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)","female",22,1,1,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
-2,1,"Cameron, Miss. Clear Annie","female",35,0,0,"F.C.C. 13528",21.0000,,"S","14",,"Mamaroneck, NY"
-2,0,"Campbell, Mr. William","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
-2,0,"Carbines, Mr. William","male",19,0,0,"28424",13.0000,,"S",,"18","St Ives, Cornwall / Calumet, MI"
-2,0,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)","female",44,1,0,"244252",26.0000,,"S",,,"London"
-2,0,"Carter, Rev. Ernest Courtenay","male",54,1,0,"244252",26.0000,,"S",,,"London"
-2,0,"Chapman, Mr. Charles Henry","male",52,0,0,"248731",13.5000,,"S",,"130","Bronx, NY"
-2,0,"Chapman, Mr. John Henry","male",37,1,0,"SC/AH 29037",26.0000,,"S",,"17","Cornwall / Spokane, WA"
-2,0,"Chapman, Mrs. John Henry (Sara Elizabeth Lawry)","female",29,1,0,"SC/AH 29037",26.0000,,"S",,,"Cornwall / Spokane, WA"
-2,1,"Christy, Miss. Julie Rachel","female",25,1,1,"237789",30.0000,,"S","12",,"London"
-2,1,"Christy, Mrs. (Alice Frances)","female",45,0,2,"237789",30.0000,,"S","12",,"London"
-2,0,"Clarke, Mr. Charles Valentine","male",29,1,0,"2003",26.0000,,"S",,,"England / San Francisco, CA"
-2,1,"Clarke, Mrs. Charles V (Ada Maria Winfield)","female",28,1,0,"2003",26.0000,,"S","14",,"England / San Francisco, CA"
-2,0,"Coleridge, Mr. Reginald Charles","male",29,0,0,"W./C. 14263",10.5000,,"S",,,"Hartford, Huntingdonshire"
-2,0,"Collander, Mr. Erik Gustaf","male",28,0,0,"248740",13.0000,,"S",,,"Helsinki, Finland Ashtabula, Ohio"
-2,1,"Collett, Mr. Sidney C Stuart","male",24,0,0,"28034",10.5000,,"S","9",,"London / Fort Byron, NY"
-2,1,"Collyer, Miss. Marjorie ""Lottie""","female",8,0,2,"C.A. 31921",26.2500,,"S","14",,"Bishopstoke, Hants / Fayette Valley, ID"
-2,0,"Collyer, Mr. Harvey","male",31,1,1,"C.A. 31921",26.2500,,"S",,,"Bishopstoke, Hants / Fayette Valley, ID"
-2,1,"Collyer, Mrs. Harvey (Charlotte Annie Tate)","female",31,1,1,"C.A. 31921",26.2500,,"S","14",,"Bishopstoke, Hants / Fayette Valley, ID"
-2,1,"Cook, Mrs. (Selena Rogers)","female",22,0,0,"W./C. 14266",10.5000,"F33","S","14",,"Pennsylvania"
-2,0,"Corbett, Mrs. Walter H (Irene Colvin)","female",30,0,0,"237249",13.0000,,"S",,,"Provo, UT"
-2,0,"Corey, Mrs. Percy C (Mary Phyllis Elizabeth Miller)","female",,0,0,"F.C.C. 13534",21.0000,,"S",,,"Upper Burma, India Pittsburgh, PA"
-2,0,"Cotterill, Mr. Henry ""Harry""","male",21,0,0,"29107",11.5000,,"S",,,"Penzance, Cornwall / Akron, OH"
-2,0,"Cunningham, Mr. Alfred Fleming","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
-2,1,"Davies, Master. John Morgan Jr","male",8,1,1,"C.A. 33112",36.7500,,"S","14",,"St Ives, Cornwall / Hancock, MI"
-2,0,"Davies, Mr. Charles Henry","male",18,0,0,"S.O.C. 14879",73.5000,,"S",,,"Lyndhurst, England"
-2,1,"Davies, Mrs. John Morgan (Elizabeth Agnes Mary White) ","female",48,0,2,"C.A. 33112",36.7500,,"S","14",,"St Ives, Cornwall / Hancock, MI"
-2,1,"Davis, Miss. Mary","female",28,0,0,"237668",13.0000,,"S","13",,"London / Staten Island, NY"
-2,0,"de Brito, Mr. Jose Joaquim","male",32,0,0,"244360",13.0000,,"S",,,"Portugal / Sau Paulo, Brazil"
-2,0,"Deacon, Mr. Percy William","male",17,0,0,"S.O.C. 14879",73.5000,,"S",,,
-2,0,"del Carlo, Mr. Sebastiano","male",29,1,0,"SC/PARIS 2167",27.7208,,"C",,"295","Lucca, Italy / California"
-2,1,"del Carlo, Mrs. Sebastiano (Argenia Genovesi)","female",24,1,0,"SC/PARIS 2167",27.7208,,"C","12",,"Lucca, Italy / California"
-2,0,"Denbury, Mr. Herbert","male",25,0,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
-2,0,"Dibden, Mr. William","male",18,0,0,"S.O.C. 14879",73.5000,,"S",,,"New Forest, England"
-2,1,"Doling, Miss. Elsie","female",18,0,1,"231919",23.0000,,"S",,,"Southampton"
-2,1,"Doling, Mrs. John T (Ada Julia Bone)","female",34,0,1,"231919",23.0000,,"S",,,"Southampton"
-2,0,"Downton, Mr. William James","male",54,0,0,"28403",26.0000,,"S",,,"Holley, NY"
-2,1,"Drew, Master. Marshall Brines","male",8,0,2,"28220",32.5000,,"S","10",,"Greenport, NY"
-2,0,"Drew, Mr. James Vivian","male",42,1,1,"28220",32.5000,,"S",,,"Greenport, NY"
-2,1,"Drew, Mrs. James Vivian (Lulu Thorne Christian)","female",34,1,1,"28220",32.5000,,"S","10",,"Greenport, NY"
-2,1,"Duran y More, Miss. Asuncion","female",27,1,0,"SC/PARIS 2149",13.8583,,"C","12",,"Barcelona, Spain / Havana, Cuba"
-2,1,"Duran y More, Miss. Florentina","female",30,1,0,"SC/PARIS 2148",13.8583,,"C","12",,"Barcelona, Spain / Havana, Cuba"
-2,0,"Eitemiller, Mr. George Floyd","male",23,0,0,"29751",13.0000,,"S",,,"England / Detroit, MI"
-2,0,"Enander, Mr. Ingvar","male",21,0,0,"236854",13.0000,,"S",,,"Goteborg, Sweden / Rockford, IL"
-2,0,"Fahlstrom, Mr. Arne Jonas","male",18,0,0,"236171",13.0000,,"S",,,"Oslo, Norway Bayonne, NJ"
-2,0,"Faunthorpe, Mr. Harry","male",40,1,0,"2926",26.0000,,"S",,"286","England / Philadelphia, PA"
-2,1,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)","female",29,1,0,"2926",26.0000,,"S","16",,
-2,0,"Fillbrook, Mr. Joseph Charles","male",18,0,0,"C.A. 15185",10.5000,,"S",,,"Cornwall / Houghton, MI"
-2,0,"Fox, Mr. Stanley Hubert","male",36,0,0,"229236",13.0000,,"S",,"236","Rochester, NY"
-2,0,"Frost, Mr. Anthony Wood ""Archie""","male",,0,0,"239854",0.0000,,"S",,,"Belfast"
-2,0,"Funk, Miss. Annie Clemmer","female",38,0,0,"237671",13.0000,,"S",,,"Janjgir, India / Pennsylvania"
-2,0,"Fynney, Mr. Joseph J","male",35,0,0,"239865",26.0000,,"S",,"322","Liverpool / Montreal, PQ"
-2,0,"Gale, Mr. Harry","male",38,1,0,"28664",21.0000,,"S",,,"Cornwall / Clear Creek, CO"
-2,0,"Gale, Mr. Shadrach","male",34,1,0,"28664",21.0000,,"S",,,"Cornwall / Clear Creek, CO"
-2,1,"Garside, Miss. Ethel","female",34,0,0,"243880",13.0000,,"S","12",,"Brooklyn, NY"
-2,0,"Gaskell, Mr. Alfred","male",16,0,0,"239865",26.0000,,"S",,,"Liverpool / Montreal, PQ"
-2,0,"Gavey, Mr. Lawrence","male",26,0,0,"31028",10.5000,,"S",,,"Guernsey / Elizabeth, NJ"
-2,0,"Gilbert, Mr. William","male",47,0,0,"C.A. 30769",10.5000,,"S",,,"Cornwall"
-2,0,"Giles, Mr. Edgar","male",21,1,0,"28133",11.5000,,"S",,,"Cornwall / Camden, NJ"
-2,0,"Giles, Mr. Frederick Edward","male",21,1,0,"28134",11.5000,,"S",,,"Cornwall / Camden, NJ"
-2,0,"Giles, Mr. Ralph","male",24,0,0,"248726",13.5000,,"S",,"297","West Kensington, London"
-2,0,"Gill, Mr. John William","male",24,0,0,"233866",13.0000,,"S",,"155","Clevedon, England"
-2,0,"Gillespie, Mr. William Henry","male",34,0,0,"12233",13.0000,,"S",,,"Vancouver, BC"
-2,0,"Givard, Mr. Hans Kristensen","male",30,0,0,"250646",13.0000,,"S",,"305",
-2,0,"Greenberg, Mr. Samuel","male",52,0,0,"250647",13.0000,,"S",,"19","Bronx, NY"
-2,0,"Hale, Mr. Reginald","male",30,0,0,"250653",13.0000,,"S",,"75","Auburn, NY"
-2,1,"Hamalainen, Master. Viljo","male",0.67,1,1,"250649",14.5000,,"S","4",,"Detroit, MI"
-2,1,"Hamalainen, Mrs. William (Anna)","female",24,0,2,"250649",14.5000,,"S","4",,"Detroit, MI"
-2,0,"Harbeck, Mr. William H","male",44,0,0,"248746",13.0000,,"S",,"35","Seattle, WA / Toledo, OH"
-2,1,"Harper, Miss. Annie Jessie ""Nina""","female",6,0,1,"248727",33.0000,,"S","11",,"Denmark Hill, Surrey / Chicago"
-2,0,"Harper, Rev. John","male",28,0,1,"248727",33.0000,,"S",,,"Denmark Hill, Surrey / Chicago"
-2,1,"Harris, Mr. George","male",62,0,0,"S.W./PP 752",10.5000,,"S","15",,"London"
-2,0,"Harris, Mr. Walter","male",30,0,0,"W/C 14208",10.5000,,"S",,,"Walthamstow, England"
-2,1,"Hart, Miss. Eva Miriam","female",7,0,2,"F.C.C. 13529",26.2500,,"S","14",,"Ilford, Essex / Winnipeg, MB"
-2,0,"Hart, Mr. Benjamin","male",43,1,1,"F.C.C. 13529",26.2500,,"S",,,"Ilford, Essex / Winnipeg, MB"
-2,1,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)","female",45,1,1,"F.C.C. 13529",26.2500,,"S","14",,"Ilford, Essex / Winnipeg, MB"
-2,1,"Herman, Miss. Alice","female",24,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
-2,1,"Herman, Miss. Kate","female",24,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
-2,0,"Herman, Mr. Samuel","male",49,1,2,"220845",65.0000,,"S",,,"Somerset / Bernardsville, NJ"
-2,1,"Herman, Mrs. Samuel (Jane Laver)","female",48,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
-2,1,"Hewlett, Mrs. (Mary D Kingcome) ","female",55,0,0,"248706",16.0000,,"S","13",,"India / Rapid City, SD"
-2,0,"Hickman, Mr. Leonard Mark","male",24,2,0,"S.O.C. 14879",73.5000,,"S",,,"West Hampstead, London / Neepawa, MB"
-2,0,"Hickman, Mr. Lewis","male",32,2,0,"S.O.C. 14879",73.5000,,"S",,"256","West Hampstead, London / Neepawa, MB"
-2,0,"Hickman, Mr. Stanley George","male",21,2,0,"S.O.C. 14879",73.5000,,"S",,,"West Hampstead, London / Neepawa, MB"
-2,0,"Hiltunen, Miss. Marta","female",18,1,1,"250650",13.0000,,"S",,,"Kontiolahti, Finland / Detroit, MI"
-2,1,"Hocking, Miss. Ellen ""Nellie""","female",20,2,1,"29105",23.0000,,"S","4",,"Cornwall / Akron, OH"
-2,0,"Hocking, Mr. Richard George","male",23,2,1,"29104",11.5000,,"S",,,"Cornwall / Akron, OH"
-2,0,"Hocking, Mr. Samuel James Metcalfe","male",36,0,0,"242963",13.0000,,"S",,,"Devonport, England"
-2,1,"Hocking, Mrs. Elizabeth (Eliza Needs)","female",54,1,3,"29105",23.0000,,"S","4",,"Cornwall / Akron, OH"
-2,0,"Hodges, Mr. Henry Price","male",50,0,0,"250643",13.0000,,"S",,"149","Southampton"
-2,0,"Hold, Mr. Stephen","male",44,1,0,"26707",26.0000,,"S",,,"England / Sacramento, CA"
-2,1,"Hold, Mrs. Stephen (Annie Margaret Hill)","female",29,1,0,"26707",26.0000,,"S","10",,"England / Sacramento, CA"
-2,0,"Hood, Mr. Ambrose Jr","male",21,0,0,"S.O.C. 14879",73.5000,,"S",,,"New Forest, England"
-2,1,"Hosono, Mr. Masabumi","male",42,0,0,"237798",13.0000,,"S","10",,"Tokyo, Japan"
-2,0,"Howard, Mr. Benjamin","male",63,1,0,"24065",26.0000,,"S",,,"Swindon, England"
-2,0,"Howard, Mrs. Benjamin (Ellen Truelove Arman)","female",60,1,0,"24065",26.0000,,"S",,,"Swindon, England"
-2,0,"Hunt, Mr. George Henry","male",33,0,0,"SCO/W 1585",12.2750,,"S",,,"Philadelphia, PA"
-2,1,"Ilett, Miss. Bertha","female",17,0,0,"SO/C 14885",10.5000,,"S",,,"Guernsey"
-2,0,"Jacobsohn, Mr. Sidney Samuel","male",42,1,0,"243847",27.0000,,"S",,,"London"
-2,1,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)","female",24,2,1,"243847",27.0000,,"S","12",,"London"
-2,0,"Jarvis, Mr. John Denzil","male",47,0,0,"237565",15.0000,,"S",,,"North Evington, England"
-2,0,"Jefferys, Mr. Clifford Thomas","male",24,2,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
-2,0,"Jefferys, Mr. Ernest Wilfred","male",22,2,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
-2,0,"Jenkin, Mr. Stephen Curnow","male",32,0,0,"C.A. 33111",10.5000,,"S",,,"St Ives, Cornwall / Houghton, MI"
-2,1,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)","female",23,0,0,"SC/AH Basle 541",13.7917,"D","C","11",,"New York, NY"
-2,0,"Kantor, Mr. Sinai","male",34,1,0,"244367",26.0000,,"S",,"283","Moscow / Bronx, NY"
-2,1,"Kantor, Mrs. Sinai (Miriam Sternin)","female",24,1,0,"244367",26.0000,,"S","12",,"Moscow / Bronx, NY"
-2,0,"Karnes, Mrs. J Frank (Claire Bennett)","female",22,0,0,"F.C.C. 13534",21.0000,,"S",,,"India / Pittsburgh, PA"
-2,1,"Keane, Miss. Nora A","female",,0,0,"226593",12.3500,"E101","Q","10",,"Harrisburg, PA"
-2,0,"Keane, Mr. Daniel","male",35,0,0,"233734",12.3500,,"Q",,,
-2,1,"Kelly, Mrs. Florence ""Fannie""","female",45,0,0,"223596",13.5000,,"S","9",,"London / New York, NY"
-2,0,"Kirkland, Rev. Charles Leonard","male",57,0,0,"219533",12.3500,,"Q",,,"Glasgow / Bangor, ME"
-2,0,"Knight, Mr. Robert J","male",,0,0,"239855",0.0000,,"S",,,"Belfast"
-2,0,"Kvillner, Mr. Johan Henrik Johannesson","male",31,0,0,"C.A. 18723",10.5000,,"S",,"165","Sweden / Arlington, NJ"
-2,0,"Lahtinen, Mrs. William (Anna Sylfven)","female",26,1,1,"250651",26.0000,,"S",,,"Minneapolis, MN"
-2,0,"Lahtinen, Rev. William","male",30,1,1,"250651",26.0000,,"S",,,"Minneapolis, MN"
-2,0,"Lamb, Mr. John Joseph","male",,0,0,"240261",10.7083,,"Q",,,
-2,1,"Laroche, Miss. Louise","female",1,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
-2,1,"Laroche, Miss. Simonne Marie Anne Andree","female",3,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
-2,0,"Laroche, Mr. Joseph Philippe Lemercier","male",25,1,2,"SC/Paris 2123",41.5792,,"C",,,"Paris / Haiti"
-2,1,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)","female",22,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
-2,1,"Lehmann, Miss. Bertha","female",17,0,0,"SC 1748",12.0000,,"C","12",,"Berne, Switzerland / Central City, IA"
-2,1,"Leitch, Miss. Jessie Wills","female",,0,0,"248727",33.0000,,"S","11",,"London / Chicago, IL"
-2,1,"Lemore, Mrs. (Amelia Milley)","female",34,0,0,"C.A. 34260",10.5000,"F33","S","14",,"Chicago, IL"
-2,0,"Levy, Mr. Rene Jacques","male",36,0,0,"SC/Paris 2163",12.8750,"D","C",,,"Montreal, PQ"
-2,0,"Leyson, Mr. Robert William Norman","male",24,0,0,"C.A. 29566",10.5000,,"S",,"108",
-2,0,"Lingane, Mr. John","male",61,0,0,"235509",12.3500,,"Q",,,
-2,0,"Louch, Mr. Charles Alexander","male",50,1,0,"SC/AH 3085",26.0000,,"S",,"121","Weston-Super-Mare, Somerset"
-2,1,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)","female",42,1,0,"SC/AH 3085",26.0000,,"S",,,"Weston-Super-Mare, Somerset"
-2,0,"Mack, Mrs. (Mary)","female",57,0,0,"S.O./P.P. 3",10.5000,"E77","S",,"52","Southampton / New York, NY"
-2,0,"Malachard, Mr. Noel","male",,0,0,"237735",15.0458,"D","C",,,"Paris"
-2,1,"Mallet, Master. Andre","male",1,0,2,"S.C./PARIS 2079",37.0042,,"C","10",,"Paris / Montreal, PQ"
-2,0,"Mallet, Mr. Albert","male",31,1,1,"S.C./PARIS 2079",37.0042,,"C",,,"Paris / Montreal, PQ"
-2,1,"Mallet, Mrs. Albert (Antoinette Magnin)","female",24,1,1,"S.C./PARIS 2079",37.0042,,"C","10",,"Paris / Montreal, PQ"
-2,0,"Mangiavacchi, Mr. Serafino Emilio","male",,0,0,"SC/A.3 2861",15.5792,,"C",,,"New York, NY"
-2,0,"Matthews, Mr. William John","male",30,0,0,"28228",13.0000,,"S",,,"St Austall, Cornwall"
-2,0,"Maybery, Mr. Frank Hubert","male",40,0,0,"239059",16.0000,,"S",,,"Weston-Super-Mare / Moose Jaw, SK"
-2,0,"McCrae, Mr. Arthur Gordon","male",32,0,0,"237216",13.5000,,"S",,"209","Sydney, Australia"
-2,0,"McCrie, Mr. James Matthew","male",30,0,0,"233478",13.0000,,"S",,,"Sarnia, ON"
-2,0,"McKane, Mr. Peter David","male",46,0,0,"28403",26.0000,,"S",,,"Rochester, NY"
-2,1,"Mellinger, Miss. Madeleine Violet","female",13,0,1,"250644",19.5000,,"S","14",,"England / Bennington, VT"
-2,1,"Mellinger, Mrs. (Elizabeth Anne Maidment)","female",41,0,1,"250644",19.5000,,"S","14",,"England / Bennington, VT"
-2,1,"Mellors, Mr. William John","male",19,0,0,"SW/PP 751",10.5000,,"S","B",,"Chelsea, London"
-2,0,"Meyer, Mr. August","male",39,0,0,"248723",13.0000,,"S",,,"Harrow-on-the-Hill, Middlesex"
-2,0,"Milling, Mr. Jacob Christian","male",48,0,0,"234360",13.0000,,"S",,"271","Copenhagen, Denmark"
-2,0,"Mitchell, Mr. Henry Michael","male",70,0,0,"C.A. 24580",10.5000,,"S",,,"Guernsey / Montclair, NJ and/or Toledo, Ohio"
-2,0,"Montvila, Rev. Juozas","male",27,0,0,"211536",13.0000,,"S",,,"Worcester, MA"
-2,0,"Moraweck, Dr. Ernest","male",54,0,0,"29011",14.0000,,"S",,,"Frankfort, KY"
-2,0,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")","male",39,0,0,"250655",26.0000,,"S",,,
-2,0,"Mudd, Mr. Thomas Charles","male",16,0,0,"S.O./P.P. 3",10.5000,,"S",,,"Halesworth, England"
-2,0,"Myles, Mr. Thomas Francis","male",62,0,0,"240276",9.6875,,"Q",,,"Cambridge, MA"
-2,0,"Nasser, Mr. Nicholas","male",32.5,1,0,"237736",30.0708,,"C",,"43","New York, NY"
-2,1,"Nasser, Mrs. Nicholas (Adele Achem)","female",14,1,0,"237736",30.0708,,"C",,,"New York, NY"
-2,1,"Navratil, Master. Edmond Roger","male",2,1,1,"230080",26.0000,"F2","S","D",,"Nice, France"
-2,1,"Navratil, Master. Michel M","male",3,1,1,"230080",26.0000,"F2","S","D",,"Nice, France"
-2,0,"Navratil, Mr. Michel (""Louis M Hoffman"")","male",36.5,0,2,"230080",26.0000,"F2","S",,"15","Nice, France"
-2,0,"Nesson, Mr. Israel","male",26,0,0,"244368",13.0000,"F2","S",,,"Boston, MA"
-2,0,"Nicholls, Mr. Joseph Charles","male",19,1,1,"C.A. 33112",36.7500,,"S",,"101","Cornwall / Hancock, MI"
-2,0,"Norman, Mr. Robert Douglas","male",28,0,0,"218629",13.5000,,"S",,"287","Glasgow"
-2,1,"Nourney, Mr. Alfred (""Baron von Drachstedt"")","male",20,0,0,"SC/PARIS 2166",13.8625,"D38","C","7",,"Cologne, Germany"
-2,1,"Nye, Mrs. (Elizabeth Ramell)","female",29,0,0,"C.A. 29395",10.5000,"F33","S","11",,"Folkstone, Kent / New York, NY"
-2,0,"Otter, Mr. Richard","male",39,0,0,"28213",13.0000,,"S",,,"Middleburg Heights, OH"
-2,1,"Oxenham, Mr. Percy Thomas","male",22,0,0,"W./C. 14260",10.5000,,"S","13",,"Pondersend, England / New Durham, NJ"
-2,1,"Padro y Manent, Mr. Julian","male",,0,0,"SC/PARIS 2146",13.8625,,"C","9",,"Spain / Havana, Cuba"
-2,0,"Pain, Dr. Alfred","male",23,0,0,"244278",10.5000,,"S",,,"Hamilton, ON"
-2,1,"Pallas y Castello, Mr. Emilio","male",29,0,0,"SC/PARIS 2147",13.8583,,"C","9",,"Spain / Havana, Cuba"
-2,0,"Parker, Mr. Clifford Richard","male",28,0,0,"SC 14888",10.5000,,"S",,,"St Andrews, Guernsey"
-2,0,"Parkes, Mr. Francis ""Frank""","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
-2,1,"Parrish, Mrs. (Lutie Davis)","female",50,0,1,"230433",26.0000,,"S","12",,"Woodford County, KY"
-2,0,"Pengelly, Mr. Frederick William","male",19,0,0,"28665",10.5000,,"S",,,"Gunnislake, England / Butte, MT"
-2,0,"Pernot, Mr. Rene","male",,0,0,"SC/PARIS 2131",15.0500,,"C",,,
-2,0,"Peruschitz, Rev. Joseph Maria","male",41,0,0,"237393",13.0000,,"S",,,
-2,1,"Phillips, Miss. Alice Frances Louisa","female",21,0,1,"S.O./P.P. 2",21.0000,,"S","12",,"Ilfracombe, Devon"
-2,1,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")","female",19,0,0,"250655",26.0000,,"S","11",,"Worcester, England"
-2,0,"Phillips, Mr. Escott Robert","male",43,0,1,"S.O./P.P. 2",21.0000,,"S",,,"Ilfracombe, Devon"
-2,1,"Pinsky, Mrs. (Rosa)","female",32,0,0,"234604",13.0000,,"S","9",,"Russia"
-2,0,"Ponesell, Mr. Martin","male",34,0,0,"250647",13.0000,,"S",,,"Denmark / New York, NY"
-2,1,"Portaluppi, Mr. Emilio Ilario Giuseppe","male",30,0,0,"C.A. 34644",12.7375,,"C","14",,"Milford, NH"
-2,0,"Pulbaum, Mr. Franz","male",27,0,0,"SC/PARIS 2168",15.0333,,"C",,,"Paris"
-2,1,"Quick, Miss. Phyllis May","female",2,1,1,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
-2,1,"Quick, Miss. Winifred Vera","female",8,1,1,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
-2,1,"Quick, Mrs. Frederick Charles (Jane Richards)","female",33,0,2,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
-2,0,"Reeves, Mr. David","male",36,0,0,"C.A. 17248",10.5000,,"S",,,"Brighton, Sussex"
-2,0,"Renouf, Mr. Peter Henry","male",34,1,0,"31027",21.0000,,"S","12",,"Elizabeth, NJ"
-2,1,"Renouf, Mrs. Peter Henry (Lillian Jefferys)","female",30,3,0,"31027",21.0000,,"S",,,"Elizabeth, NJ"
-2,1,"Reynaldo, Ms. Encarnacion","female",28,0,0,"230434",13.0000,,"S","9",,"Spain"
-2,0,"Richard, Mr. Emile","male",23,0,0,"SC/PARIS 2133",15.0458,,"C",,,"Paris / Montreal, PQ"
-2,1,"Richards, Master. George Sibley","male",0.83,1,1,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
-2,1,"Richards, Master. William Rowe","male",3,1,1,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
-2,1,"Richards, Mrs. Sidney (Emily Hocking)","female",24,2,3,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
-2,1,"Ridsdale, Miss. Lucy","female",50,0,0,"W./C. 14258",10.5000,,"S","13",,"London, England / Marietta, Ohio and Milwaukee, WI"
-2,0,"Rogers, Mr. Reginald Harry","male",19,0,0,"28004",10.5000,,"S",,,
-2,1,"Rugg, Miss. Emily","female",21,0,0,"C.A. 31026",10.5000,,"S","12",,"Guernsey / Wilmington, DE"
-2,0,"Schmidt, Mr. August","male",26,0,0,"248659",13.0000,,"S",,,"Newark, NJ"
-2,0,"Sedgwick, Mr. Charles Frederick Waddington","male",25,0,0,"244361",13.0000,,"S",,,"Liverpool"
-2,0,"Sharp, Mr. Percival James R","male",27,0,0,"244358",26.0000,,"S",,,"Hornsey, England"
-2,1,"Shelley, Mrs. William (Imanita Parrish Hall)","female",25,0,1,"230433",26.0000,,"S","12",,"Deer Lodge, MT"
-2,1,"Silven, Miss. Lyyli Karoliina","female",18,0,2,"250652",13.0000,,"S","16",,"Finland / Minneapolis, MN"
-2,1,"Sincock, Miss. Maude","female",20,0,0,"C.A. 33112",36.7500,,"S","11",,"Cornwall / Hancock, MI"
-2,1,"Sinkkonen, Miss. Anna","female",30,0,0,"250648",13.0000,,"S","10",,"Finland / Washington, DC"
-2,0,"Sjostedt, Mr. Ernst Adolf","male",59,0,0,"237442",13.5000,,"S",,,"Sault St Marie, ON"
-2,1,"Slayter, Miss. Hilda Mary","female",30,0,0,"234818",12.3500,,"Q","13",,"Halifax, NS"
-2,0,"Slemen, Mr. Richard James","male",35,0,0,"28206",10.5000,,"S",,,"Cornwall"
-2,1,"Smith, Miss. Marion Elsie","female",40,0,0,"31418",13.0000,,"S","9",,
-2,0,"Sobey, Mr. Samuel James Hayden","male",25,0,0,"C.A. 29178",13.0000,,"S",,,"Cornwall / Houghton, MI"
-2,0,"Stanton, Mr. Samuel Ward","male",41,0,0,"237734",15.0458,,"C",,,"New York, NY"
-2,0,"Stokes, Mr. Philip Joseph","male",25,0,0,"F.C.C. 13540",10.5000,,"S",,"81","Catford, Kent / Detroit, MI"
-2,0,"Swane, Mr. George","male",18.5,0,0,"248734",13.0000,"F","S",,"294",
-2,0,"Sweet, Mr. George Frederick","male",14,0,0,"220845",65.0000,,"S",,,"Somerset / Bernardsville, NJ"
-2,1,"Toomey, Miss. Ellen","female",50,0,0,"F.C.C. 13531",10.5000,,"S","9",,"Indianapolis, IN"
-2,0,"Troupiansky, Mr. Moses Aaron","male",23,0,0,"233639",13.0000,,"S",,,
-2,1,"Trout, Mrs. William H (Jessie L)","female",28,0,0,"240929",12.6500,,"S",,,"Columbus, OH"
-2,1,"Troutt, Miss. Edwina Celia ""Winnie""","female",27,0,0,"34218",10.5000,"E101","S","16",,"Bath, England / Massachusetts"
-2,0,"Turpin, Mr. William John Robert","male",29,1,0,"11668",21.0000,,"S",,,"Plymouth, England"
-2,0,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)","female",27,1,0,"11668",21.0000,,"S",,,"Plymouth, England"
-2,0,"Veal, Mr. James","male",40,0,0,"28221",13.0000,,"S",,,"Barre, Co Washington, VT"
-2,1,"Walcroft, Miss. Nellie","female",31,0,0,"F.C.C. 13528",21.0000,,"S","14",,"Mamaroneck, NY"
-2,0,"Ware, Mr. John James","male",30,1,0,"CA 31352",21.0000,,"S",,,"Bristol, England / New Britain, CT"
-2,0,"Ware, Mr. William Jeffery","male",23,1,0,"28666",10.5000,,"S",,,
-2,1,"Ware, Mrs. John James (Florence Louise Long)","female",31,0,0,"CA 31352",21.0000,,"S","10",,"Bristol, England / New Britain, CT"
-2,0,"Watson, Mr. Ennis Hastings","male",,0,0,"239856",0.0000,,"S",,,"Belfast"
-2,1,"Watt, Miss. Bertha J","female",12,0,0,"C.A. 33595",15.7500,,"S","9",,"Aberdeen / Portland, OR"
-2,1,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)","female",40,0,0,"C.A. 33595",15.7500,,"S","9",,"Aberdeen / Portland, OR"
-2,1,"Webber, Miss. Susan","female",32.5,0,0,"27267",13.0000,"E101","S","12",,"England / Hartford, CT"
-2,0,"Weisz, Mr. Leopold","male",27,1,0,"228414",26.0000,,"S",,"293","Bromsgrove, England / Montreal, PQ"
-2,1,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)","female",29,1,0,"228414",26.0000,,"S","10",,"Bromsgrove, England / Montreal, PQ"
-2,1,"Wells, Master. Ralph Lester","male",2,1,1,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
-2,1,"Wells, Miss. Joan","female",4,1,1,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
-2,1,"Wells, Mrs. Arthur Henry (""Addie"" Dart Trevaskis)","female",29,0,2,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
-2,1,"West, Miss. Barbara J","female",0.92,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
-2,1,"West, Miss. Constance Mirium","female",5,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
-2,0,"West, Mr. Edwy Arthur","male",36,1,2,"C.A. 34651",27.7500,,"S",,,"Bournmouth, England"
-2,1,"West, Mrs. Edwy Arthur (Ada Mary Worth)","female",33,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
-2,0,"Wheadon, Mr. Edward H","male",66,0,0,"C.A. 24579",10.5000,,"S",,,"Guernsey, England / Edgewood, RI"
-2,0,"Wheeler, Mr. Edwin ""Frederick""","male",,0,0,"SC/PARIS 2159",12.8750,,"S",,,
-2,1,"Wilhelms, Mr. Charles","male",31,0,0,"244270",13.0000,,"S","9",,"London, England"
-2,1,"Williams, Mr. Charles Eugene","male",,0,0,"244373",13.0000,,"S","14",,"Harrow, England"
-2,1,"Wright, Miss. Marion","female",26,0,0,"220844",13.5000,,"S","9",,"Yoevil, England / Cottage Grove, OR"
-2,0,"Yrois, Miss. Henriette (""Mrs Harbeck"")","female",24,0,0,"248747",13.0000,,"S",,,"Paris"
-3,0,"Abbing, Mr. Anthony","male",42,0,0,"C.A. 5547",7.5500,,"S",,,
-3,0,"Abbott, Master. Eugene Joseph","male",13,0,2,"C.A. 2673",20.2500,,"S",,,"East Providence, RI"
-3,0,"Abbott, Mr. Rossmore Edward","male",16,1,1,"C.A. 2673",20.2500,,"S",,"190","East Providence, RI"
-3,1,"Abbott, Mrs. Stanton (Rosa Hunt)","female",35,1,1,"C.A. 2673",20.2500,,"S","A",,"East Providence, RI"
-3,1,"Abelseth, Miss. Karen Marie","female",16,0,0,"348125",7.6500,,"S","16",,"Norway Los Angeles, CA"
-3,1,"Abelseth, Mr. Olaus Jorgensen","male",25,0,0,"348122",7.6500,"F G63","S","A",,"Perkins County, SD"
-3,1,"Abrahamsson, Mr. Abraham August Johannes","male",20,0,0,"SOTON/O2 3101284",7.9250,,"S","15",,"Taalintehdas, Finland Hoboken, NJ"
-3,1,"Abrahim, Mrs. Joseph (Sophie Halaut Easu)","female",18,0,0,"2657",7.2292,,"C","C",,"Greensburg, PA"
-3,0,"Adahl, Mr. Mauritz Nils Martin","male",30,0,0,"C 7076",7.2500,,"S",,"72","Asarum, Sweden Brooklyn, NY"
-3,0,"Adams, Mr. John","male",26,0,0,"341826",8.0500,,"S",,"103","Bournemouth, England"
-3,0,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)","female",40,1,0,"7546",9.4750,,"S",,,"Sweden Akeley, MN"
-3,1,"Aks, Master. Philip Frank","male",0.83,0,1,"392091",9.3500,,"S","11",,"London, England Norfolk, VA"
-3,1,"Aks, Mrs. Sam (Leah Rosen)","female",18,0,1,"392091",9.3500,,"S","13",,"London, England Norfolk, VA"
-3,1,"Albimona, Mr. Nassef Cassem","male",26,0,0,"2699",18.7875,,"C","15",,"Syria Fredericksburg, VA"
-3,0,"Alexander, Mr. William","male",26,0,0,"3474",7.8875,,"S",,,"England Albion, NY"
-3,0,"Alhomaki, Mr. Ilmari Rudolf","male",20,0,0,"SOTON/O2 3101287",7.9250,,"S",,,"Salo, Finland Astoria, OR"
-3,0,"Ali, Mr. Ahmed","male",24,0,0,"SOTON/O.Q. 3101311",7.0500,,"S",,,
-3,0,"Ali, Mr. William","male",25,0,0,"SOTON/O.Q. 3101312",7.0500,,"S",,"79","Argentina"
-3,0,"Allen, Mr. William Henry","male",35,0,0,"373450",8.0500,,"S",,,"Lower Clapton, Middlesex or Erdington, Birmingham"
-3,0,"Allum, Mr. Owen George","male",18,0,0,"2223",8.3000,,"S",,"259","Windsor, England New York, NY"
-3,0,"Andersen, Mr. Albert Karvin","male",32,0,0,"C 4001",22.5250,,"S",,"260","Bergen, Norway"
-3,1,"Andersen-Jensen, Miss. Carla Christine Nielsine","female",19,1,0,"350046",7.8542,,"S","16",,
-3,0,"Andersson, Master. Sigvard Harald Elias","male",4,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andersson, Miss. Ebba Iris Alfrida","female",6,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andersson, Miss. Ellis Anna Maria","female",2,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,1,"Andersson, Miss. Erna Alexandra","female",17,4,2,"3101281",7.9250,,"S","D",,"Ruotsinphyhtaa, Finland New York, NY"
-3,0,"Andersson, Miss. Ida Augusta Margareta","female",38,4,2,"347091",7.7750,,"S",,,"Vadsbro, Sweden Ministee, MI"
-3,0,"Andersson, Miss. Ingeborg Constanzia","female",9,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andersson, Miss. Sigrid Elisabeth","female",11,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andersson, Mr. Anders Johan","male",39,1,5,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,1,"Andersson, Mr. August Edvard (""Wennerstrom"")","male",27,0,0,"350043",7.7958,,"S","A",,
-3,0,"Andersson, Mr. Johan Samuel","male",26,0,0,"347075",7.7750,,"S",,,"Hartford, CT"
-3,0,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)","female",39,1,5,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andreasson, Mr. Paul Edvin","male",20,0,0,"347466",7.8542,,"S",,,"Sweden Chicago, IL"
-3,0,"Angheloff, Mr. Minko","male",26,0,0,"349202",7.8958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Arnold-Franchi, Mr. Josef","male",25,1,0,"349237",17.8000,,"S",,,"Altdorf, Switzerland"
-3,0,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)","female",18,1,0,"349237",17.8000,,"S",,,"Altdorf, Switzerland"
-3,0,"Aronsson, Mr. Ernst Axel Algot","male",24,0,0,"349911",7.7750,,"S",,,"Sweden Joliet, IL"
-3,0,"Asim, Mr. Adola","male",35,0,0,"SOTON/O.Q. 3101310",7.0500,,"S",,,
-3,0,"Asplund, Master. Carl Edgar","male",5,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
-3,0,"Asplund, Master. Clarence Gustaf Hugo","male",9,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
-3,1,"Asplund, Master. Edvin Rojj Felix","male",3,4,2,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
-3,0,"Asplund, Master. Filip Oscar","male",13,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
-3,1,"Asplund, Miss. Lillian Gertrud","female",5,4,2,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
-3,0,"Asplund, Mr. Carl Oscar Vilhelm Gustafsson","male",40,1,5,"347077",31.3875,,"S",,"142","Sweden Worcester, MA"
-3,1,"Asplund, Mr. Johan Charles","male",23,0,0,"350054",7.7958,,"S","13",,"Oskarshamn, Sweden Minneapolis, MN"
-3,1,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)","female",38,1,5,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
-3,1,"Assaf Khalil, Mrs. Mariana (""Miriam"")","female",45,0,0,"2696",7.2250,,"C","C",,"Ottawa, ON"
-3,0,"Assaf, Mr. Gerios","male",21,0,0,"2692",7.2250,,"C",,,"Ottawa, ON"
-3,0,"Assam, Mr. Ali","male",23,0,0,"SOTON/O.Q. 3101309",7.0500,,"S",,,
-3,0,"Attalah, Miss. Malake","female",17,0,0,"2627",14.4583,,"C",,,
-3,0,"Attalah, Mr. Sleiman","male",30,0,0,"2694",7.2250,,"C",,,"Ottawa, ON"
-3,0,"Augustsson, Mr. Albert","male",23,0,0,"347468",7.8542,,"S",,,"Krakoryd, Sweden Bloomington, IL"
-3,1,"Ayoub, Miss. Banoura","female",13,0,0,"2687",7.2292,,"C","C",,"Syria Youngstown, OH"
-3,0,"Baccos, Mr. Raffull","male",20,0,0,"2679",7.2250,,"C",,,
-3,0,"Backstrom, Mr. Karl Alfred","male",32,1,0,"3101278",15.8500,,"S","D",,"Ruotsinphytaa, Finland New York, NY"
-3,1,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)","female",33,3,0,"3101278",15.8500,,"S",,,"Ruotsinphytaa, Finland New York, NY"
-3,1,"Baclini, Miss. Eugenie","female",0.75,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
-3,1,"Baclini, Miss. Helene Barbara","female",0.75,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
-3,1,"Baclini, Miss. Marie Catherine","female",5,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
-3,1,"Baclini, Mrs. Solomon (Latifa Qurban)","female",24,0,3,"2666",19.2583,,"C","C",,"Syria New York, NY"
-3,1,"Badman, Miss. Emily Louisa","female",18,0,0,"A/4 31416",8.0500,,"S","C",,"London Skanteales, NY"
-3,0,"Badt, Mr. Mohamed","male",40,0,0,"2623",7.2250,,"C",,,
-3,0,"Balkic, Mr. Cerin","male",26,0,0,"349248",7.8958,,"S",,,
-3,1,"Barah, Mr. Hanna Assi","male",20,0,0,"2663",7.2292,,"C","15",,
-3,0,"Barbara, Miss. Saiide","female",18,0,1,"2691",14.4542,,"C",,,"Syria Ottawa, ON"
-3,0,"Barbara, Mrs. (Catherine David)","female",45,0,1,"2691",14.4542,,"C",,,"Syria Ottawa, ON"
-3,0,"Barry, Miss. Julia","female",27,0,0,"330844",7.8792,,"Q",,,"New York, NY"
-3,0,"Barton, Mr. David John","male",22,0,0,"324669",8.0500,,"S",,,"England New York, NY"
-3,0,"Beavan, Mr. William Thomas","male",19,0,0,"323951",8.0500,,"S",,,"England"
-3,0,"Bengtsson, Mr. John Viktor","male",26,0,0,"347068",7.7750,,"S",,,"Krakudden, Sweden Moune, IL"
-3,0,"Berglund, Mr. Karl Ivar Sven","male",22,0,0,"PP 4348",9.3500,,"S",,,"Tranvik, Finland New York"
-3,0,"Betros, Master. Seman","male",,0,0,"2622",7.2292,,"C",,,
-3,0,"Betros, Mr. Tannous","male",20,0,0,"2648",4.0125,,"C",,,"Syria"
-3,1,"Bing, Mr. Lee","male",32,0,0,"1601",56.4958,,"S","C",,"Hong Kong New York, NY"
-3,0,"Birkeland, Mr. Hans Martin Monsen","male",21,0,0,"312992",7.7750,,"S",,,"Brennes, Norway New York"
-3,0,"Bjorklund, Mr. Ernst Herbert","male",18,0,0,"347090",7.7500,,"S",,,"Stockholm, Sweden New York"
-3,0,"Bostandyeff, Mr. Guentcho","male",26,0,0,"349224",7.8958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Boulos, Master. Akar","male",6,1,1,"2678",15.2458,,"C",,,"Syria Kent, ON"
-3,0,"Boulos, Miss. Nourelain","female",9,1,1,"2678",15.2458,,"C",,,"Syria Kent, ON"
-3,0,"Boulos, Mr. Hanna","male",,0,0,"2664",7.2250,,"C",,,"Syria"
-3,0,"Boulos, Mrs. Joseph (Sultana)","female",,0,2,"2678",15.2458,,"C",,,"Syria Kent, ON"
-3,0,"Bourke, Miss. Mary","female",,0,2,"364848",7.7500,,"Q",,,"Ireland Chicago, IL"
-3,0,"Bourke, Mr. John","male",40,1,1,"364849",15.5000,,"Q",,,"Ireland Chicago, IL"
-3,0,"Bourke, Mrs. John (Catherine)","female",32,1,1,"364849",15.5000,,"Q",,,"Ireland Chicago, IL"
-3,0,"Bowen, Mr. David John ""Dai""","male",21,0,0,"54636",16.1000,,"S",,,"Treherbert, Cardiff, Wales"
-3,1,"Bradley, Miss. Bridget Delia","female",22,0,0,"334914",7.7250,,"Q","13",,"Kingwilliamstown, Co Cork, Ireland Glens Falls, NY"
-3,0,"Braf, Miss. Elin Ester Maria","female",20,0,0,"347471",7.8542,,"S",,,"Medeltorp, Sweden Chicago, IL"
-3,0,"Braund, Mr. Lewis Richard","male",29,1,0,"3460",7.0458,,"S",,,"Bridgerule, Devon"
-3,0,"Braund, Mr. Owen Harris","male",22,1,0,"A/5 21171",7.2500,,"S",,,"Bridgerule, Devon"
-3,0,"Brobeck, Mr. Karl Rudolf","male",22,0,0,"350045",7.7958,,"S",,,"Sweden Worcester, MA"
-3,0,"Brocklebank, Mr. William Alfred","male",35,0,0,"364512",8.0500,,"S",,,"Broomfield, Chelmsford, England"
-3,0,"Buckley, Miss. Katherine","female",18.5,0,0,"329944",7.2833,,"Q",,"299","Co Cork, Ireland Roxbury, MA"
-3,1,"Buckley, Mr. Daniel","male",21,0,0,"330920",7.8208,,"Q","13",,"Kingwilliamstown, Co Cork, Ireland New York, NY"
-3,0,"Burke, Mr. Jeremiah","male",19,0,0,"365222",6.7500,,"Q",,,"Co Cork, Ireland Charlestown, MA"
-3,0,"Burns, Miss. Mary Delia","female",18,0,0,"330963",7.8792,,"Q",,,"Co Sligo, Ireland New York, NY"
-3,0,"Cacic, Miss. Manda","female",21,0,0,"315087",8.6625,,"S",,,
-3,0,"Cacic, Miss. Marija","female",30,0,0,"315084",8.6625,,"S",,,
-3,0,"Cacic, Mr. Jego Grga","male",18,0,0,"315091",8.6625,,"S",,,
-3,0,"Cacic, Mr. Luka","male",38,0,0,"315089",8.6625,,"S",,,"Croatia"
-3,0,"Calic, Mr. Jovo","male",17,0,0,"315093",8.6625,,"S",,,
-3,0,"Calic, Mr. Petar","male",17,0,0,"315086",8.6625,,"S",,,
-3,0,"Canavan, Miss. Mary","female",21,0,0,"364846",7.7500,,"Q",,,
-3,0,"Canavan, Mr. Patrick","male",21,0,0,"364858",7.7500,,"Q",,,"Ireland Philadelphia, PA"
-3,0,"Cann, Mr. Ernest Charles","male",21,0,0,"A./5. 2152",8.0500,,"S",,,
-3,0,"Caram, Mr. Joseph","male",,1,0,"2689",14.4583,,"C",,,"Ottawa, ON"
-3,0,"Caram, Mrs. Joseph (Maria Elias)","female",,1,0,"2689",14.4583,,"C",,,"Ottawa, ON"
-3,0,"Carlsson, Mr. August Sigfrid","male",28,0,0,"350042",7.7958,,"S",,,"Dagsas, Sweden Fower, MN"
-3,0,"Carlsson, Mr. Carl Robert","male",24,0,0,"350409",7.8542,,"S",,,"Goteborg, Sweden Huntley, IL"
-3,1,"Carr, Miss. Helen ""Ellen""","female",16,0,0,"367231",7.7500,,"Q","16",,"Co Longford, Ireland New York, NY"
-3,0,"Carr, Miss. Jeannie","female",37,0,0,"368364",7.7500,,"Q",,,"Co Sligo, Ireland Hartford, CT"
-3,0,"Carver, Mr. Alfred John","male",28,0,0,"392095",7.2500,,"S",,,"St Denys, Southampton, Hants"
-3,0,"Celotti, Mr. Francesco","male",24,0,0,"343275",8.0500,,"S",,,"London"
-3,0,"Charters, Mr. David","male",21,0,0,"A/5. 13032",7.7333,,"Q",,,"Ireland New York, NY"
-3,1,"Chip, Mr. Chang","male",32,0,0,"1601",56.4958,,"S","C",,"Hong Kong New York, NY"
-3,0,"Christmann, Mr. Emil","male",29,0,0,"343276",8.0500,,"S",,,
-3,0,"Chronopoulos, Mr. Apostolos","male",26,1,0,"2680",14.4542,,"C",,,"Greece"
-3,0,"Chronopoulos, Mr. Demetrios","male",18,1,0,"2680",14.4542,,"C",,,"Greece"
-3,0,"Coelho, Mr. Domingos Fernandeo","male",20,0,0,"SOTON/O.Q. 3101307",7.0500,,"S",,,"Portugal"
-3,1,"Cohen, Mr. Gurshon ""Gus""","male",18,0,0,"A/5 3540",8.0500,,"S","12",,"London Brooklyn, NY"
-3,0,"Colbert, Mr. Patrick","male",24,0,0,"371109",7.2500,,"Q",,,"Co Limerick, Ireland Sherbrooke, PQ"
-3,0,"Coleff, Mr. Peju","male",36,0,0,"349210",7.4958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Coleff, Mr. Satio","male",24,0,0,"349209",7.4958,,"S",,,
-3,0,"Conlon, Mr. Thomas Henry","male",31,0,0,"21332",7.7333,,"Q",,,"Philadelphia, PA"
-3,0,"Connaghton, Mr. Michael","male",31,0,0,"335097",7.7500,,"Q",,,"Ireland Brooklyn, NY"
-3,1,"Connolly, Miss. Kate","female",22,0,0,"370373",7.7500,,"Q","13",,"Ireland"
-3,0,"Connolly, Miss. Kate","female",30,0,0,"330972",7.6292,,"Q",,,"Ireland"
-3,0,"Connors, Mr. Patrick","male",70.5,0,0,"370369",7.7500,,"Q",,"171",
-3,0,"Cook, Mr. Jacob","male",43,0,0,"A/5 3536",8.0500,,"S",,,
-3,0,"Cor, Mr. Bartol","male",35,0,0,"349230",7.8958,,"S",,,"Austria"
-3,0,"Cor, Mr. Ivan","male",27,0,0,"349229",7.8958,,"S",,,"Austria"
-3,0,"Cor, Mr. Liudevit","male",19,0,0,"349231",7.8958,,"S",,,"Austria"
-3,0,"Corn, Mr. Harry","male",30,0,0,"SOTON/OQ 392090",8.0500,,"S",,,"London"
-3,1,"Coutts, Master. Eden Leslie ""Neville""","male",9,1,1,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
-3,1,"Coutts, Master. William Loch ""William""","male",3,1,1,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
-3,1,"Coutts, Mrs. William (Winnie ""Minnie"" Treanor)","female",36,0,2,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
-3,0,"Coxon, Mr. Daniel","male",59,0,0,"364500",7.2500,,"S",,,"Merrill, WI"
-3,0,"Crease, Mr. Ernest James","male",19,0,0,"S.P. 3464",8.1583,,"S",,,"Bristol, England Cleveland, OH"
-3,1,"Cribb, Miss. Laura Alice","female",17,0,1,"371362",16.1000,,"S","12",,"Bournemouth, England Newark, NJ"
-3,0,"Cribb, Mr. John Hatfield","male",44,0,1,"371362",16.1000,,"S",,,"Bournemouth, England Newark, NJ"
-3,0,"Culumovic, Mr. Jeso","male",17,0,0,"315090",8.6625,,"S",,,"Austria-Hungary"
-3,0,"Daher, Mr. Shedid","male",22.5,0,0,"2698",7.2250,,"C",,"9",
-3,1,"Dahl, Mr. Karl Edwart","male",45,0,0,"7598",8.0500,,"S","15",,"Australia Fingal, ND"
-3,0,"Dahlberg, Miss. Gerda Ulrika","female",22,0,0,"7552",10.5167,,"S",,,"Norrlot, Sweden Chicago, IL"
-3,0,"Dakic, Mr. Branko","male",19,0,0,"349228",10.1708,,"S",,,"Austria"
-3,1,"Daly, Miss. Margaret Marcella ""Maggie""","female",30,0,0,"382650",6.9500,,"Q","15",,"Co Athlone, Ireland New York, NY"
-3,1,"Daly, Mr. Eugene Patrick","male",29,0,0,"382651",7.7500,,"Q","13 15 B",,"Co Athlone, Ireland New York, NY"
-3,0,"Danbom, Master. Gilbert Sigvard Emanuel","male",0.33,0,2,"347080",14.4000,,"S",,,"Stanton, IA"
-3,0,"Danbom, Mr. Ernst Gilbert","male",34,1,1,"347080",14.4000,,"S",,"197","Stanton, IA"
-3,0,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)","female",28,1,1,"347080",14.4000,,"S",,,"Stanton, IA"
-3,0,"Danoff, Mr. Yoto","male",27,0,0,"349219",7.8958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Dantcheff, Mr. Ristiu","male",25,0,0,"349203",7.8958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Davies, Mr. Alfred J","male",24,2,0,"A/4 48871",24.1500,,"S",,,"West Bromwich, England Pontiac, MI"
-3,0,"Davies, Mr. Evan","male",22,0,0,"SC/A4 23568",8.0500,,"S",,,
-3,0,"Davies, Mr. John Samuel","male",21,2,0,"A/4 48871",24.1500,,"S",,,"West Bromwich, England Pontiac, MI"
-3,0,"Davies, Mr. Joseph","male",17,2,0,"A/4 48873",8.0500,,"S",,,"West Bromwich, England Pontiac, MI"
-3,0,"Davison, Mr. Thomas Henry","male",,1,0,"386525",16.1000,,"S",,,"Liverpool, England Bedford, OH"
-3,1,"Davison, Mrs. Thomas Henry (Mary E Finck)","female",,1,0,"386525",16.1000,,"S","16",,"Liverpool, England Bedford, OH"
-3,1,"de Messemaeker, Mr. Guillaume Joseph","male",36.5,1,0,"345572",17.4000,,"S","15",,"Tampico, MT"
-3,1,"de Messemaeker, Mrs. Guillaume Joseph (Emma)","female",36,1,0,"345572",17.4000,,"S","13",,"Tampico, MT"
-3,1,"de Mulder, Mr. Theodore","male",30,0,0,"345774",9.5000,,"S","11",,"Belgium Detroit, MI"
-3,0,"de Pelsmaeker, Mr. Alfons","male",16,0,0,"345778",9.5000,,"S",,,
-3,1,"Dean, Master. Bertram Vere","male",1,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
-3,1,"Dean, Miss. Elizabeth Gladys ""Millvina""","female",0.17,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
-3,0,"Dean, Mr. Bertram Frank","male",26,1,2,"C.A. 2315",20.5750,,"S",,,"Devon, England Wichita, KS"
-3,1,"Dean, Mrs. Bertram (Eva Georgetta Light)","female",33,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
-3,0,"Delalic, Mr. Redjo","male",25,0,0,"349250",7.8958,,"S",,,
-3,0,"Demetri, Mr. Marinko","male",,0,0,"349238",7.8958,,"S",,,
-3,0,"Denkoff, Mr. Mitto","male",,0,0,"349225",7.8958,,"S",,,"Bulgaria Coon Rapids, IA"
-3,0,"Dennis, Mr. Samuel","male",22,0,0,"A/5 21172",7.2500,,"S",,,
-3,0,"Dennis, Mr. William","male",36,0,0,"A/5 21175",7.2500,,"S",,,
-3,1,"Devaney, Miss. Margaret Delia","female",19,0,0,"330958",7.8792,,"Q","C",,"Kilmacowen, Co Sligo, Ireland New York, NY"
-3,0,"Dika, Mr. Mirko","male",17,0,0,"349232",7.8958,,"S",,,
-3,0,"Dimic, Mr. Jovan","male",42,0,0,"315088",8.6625,,"S",,,
-3,0,"Dintcheff, Mr. Valtcho","male",43,0,0,"349226",7.8958,,"S",,,
-3,0,"Doharr, Mr. Tannous","male",,0,0,"2686",7.2292,,"C",,,
-3,0,"Dooley, Mr. Patrick","male",32,0,0,"370376",7.7500,,"Q",,,"Ireland New York, NY"
-3,1,"Dorking, Mr. Edward Arthur","male",19,0,0,"A/5. 10482",8.0500,,"S","B",,"England Oglesby, IL"
-3,1,"Dowdell, Miss. Elizabeth","female",30,0,0,"364516",12.4750,,"S","13",,"Union Hill, NJ"
-3,0,"Doyle, Miss. Elizabeth","female",24,0,0,"368702",7.7500,,"Q",,,"Ireland New York, NY"
-3,1,"Drapkin, Miss. Jennie","female",23,0,0,"SOTON/OQ 392083",8.0500,,"S",,,"London New York, NY"
-3,0,"Drazenoic, Mr. Jozef","male",33,0,0,"349241",7.8958,,"C",,"51","Austria Niagara Falls, NY"
-3,0,"Duane, Mr. Frank","male",65,0,0,"336439",7.7500,,"Q",,,
-3,1,"Duquemin, Mr. Joseph","male",24,0,0,"S.O./P.P. 752",7.5500,,"S","D",,"England Albion, NY"
-3,0,"Dyker, Mr. Adolf Fredrik","male",23,1,0,"347072",13.9000,,"S",,,"West Haven, CT"
-3,1,"Dyker, Mrs. Adolf Fredrik (Anna Elisabeth Judith Andersson)","female",22,1,0,"347072",13.9000,,"S","16",,"West Haven, CT"
-3,0,"Edvardsson, Mr. Gustaf Hjalmar","male",18,0,0,"349912",7.7750,,"S",,,"Tofta, Sweden Joliet, IL"
-3,0,"Eklund, Mr. Hans Linus","male",16,0,0,"347074",7.7750,,"S",,,"Karberg, Sweden Jerome Junction, AZ"
-3,0,"Ekstrom, Mr. Johan","male",45,0,0,"347061",6.9750,,"S",,,"Effington Rut, SD"
-3,0,"Elias, Mr. Dibo","male",,0,0,"2674",7.2250,,"C",,,
-3,0,"Elias, Mr. Joseph","male",39,0,2,"2675",7.2292,,"C",,,"Syria Ottawa, ON"
-3,0,"Elias, Mr. Joseph Jr","male",17,1,1,"2690",7.2292,,"C",,,
-3,0,"Elias, Mr. Tannous","male",15,1,1,"2695",7.2292,,"C",,,"Syria"
-3,0,"Elsbury, Mr. William James","male",47,0,0,"A/5 3902",7.2500,,"S",,,"Illinois, USA"
-3,1,"Emanuel, Miss. Virginia Ethel","female",5,0,0,"364516",12.4750,,"S","13",,"New York, NY"
-3,0,"Emir, Mr. Farred Chehab","male",,0,0,"2631",7.2250,,"C",,,
-3,0,"Everett, Mr. Thomas James","male",40.5,0,0,"C.A. 6212",15.1000,,"S",,"187",
-3,0,"Farrell, Mr. James","male",40.5,0,0,"367232",7.7500,,"Q",,"68","Aughnacliff, Co Longford, Ireland New York, NY"
-3,1,"Finoli, Mr. Luigi","male",,0,0,"SOTON/O.Q. 3101308",7.0500,,"S","15",,"Italy Philadelphia, PA"
-3,0,"Fischer, Mr. Eberhard Thelander","male",18,0,0,"350036",7.7958,,"S",,,
-3,0,"Fleming, Miss. Honora","female",,0,0,"364859",7.7500,,"Q",,,
-3,0,"Flynn, Mr. James","male",,0,0,"364851",7.7500,,"Q",,,
-3,0,"Flynn, Mr. John","male",,0,0,"368323",6.9500,,"Q",,,
-3,0,"Foley, Mr. Joseph","male",26,0,0,"330910",7.8792,,"Q",,,"Ireland Chicago, IL"
-3,0,"Foley, Mr. William","male",,0,0,"365235",7.7500,,"Q",,,"Ireland"
-3,1,"Foo, Mr. Choong","male",,0,0,"1601",56.4958,,"S","13",,"Hong Kong New York, NY"
-3,0,"Ford, Miss. Doolina Margaret ""Daisy""","female",21,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Ford, Miss. Robina Maggie ""Ruby""","female",9,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Ford, Mr. Arthur","male",,0,0,"A/5 1478",8.0500,,"S",,,"Bridgwater, Somerset, England"
-3,0,"Ford, Mr. Edward Watson","male",18,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Ford, Mr. William Neal","male",16,1,3,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Ford, Mrs. Edward (Margaret Ann Watson)","female",48,1,3,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Fox, Mr. Patrick","male",,0,0,"368573",7.7500,,"Q",,,"Ireland New York, NY"
-3,0,"Franklin, Mr. Charles (Charles Fardon)","male",,0,0,"SOTON/O.Q. 3101314",7.2500,,"S",,,
-3,0,"Gallagher, Mr. Martin","male",25,0,0,"36864",7.7417,,"Q",,,"New York, NY"
-3,0,"Garfirth, Mr. John","male",,0,0,"358585",14.5000,,"S",,,
-3,0,"Gheorgheff, Mr. Stanio","male",,0,0,"349254",7.8958,,"C",,,
-3,0,"Gilinski, Mr. Eliezer","male",22,0,0,"14973",8.0500,,"S",,"47",
-3,1,"Gilnagh, Miss. Katherine ""Katie""","female",16,0,0,"35851",7.7333,,"Q","16",,"Co Longford, Ireland New York, NY"
-3,1,"Glynn, Miss. Mary Agatha","female",,0,0,"335677",7.7500,,"Q","13",,"Co Clare, Ireland Washington, DC"
-3,1,"Goldsmith, Master. Frank John William ""Frankie""","male",9,0,2,"363291",20.5250,,"S","C D",,"Strood, Kent, England Detroit, MI"
-3,0,"Goldsmith, Mr. Frank John","male",33,1,1,"363291",20.5250,,"S",,,"Strood, Kent, England Detroit, MI"
-3,0,"Goldsmith, Mr. Nathan","male",41,0,0,"SOTON/O.Q. 3101263",7.8500,,"S",,,"Philadelphia, PA"
-3,1,"Goldsmith, Mrs. Frank John (Emily Alice Brown)","female",31,1,1,"363291",20.5250,,"S","C D",,"Strood, Kent, England Detroit, MI"
-3,0,"Goncalves, Mr. Manuel Estanslas","male",38,0,0,"SOTON/O.Q. 3101306",7.0500,,"S",,,"Portugal"
-3,0,"Goodwin, Master. Harold Victor","male",9,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Master. Sidney Leonard","male",1,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Master. William Frederick","male",11,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Miss. Jessie Allis","female",10,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Miss. Lillian Amy","female",16,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Mr. Charles Edward","male",14,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Mr. Charles Frederick","male",40,1,6,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Mrs. Frederick (Augusta Tyler)","female",43,1,6,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Green, Mr. George Henry","male",51,0,0,"21440",8.0500,,"S",,,"Dorking, Surrey, England"
-3,0,"Gronnestad, Mr. Daniel Danielsen","male",32,0,0,"8471",8.3625,,"S",,,"Foresvik, Norway Portland, ND"
-3,0,"Guest, Mr. Robert","male",,0,0,"376563",8.0500,,"S",,,
-3,0,"Gustafsson, Mr. Alfred Ossian","male",20,0,0,"7534",9.8458,,"S",,,"Waukegan, Chicago, IL"
-3,0,"Gustafsson, Mr. Anders Vilhelm","male",37,2,0,"3101276",7.9250,,"S",,"98","Ruotsinphytaa, Finland New York, NY"
-3,0,"Gustafsson, Mr. Johan Birger","male",28,2,0,"3101277",7.9250,,"S",,,"Ruotsinphytaa, Finland New York, NY"
-3,0,"Gustafsson, Mr. Karl Gideon","male",19,0,0,"347069",7.7750,,"S",,,"Myren, Sweden New York, NY"
-3,0,"Haas, Miss. Aloisia","female",24,0,0,"349236",8.8500,,"S",,,
-3,0,"Hagardon, Miss. Kate","female",17,0,0,"AQ/3. 30631",7.7333,,"Q",,,
-3,0,"Hagland, Mr. Ingvald Olai Olsen","male",,1,0,"65303",19.9667,,"S",,,
-3,0,"Hagland, Mr. Konrad Mathias Reiersen","male",,1,0,"65304",19.9667,,"S",,,
-3,0,"Hakkarainen, Mr. Pekka Pietari","male",28,1,0,"STON/O2. 3101279",15.8500,,"S",,,
-3,1,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)","female",24,1,0,"STON/O2. 3101279",15.8500,,"S","15",,
-3,0,"Hampe, Mr. Leon","male",20,0,0,"345769",9.5000,,"S",,,
-3,0,"Hanna, Mr. Mansour","male",23.5,0,0,"2693",7.2292,,"C",,"188",
-3,0,"Hansen, Mr. Claus Peter","male",41,2,0,"350026",14.1083,,"S",,,
-3,0,"Hansen, Mr. Henrik Juul","male",26,1,0,"350025",7.8542,,"S",,,
-3,0,"Hansen, Mr. Henry Damsgaard","male",21,0,0,"350029",7.8542,,"S",,"69",
-3,1,"Hansen, Mrs. Claus Peter (Jennie L Howard)","female",45,1,0,"350026",14.1083,,"S","11",,
-3,0,"Harknett, Miss. Alice Phoebe","female",,0,0,"W./C. 6609",7.5500,,"S",,,
-3,0,"Harmer, Mr. Abraham (David Lishin)","male",25,0,0,"374887",7.2500,,"S","B",,
-3,0,"Hart, Mr. Henry","male",,0,0,"394140",6.8583,,"Q",,,
-3,0,"Hassan, Mr. Houssein G N","male",11,0,0,"2699",18.7875,,"C",,,
-3,1,"Healy, Miss. Hanora ""Nora""","female",,0,0,"370375",7.7500,,"Q","16",,
-3,1,"Hedman, Mr. Oskar Arvid","male",27,0,0,"347089",6.9750,,"S","15",,
-3,1,"Hee, Mr. Ling","male",,0,0,"1601",56.4958,,"S","C",,
-3,0,"Hegarty, Miss. Hanora ""Nora""","female",18,0,0,"365226",6.7500,,"Q",,,
-3,1,"Heikkinen, Miss. Laina","female",26,0,0,"STON/O2. 3101282",7.9250,,"S",,,
-3,0,"Heininen, Miss. Wendla Maria","female",23,0,0,"STON/O2. 3101290",7.9250,,"S",,,
-3,1,"Hellstrom, Miss. Hilda Maria","female",22,0,0,"7548",8.9625,,"S","C",,
-3,0,"Hendekovic, Mr. Ignjac","male",28,0,0,"349243",7.8958,,"S",,"306",
-3,0,"Henriksson, Miss. Jenny Lovisa","female",28,0,0,"347086",7.7750,,"S",,,
-3,0,"Henry, Miss. Delia","female",,0,0,"382649",7.7500,,"Q",,,
-3,1,"Hirvonen, Miss. Hildur E","female",2,0,1,"3101298",12.2875,,"S","15",,
-3,1,"Hirvonen, Mrs. Alexander (Helga E Lindqvist)","female",22,1,1,"3101298",12.2875,,"S","15",,
-3,0,"Holm, Mr. John Fredrik Alexander","male",43,0,0,"C 7075",6.4500,,"S",,,
-3,0,"Holthen, Mr. Johan Martin","male",28,0,0,"C 4001",22.5250,,"S",,,
-3,1,"Honkanen, Miss. Eliina","female",27,0,0,"STON/O2. 3101283",7.9250,,"S",,,
-3,0,"Horgan, Mr. John","male",,0,0,"370377",7.7500,,"Q",,,
-3,1,"Howard, Miss. May Elizabeth","female",,0,0,"A. 2. 39186",8.0500,,"S","C",,
-3,0,"Humblen, Mr. Adolf Mathias Nicolai Olsen","male",42,0,0,"348121",7.6500,"F G63","S",,"120",
-3,1,"Hyman, Mr. Abraham","male",,0,0,"3470",7.8875,,"S","C",,
-3,0,"Ibrahim Shawah, Mr. Yousseff","male",30,0,0,"2685",7.2292,,"C",,,
-3,0,"Ilieff, Mr. Ylio","male",,0,0,"349220",7.8958,,"S",,,
-3,0,"Ilmakangas, Miss. Ida Livija","female",27,1,0,"STON/O2. 3101270",7.9250,,"S",,,
-3,0,"Ilmakangas, Miss. Pieta Sofia","female",25,1,0,"STON/O2. 3101271",7.9250,,"S",,,
-3,0,"Ivanoff, Mr. Kanio","male",,0,0,"349201",7.8958,,"S",,,
-3,1,"Jalsevac, Mr. Ivan","male",29,0,0,"349240",7.8958,,"C","15",,
-3,1,"Jansson, Mr. Carl Olof","male",21,0,0,"350034",7.7958,,"S","A",,
-3,0,"Jardin, Mr. Jose Neto","male",,0,0,"SOTON/O.Q. 3101305",7.0500,,"S",,,
-3,0,"Jensen, Mr. Hans Peder","male",20,0,0,"350050",7.8542,,"S",,,
-3,0,"Jensen, Mr. Niels Peder","male",48,0,0,"350047",7.8542,,"S",,,
-3,0,"Jensen, Mr. Svend Lauritz","male",17,1,0,"350048",7.0542,,"S",,,
-3,1,"Jermyn, Miss. Annie","female",,0,0,"14313",7.7500,,"Q","D",,
-3,1,"Johannesen-Bratthammer, Mr. Bernt","male",,0,0,"65306",8.1125,,"S","13",,
-3,0,"Johanson, Mr. Jakob Alfred","male",34,0,0,"3101264",6.4958,,"S",,"143",
-3,1,"Johansson Palmquist, Mr. Oskar Leander","male",26,0,0,"347070",7.7750,,"S","15",,
-3,0,"Johansson, Mr. Erik","male",22,0,0,"350052",7.7958,,"S",,"156",
-3,0,"Johansson, Mr. Gustaf Joel","male",33,0,0,"7540",8.6542,,"S",,"285",
-3,0,"Johansson, Mr. Karl Johan","male",31,0,0,"347063",7.7750,,"S",,,
-3,0,"Johansson, Mr. Nils","male",29,0,0,"347467",7.8542,,"S",,,
-3,1,"Johnson, Master. Harold Theodor","male",4,1,1,"347742",11.1333,,"S","15",,
-3,1,"Johnson, Miss. Eleanor Ileen","female",1,1,1,"347742",11.1333,,"S","15",,
-3,0,"Johnson, Mr. Alfred","male",49,0,0,"LINE",0.0000,,"S",,,
-3,0,"Johnson, Mr. Malkolm Joackim","male",33,0,0,"347062",7.7750,,"S",,"37",
-3,0,"Johnson, Mr. William Cahoone Jr","male",19,0,0,"LINE",0.0000,,"S",,,
-3,1,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)","female",27,0,2,"347742",11.1333,,"S","15",,
-3,0,"Johnston, Master. William Arthur ""Willie""","male",,1,2,"W./C. 6607",23.4500,,"S",,,
-3,0,"Johnston, Miss. Catherine Helen ""Carrie""","female",,1,2,"W./C. 6607",23.4500,,"S",,,
-3,0,"Johnston, Mr. Andrew G","male",,1,2,"W./C. 6607",23.4500,,"S",,,
-3,0,"Johnston, Mrs. Andrew G (Elizabeth ""Lily"" Watson)","female",,1,2,"W./C. 6607",23.4500,,"S",,,
-3,0,"Jonkoff, Mr. Lalio","male",23,0,0,"349204",7.8958,,"S",,,
-3,1,"Jonsson, Mr. Carl","male",32,0,0,"350417",7.8542,,"S","15",,
-3,0,"Jonsson, Mr. Nils Hilding","male",27,0,0,"350408",7.8542,,"S",,,
-3,0,"Jussila, Miss. Katriina","female",20,1,0,"4136",9.8250,,"S",,,
-3,0,"Jussila, Miss. Mari Aina","female",21,1,0,"4137",9.8250,,"S",,,
-3,1,"Jussila, Mr. Eiriik","male",32,0,0,"STON/O 2. 3101286",7.9250,,"S","15",,
-3,0,"Kallio, Mr. Nikolai Erland","male",17,0,0,"STON/O 2. 3101274",7.1250,,"S",,,
-3,0,"Kalvik, Mr. Johannes Halvorsen","male",21,0,0,"8475",8.4333,,"S",,,
-3,0,"Karaic, Mr. Milan","male",30,0,0,"349246",7.8958,,"S",,,
-3,1,"Karlsson, Mr. Einar Gervasius","male",21,0,0,"350053",7.7958,,"S","13",,
-3,0,"Karlsson, Mr. Julius Konrad Eugen","male",33,0,0,"347465",7.8542,,"S",,,
-3,0,"Karlsson, Mr. Nils August","male",22,0,0,"350060",7.5208,,"S",,,
-3,1,"Karun, Miss. Manca","female",4,0,1,"349256",13.4167,,"C","15",,
-3,1,"Karun, Mr. Franz","male",39,0,1,"349256",13.4167,,"C","15",,
-3,0,"Kassem, Mr. Fared","male",,0,0,"2700",7.2292,,"C",,,
-3,0,"Katavelas, Mr. Vassilios (""Catavelas Vassilios"")","male",18.5,0,0,"2682",7.2292,,"C",,"58",
-3,0,"Keane, Mr. Andrew ""Andy""","male",,0,0,"12460",7.7500,,"Q",,,
-3,0,"Keefe, Mr. Arthur","male",,0,0,"323592",7.2500,,"S","A",,
-3,1,"Kelly, Miss. Anna Katherine ""Annie Kate""","female",,0,0,"9234",7.7500,,"Q","16",,
-3,1,"Kelly, Miss. Mary","female",,0,0,"14312",7.7500,,"Q","D",,
-3,0,"Kelly, Mr. James","male",34.5,0,0,"330911",7.8292,,"Q",,"70",
-3,0,"Kelly, Mr. James","male",44,0,0,"363592",8.0500,,"S",,,
-3,1,"Kennedy, Mr. John","male",,0,0,"368783",7.7500,,"Q",,,
-3,0,"Khalil, Mr. Betros","male",,1,0,"2660",14.4542,,"C",,,
-3,0,"Khalil, Mrs. Betros (Zahie ""Maria"" Elias)","female",,1,0,"2660",14.4542,,"C",,,
-3,0,"Kiernan, Mr. John","male",,1,0,"367227",7.7500,,"Q",,,
-3,0,"Kiernan, Mr. Philip","male",,1,0,"367229",7.7500,,"Q",,,
-3,0,"Kilgannon, Mr. Thomas J","male",,0,0,"36865",7.7375,,"Q",,,
-3,0,"Kink, Miss. Maria","female",22,2,0,"315152",8.6625,,"S",,,
-3,0,"Kink, Mr. Vincenz","male",26,2,0,"315151",8.6625,,"S",,,
-3,1,"Kink-Heilmann, Miss. Luise Gretchen","female",4,0,2,"315153",22.0250,,"S","2",,
-3,1,"Kink-Heilmann, Mr. Anton","male",29,3,1,"315153",22.0250,,"S","2",,
-3,1,"Kink-Heilmann, Mrs. Anton (Luise Heilmann)","female",26,1,1,"315153",22.0250,,"S","2",,
-3,0,"Klasen, Miss. Gertrud Emilia","female",1,1,1,"350405",12.1833,,"S",,,
-3,0,"Klasen, Mr. Klas Albin","male",18,1,1,"350404",7.8542,,"S",,,
-3,0,"Klasen, Mrs. (Hulda Kristina Eugenia Lofqvist)","female",36,0,2,"350405",12.1833,,"S",,,
-3,0,"Kraeff, Mr. Theodor","male",,0,0,"349253",7.8958,,"C",,,
-3,1,"Krekorian, Mr. Neshan","male",25,0,0,"2654",7.2292,"F E57","C","10",,
-3,0,"Lahoud, Mr. Sarkis","male",,0,0,"2624",7.2250,,"C",,,
-3,0,"Laitinen, Miss. Kristina Sofia","female",37,0,0,"4135",9.5875,,"S",,,
-3,0,"Laleff, Mr. Kristo","male",,0,0,"349217",7.8958,,"S",,,
-3,1,"Lam, Mr. Ali","male",,0,0,"1601",56.4958,,"S","C",,
-3,0,"Lam, Mr. Len","male",,0,0,"1601",56.4958,,"S",,,
-3,1,"Landergren, Miss. Aurora Adelia","female",22,0,0,"C 7077",7.2500,,"S","13",,
-3,0,"Lane, Mr. Patrick","male",,0,0,"7935",7.7500,,"Q",,,
-3,1,"Lang, Mr. Fang","male",26,0,0,"1601",56.4958,,"S","14",,
-3,0,"Larsson, Mr. August Viktor","male",29,0,0,"7545",9.4833,,"S",,,
-3,0,"Larsson, Mr. Bengt Edvin","male",29,0,0,"347067",7.7750,,"S",,,
-3,0,"Larsson-Rondberg, Mr. Edvard A","male",22,0,0,"347065",7.7750,,"S",,,
-3,1,"Leeni, Mr. Fahim (""Philip Zenni"")","male",22,0,0,"2620",7.2250,,"C","6",,
-3,0,"Lefebre, Master. Henry Forbes","male",,3,1,"4133",25.4667,,"S",,,
-3,0,"Lefebre, Miss. Ida","female",,3,1,"4133",25.4667,,"S",,,
-3,0,"Lefebre, Miss. Jeannie","female",,3,1,"4133",25.4667,,"S",,,
-3,0,"Lefebre, Miss. Mathilde","female",,3,1,"4133",25.4667,,"S",,,
-3,0,"Lefebre, Mrs. Frank (Frances)","female",,0,4,"4133",25.4667,,"S",,,
-3,0,"Leinonen, Mr. Antti Gustaf","male",32,0,0,"STON/O 2. 3101292",7.9250,,"S",,,
-3,0,"Lemberopolous, Mr. Peter L","male",34.5,0,0,"2683",6.4375,,"C",,"196",
-3,0,"Lennon, Miss. Mary","female",,1,0,"370371",15.5000,,"Q",,,
-3,0,"Lennon, Mr. Denis","male",,1,0,"370371",15.5000,,"Q",,,
-3,0,"Leonard, Mr. Lionel","male",36,0,0,"LINE",0.0000,,"S",,,
-3,0,"Lester, Mr. James","male",39,0,0,"A/4 48871",24.1500,,"S",,,
-3,0,"Lievens, Mr. Rene Aime","male",24,0,0,"345781",9.5000,,"S",,,
-3,0,"Lindahl, Miss. Agda Thorilda Viktoria","female",25,0,0,"347071",7.7750,,"S",,,
-3,0,"Lindblom, Miss. Augusta Charlotta","female",45,0,0,"347073",7.7500,,"S",,,
-3,0,"Lindell, Mr. Edvard Bengtsson","male",36,1,0,"349910",15.5500,,"S","A",,
-3,0,"Lindell, Mrs. Edvard Bengtsson (Elin Gerda Persson)","female",30,1,0,"349910",15.5500,,"S","A",,
-3,1,"Lindqvist, Mr. Eino William","male",20,1,0,"STON/O 2. 3101285",7.9250,,"S","15",,
-3,0,"Linehan, Mr. Michael","male",,0,0,"330971",7.8792,,"Q",,,
-3,0,"Ling, Mr. Lee","male",28,0,0,"1601",56.4958,,"S",,,
-3,0,"Lithman, Mr. Simon","male",,0,0,"S.O./P.P. 251",7.5500,,"S",,,
-3,0,"Lobb, Mr. William Arthur","male",30,1,0,"A/5. 3336",16.1000,,"S",,,
-3,0,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)","female",26,1,0,"A/5. 3336",16.1000,,"S",,,
-3,0,"Lockyer, Mr. Edward","male",,0,0,"1222",7.8792,,"S",,"153",
-3,0,"Lovell, Mr. John Hall (""Henry"")","male",20.5,0,0,"A/5 21173",7.2500,,"S",,,
-3,1,"Lulic, Mr. Nikola","male",27,0,0,"315098",8.6625,,"S","15",,
-3,0,"Lundahl, Mr. Johan Svensson","male",51,0,0,"347743",7.0542,,"S",,,
-3,1,"Lundin, Miss. Olga Elida","female",23,0,0,"347469",7.8542,,"S","10",,
-3,1,"Lundstrom, Mr. Thure Edvin","male",32,0,0,"350403",7.5792,,"S","15",,
-3,0,"Lyntakoff, Mr. Stanko","male",,0,0,"349235",7.8958,,"S",,,
-3,0,"MacKay, Mr. George William","male",,0,0,"C.A. 42795",7.5500,,"S",,,
-3,1,"Madigan, Miss. Margaret ""Maggie""","female",,0,0,"370370",7.7500,,"Q","15",,
-3,1,"Madsen, Mr. Fridtjof Arne","male",24,0,0,"C 17369",7.1417,,"S","13",,
-3,0,"Maenpaa, Mr. Matti Alexanteri","male",22,0,0,"STON/O 2. 3101275",7.1250,,"S",,,
-3,0,"Mahon, Miss. Bridget Delia","female",,0,0,"330924",7.8792,,"Q",,,
-3,0,"Mahon, Mr. John","male",,0,0,"AQ/4 3130",7.7500,,"Q",,,
-3,0,"Maisner, Mr. Simon","male",,0,0,"A/S 2816",8.0500,,"S",,,
-3,0,"Makinen, Mr. Kalle Edvard","male",29,0,0,"STON/O 2. 3101268",7.9250,,"S",,,
-3,1,"Mamee, Mr. Hanna","male",,0,0,"2677",7.2292,,"C","15",,
-3,0,"Mangan, Miss. Mary","female",30.5,0,0,"364850",7.7500,,"Q",,"61",
-3,1,"Mannion, Miss. Margareth","female",,0,0,"36866",7.7375,,"Q","16",,
-3,0,"Mardirosian, Mr. Sarkis","male",,0,0,"2655",7.2292,"F E46","C",,,
-3,0,"Markoff, Mr. Marin","male",35,0,0,"349213",7.8958,,"C",,,
-3,0,"Markun, Mr. Johann","male",33,0,0,"349257",7.8958,,"S",,,
-3,1,"Masselmani, Mrs. Fatima","female",,0,0,"2649",7.2250,,"C","C",,
-3,0,"Matinoff, Mr. Nicola","male",,0,0,"349255",7.8958,,"C",,,
-3,1,"McCarthy, Miss. Catherine ""Katie""","female",,0,0,"383123",7.7500,,"Q","15 16",,
-3,1,"McCormack, Mr. Thomas Joseph","male",,0,0,"367228",7.7500,,"Q",,,
-3,1,"McCoy, Miss. Agnes","female",,2,0,"367226",23.2500,,"Q","16",,
-3,1,"McCoy, Miss. Alicia","female",,2,0,"367226",23.2500,,"Q","16",,
-3,1,"McCoy, Mr. Bernard","male",,2,0,"367226",23.2500,,"Q","16",,
-3,1,"McDermott, Miss. Brigdet Delia","female",,0,0,"330932",7.7875,,"Q","13",,
-3,0,"McEvoy, Mr. Michael","male",,0,0,"36568",15.5000,,"Q",,,
-3,1,"McGovern, Miss. Mary","female",,0,0,"330931",7.8792,,"Q","13",,
-3,1,"McGowan, Miss. Anna ""Annie""","female",15,0,0,"330923",8.0292,,"Q",,,
-3,0,"McGowan, Miss. Katherine","female",35,0,0,"9232",7.7500,,"Q",,,
-3,0,"McMahon, Mr. Martin","male",,0,0,"370372",7.7500,,"Q",,,
-3,0,"McNamee, Mr. Neal","male",24,1,0,"376566",16.1000,,"S",,,
-3,0,"McNamee, Mrs. Neal (Eileen O'Leary)","female",19,1,0,"376566",16.1000,,"S",,"53",
-3,0,"McNeill, Miss. Bridget","female",,0,0,"370368",7.7500,,"Q",,,
-3,0,"Meanwell, Miss. (Marion Ogden)","female",,0,0,"SOTON/O.Q. 392087",8.0500,,"S",,,
-3,0,"Meek, Mrs. Thomas (Annie Louise Rowley)","female",,0,0,"343095",8.0500,,"S",,,
-3,0,"Meo, Mr. Alfonzo","male",55.5,0,0,"A.5. 11206",8.0500,,"S",,"201",
-3,0,"Mernagh, Mr. Robert","male",,0,0,"368703",7.7500,,"Q",,,
-3,1,"Midtsjo, Mr. Karl Albert","male",21,0,0,"345501",7.7750,,"S","15",,
-3,0,"Miles, Mr. Frank","male",,0,0,"359306",8.0500,,"S",,,
-3,0,"Mineff, Mr. Ivan","male",24,0,0,"349233",7.8958,,"S",,,
-3,0,"Minkoff, Mr. Lazar","male",21,0,0,"349211",7.8958,,"S",,,
-3,0,"Mionoff, Mr. Stoytcho","male",28,0,0,"349207",7.8958,,"S",,,
-3,0,"Mitkoff, Mr. Mito","male",,0,0,"349221",7.8958,,"S",,,
-3,1,"Mockler, Miss. Helen Mary ""Ellie""","female",,0,0,"330980",7.8792,,"Q","16",,
-3,0,"Moen, Mr. Sigurd Hansen","male",25,0,0,"348123",7.6500,"F G73","S",,"309",
-3,1,"Moor, Master. Meier","male",6,0,1,"392096",12.4750,"E121","S","14",,
-3,1,"Moor, Mrs. (Beila)","female",27,0,1,"392096",12.4750,"E121","S","14",,
-3,0,"Moore, Mr. Leonard Charles","male",,0,0,"A4. 54510",8.0500,,"S",,,
-3,1,"Moran, Miss. Bertha","female",,1,0,"371110",24.1500,,"Q","16",,
-3,0,"Moran, Mr. Daniel J","male",,1,0,"371110",24.1500,,"Q",,,
-3,0,"Moran, Mr. James","male",,0,0,"330877",8.4583,,"Q",,,
-3,0,"Morley, Mr. William","male",34,0,0,"364506",8.0500,,"S",,,
-3,0,"Morrow, Mr. Thomas Rowan","male",,0,0,"372622",7.7500,,"Q",,,
-3,1,"Moss, Mr. Albert Johan","male",,0,0,"312991",7.7750,,"S","B",,
-3,1,"Moubarek, Master. Gerios","male",,1,1,"2661",15.2458,,"C","C",,
-3,1,"Moubarek, Master. Halim Gonios (""William George"")","male",,1,1,"2661",15.2458,,"C","C",,
-3,1,"Moubarek, Mrs. George (Omine ""Amenia"" Alexander)","female",,0,2,"2661",15.2458,,"C","C",,
-3,1,"Moussa, Mrs. (Mantoura Boulos)","female",,0,0,"2626",7.2292,,"C",,,
-3,0,"Moutal, Mr. Rahamin Haim","male",,0,0,"374746",8.0500,,"S",,,
-3,1,"Mullens, Miss. Katherine ""Katie""","female",,0,0,"35852",7.7333,,"Q","16",,
-3,1,"Mulvihill, Miss. Bertha E","female",24,0,0,"382653",7.7500,,"Q","15",,
-3,0,"Murdlin, Mr. Joseph","male",,0,0,"A./5. 3235",8.0500,,"S",,,
-3,1,"Murphy, Miss. Katherine ""Kate""","female",,1,0,"367230",15.5000,,"Q","16",,
-3,1,"Murphy, Miss. Margaret Jane","female",,1,0,"367230",15.5000,,"Q","16",,
-3,1,"Murphy, Miss. Nora","female",,0,0,"36568",15.5000,,"Q","16",,
-3,0,"Myhrman, Mr. Pehr Fabian Oliver Malkolm","male",18,0,0,"347078",7.7500,,"S",,,
-3,0,"Naidenoff, Mr. Penko","male",22,0,0,"349206",7.8958,,"S",,,
-3,1,"Najib, Miss. Adele Kiamie ""Jane""","female",15,0,0,"2667",7.2250,,"C","C",,
-3,1,"Nakid, Miss. Maria (""Mary"")","female",1,0,2,"2653",15.7417,,"C","C",,
-3,1,"Nakid, Mr. Sahid","male",20,1,1,"2653",15.7417,,"C","C",,
-3,1,"Nakid, Mrs. Said (Waika ""Mary"" Mowad)","female",19,1,1,"2653",15.7417,,"C","C",,
-3,0,"Nancarrow, Mr. William Henry","male",33,0,0,"A./5. 3338",8.0500,,"S",,,
-3,0,"Nankoff, Mr. Minko","male",,0,0,"349218",7.8958,,"S",,,
-3,0,"Nasr, Mr. Mustafa","male",,0,0,"2652",7.2292,,"C",,,
-3,0,"Naughton, Miss. Hannah","female",,0,0,"365237",7.7500,,"Q",,,
-3,0,"Nenkoff, Mr. Christo","male",,0,0,"349234",7.8958,,"S",,,
-3,1,"Nicola-Yarred, Master. Elias","male",12,1,0,"2651",11.2417,,"C","C",,
-3,1,"Nicola-Yarred, Miss. Jamila","female",14,1,0,"2651",11.2417,,"C","C",,
-3,0,"Nieminen, Miss. Manta Josefina","female",29,0,0,"3101297",7.9250,,"S",,,
-3,0,"Niklasson, Mr. Samuel","male",28,0,0,"363611",8.0500,,"S",,,
-3,1,"Nilsson, Miss. Berta Olivia","female",18,0,0,"347066",7.7750,,"S","D",,
-3,1,"Nilsson, Miss. Helmina Josefina","female",26,0,0,"347470",7.8542,,"S","13",,
-3,0,"Nilsson, Mr. August Ferdinand","male",21,0,0,"350410",7.8542,,"S",,,
-3,0,"Nirva, Mr. Iisakki Antino Aijo","male",41,0,0,"SOTON/O2 3101272",7.1250,,"S",,,"Finland Sudbury, ON"
-3,1,"Niskanen, Mr. Juha","male",39,0,0,"STON/O 2. 3101289",7.9250,,"S","9",,
-3,0,"Nosworthy, Mr. Richard Cater","male",21,0,0,"A/4. 39886",7.8000,,"S",,,
-3,0,"Novel, Mr. Mansouer","male",28.5,0,0,"2697",7.2292,,"C",,"181",
-3,1,"Nysten, Miss. Anna Sofia","female",22,0,0,"347081",7.7500,,"S","13",,
-3,0,"Nysveen, Mr. Johan Hansen","male",61,0,0,"345364",6.2375,,"S",,,
-3,0,"O'Brien, Mr. Thomas","male",,1,0,"370365",15.5000,,"Q",,,
-3,0,"O'Brien, Mr. Timothy","male",,0,0,"330979",7.8292,,"Q",,,
-3,1,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)","female",,1,0,"370365",15.5000,,"Q",,,
-3,0,"O'Connell, Mr. Patrick D","male",,0,0,"334912",7.7333,,"Q",,,
-3,0,"O'Connor, Mr. Maurice","male",,0,0,"371060",7.7500,,"Q",,,
-3,0,"O'Connor, Mr. Patrick","male",,0,0,"366713",7.7500,,"Q",,,
-3,0,"Odahl, Mr. Nils Martin","male",23,0,0,"7267",9.2250,,"S",,,
-3,0,"O'Donoghue, Ms. Bridget","female",,0,0,"364856",7.7500,,"Q",,,
-3,1,"O'Driscoll, Miss. Bridget","female",,0,0,"14311",7.7500,,"Q","D",,
-3,1,"O'Dwyer, Miss. Ellen ""Nellie""","female",,0,0,"330959",7.8792,,"Q",,,
-3,1,"Ohman, Miss. Velin","female",22,0,0,"347085",7.7750,,"S","C",,
-3,1,"O'Keefe, Mr. Patrick","male",,0,0,"368402",7.7500,,"Q","B",,
-3,1,"O'Leary, Miss. Hanora ""Norah""","female",,0,0,"330919",7.8292,,"Q","13",,
-3,1,"Olsen, Master. Artur Karl","male",9,0,1,"C 17368",3.1708,,"S","13",,
-3,0,"Olsen, Mr. Henry Margido","male",28,0,0,"C 4001",22.5250,,"S",,"173",
-3,0,"Olsen, Mr. Karl Siegwart Andreas","male",42,0,1,"4579",8.4042,,"S",,,
-3,0,"Olsen, Mr. Ole Martin","male",,0,0,"Fa 265302",7.3125,,"S",,,
-3,0,"Olsson, Miss. Elina","female",31,0,0,"350407",7.8542,,"S",,,
-3,0,"Olsson, Mr. Nils Johan Goransson","male",28,0,0,"347464",7.8542,,"S",,,
-3,1,"Olsson, Mr. Oscar Wilhelm","male",32,0,0,"347079",7.7750,,"S","A",,
-3,0,"Olsvigen, Mr. Thor Anderson","male",20,0,0,"6563",9.2250,,"S",,"89","Oslo, Norway Cameron, WI"
-3,0,"Oreskovic, Miss. Jelka","female",23,0,0,"315085",8.6625,,"S",,,
-3,0,"Oreskovic, Miss. Marija","female",20,0,0,"315096",8.6625,,"S",,,
-3,0,"Oreskovic, Mr. Luka","male",20,0,0,"315094",8.6625,,"S",,,
-3,0,"Osen, Mr. Olaf Elon","male",16,0,0,"7534",9.2167,,"S",,,
-3,1,"Osman, Mrs. Mara","female",31,0,0,"349244",8.6833,,"S",,,
-3,0,"O'Sullivan, Miss. Bridget Mary","female",,0,0,"330909",7.6292,,"Q",,,
-3,0,"Palsson, Master. Gosta Leonard","male",2,3,1,"349909",21.0750,,"S",,"4",
-3,0,"Palsson, Master. Paul Folke","male",6,3,1,"349909",21.0750,,"S",,,
-3,0,"Palsson, Miss. Stina Viola","female",3,3,1,"349909",21.0750,,"S",,,
-3,0,"Palsson, Miss. Torborg Danira","female",8,3,1,"349909",21.0750,,"S",,,
-3,0,"Palsson, Mrs. Nils (Alma Cornelia Berglund)","female",29,0,4,"349909",21.0750,,"S",,"206",
-3,0,"Panula, Master. Eino Viljami","male",1,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Master. Juha Niilo","male",7,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Master. Urho Abraham","male",2,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Mr. Ernesti Arvid","male",16,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Mr. Jaako Arnold","male",14,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Mrs. Juha (Maria Emilia Ojala)","female",41,0,5,"3101295",39.6875,,"S",,,
-3,0,"Pasic, Mr. Jakob","male",21,0,0,"315097",8.6625,,"S",,,
-3,0,"Patchett, Mr. George","male",19,0,0,"358585",14.5000,,"S",,,
-3,0,"Paulner, Mr. Uscher","male",,0,0,"3411",8.7125,,"C",,,
-3,0,"Pavlovic, Mr. Stefo","male",32,0,0,"349242",7.8958,,"S",,,
-3,0,"Peacock, Master. Alfred Edward","male",0.75,1,1,"SOTON/O.Q. 3101315",13.7750,,"S",,,
-3,0,"Peacock, Miss. Treasteall","female",3,1,1,"SOTON/O.Q. 3101315",13.7750,,"S",,,
-3,0,"Peacock, Mrs. Benjamin (Edith Nile)","female",26,0,2,"SOTON/O.Q. 3101315",13.7750,,"S",,,
-3,0,"Pearce, Mr. Ernest","male",,0,0,"343271",7.0000,,"S",,,
-3,0,"Pedersen, Mr. Olaf","male",,0,0,"345498",7.7750,,"S",,,
-3,0,"Peduzzi, Mr. Joseph","male",,0,0,"A/5 2817",8.0500,,"S",,,
-3,0,"Pekoniemi, Mr. Edvard","male",21,0,0,"STON/O 2. 3101294",7.9250,,"S",,,
-3,0,"Peltomaki, Mr. Nikolai Johannes","male",25,0,0,"STON/O 2. 3101291",7.9250,,"S",,,
-3,0,"Perkin, Mr. John Henry","male",22,0,0,"A/5 21174",7.2500,,"S",,,
-3,1,"Persson, Mr. Ernst Ulrik","male",25,1,0,"347083",7.7750,,"S","15",,
-3,1,"Peter, Master. Michael J","male",,1,1,"2668",22.3583,,"C","C",,
-3,1,"Peter, Miss. Anna","female",,1,1,"2668",22.3583,"F E69","C","D",,
-3,1,"Peter, Mrs. Catherine (Catherine Rizk)","female",,0,2,"2668",22.3583,,"C","D",,
-3,0,"Peters, Miss. Katie","female",,0,0,"330935",8.1375,,"Q",,,
-3,0,"Petersen, Mr. Marius","male",24,0,0,"342441",8.0500,,"S",,,
-3,0,"Petranec, Miss. Matilda","female",28,0,0,"349245",7.8958,,"S",,,
-3,0,"Petroff, Mr. Nedelio","male",19,0,0,"349212",7.8958,,"S",,,
-3,0,"Petroff, Mr. Pastcho (""Pentcho"")","male",,0,0,"349215",7.8958,,"S",,,
-3,0,"Petterson, Mr. Johan Emil","male",25,1,0,"347076",7.7750,,"S",,,
-3,0,"Pettersson, Miss. Ellen Natalia","female",18,0,0,"347087",7.7750,,"S",,,
-3,1,"Pickard, Mr. Berk (Berk Trembisky)","male",32,0,0,"SOTON/O.Q. 392078",8.0500,"E10","S","9",,
-3,0,"Plotcharsky, Mr. Vasil","male",,0,0,"349227",7.8958,,"S",,,
-3,0,"Pokrnic, Mr. Mate","male",17,0,0,"315095",8.6625,,"S",,,
-3,0,"Pokrnic, Mr. Tome","male",24,0,0,"315092",8.6625,,"S",,,
-3,0,"Radeff, Mr. Alexander","male",,0,0,"349223",7.8958,,"S",,,
-3,0,"Rasmussen, Mrs. (Lena Jacobsen Solvang)","female",,0,0,"65305",8.1125,,"S",,,
-3,0,"Razi, Mr. Raihed","male",,0,0,"2629",7.2292,,"C",,,
-3,0,"Reed, Mr. James George","male",,0,0,"362316",7.2500,,"S",,,
-3,0,"Rekic, Mr. Tido","male",38,0,0,"349249",7.8958,,"S",,,
-3,0,"Reynolds, Mr. Harold J","male",21,0,0,"342684",8.0500,,"S",,,
-3,0,"Rice, Master. Albert","male",10,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Master. Arthur","male",4,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Master. Eric","male",7,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Master. Eugene","male",2,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Master. George Hugh","male",8,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Mrs. William (Margaret Norton)","female",39,0,5,"382652",29.1250,,"Q",,"327",
-3,0,"Riihivouri, Miss. Susanna Juhantytar ""Sanni""","female",22,0,0,"3101295",39.6875,,"S",,,
-3,0,"Rintamaki, Mr. Matti","male",35,0,0,"STON/O 2. 3101273",7.1250,,"S",,,
-3,1,"Riordan, Miss. Johanna ""Hannah""","female",,0,0,"334915",7.7208,,"Q","13",,
-3,0,"Risien, Mr. Samuel Beard","male",,0,0,"364498",14.5000,,"S",,,
-3,0,"Risien, Mrs. Samuel (Emma)","female",,0,0,"364498",14.5000,,"S",,,
-3,0,"Robins, Mr. Alexander A","male",50,1,0,"A/5. 3337",14.5000,,"S",,"119",
-3,0,"Robins, Mrs. Alexander A (Grace Charity Laury)","female",47,1,0,"A/5. 3337",14.5000,,"S",,"7",
-3,0,"Rogers, Mr. William John","male",,0,0,"S.C./A.4. 23567",8.0500,,"S",,,
-3,0,"Rommetvedt, Mr. Knud Paust","male",,0,0,"312993",7.7750,,"S",,,
-3,0,"Rosblom, Miss. Salli Helena","female",2,1,1,"370129",20.2125,,"S",,,
-3,0,"Rosblom, Mr. Viktor Richard","male",18,1,1,"370129",20.2125,,"S",,,
-3,0,"Rosblom, Mrs. Viktor (Helena Wilhelmina)","female",41,0,2,"370129",20.2125,,"S",,,
-3,1,"Roth, Miss. Sarah A","female",,0,0,"342712",8.0500,,"S","C",,
-3,0,"Rouse, Mr. Richard Henry","male",50,0,0,"A/5 3594",8.0500,,"S",,,
-3,0,"Rush, Mr. Alfred George John","male",16,0,0,"A/4. 20589",8.0500,,"S",,,
-3,1,"Ryan, Mr. Edward","male",,0,0,"383162",7.7500,,"Q","14",,
-3,0,"Ryan, Mr. Patrick","male",,0,0,"371110",24.1500,,"Q",,,
-3,0,"Saad, Mr. Amin","male",,0,0,"2671",7.2292,,"C",,,
-3,0,"Saad, Mr. Khalil","male",25,0,0,"2672",7.2250,,"C",,,
-3,0,"Saade, Mr. Jean Nassr","male",,0,0,"2676",7.2250,,"C",,,
-3,0,"Sadlier, Mr. Matthew","male",,0,0,"367655",7.7292,,"Q",,,
-3,0,"Sadowitz, Mr. Harry","male",,0,0,"LP 1588",7.5750,,"S",,,
-3,0,"Saether, Mr. Simon Sivertsen","male",38.5,0,0,"SOTON/O.Q. 3101262",7.2500,,"S",,"32",
-3,0,"Sage, Master. Thomas Henry","male",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Master. William Henry","male",14.5,8,2,"CA. 2343",69.5500,,"S",,"67",
-3,0,"Sage, Miss. Ada","female",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Miss. Constance Gladys","female",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Miss. Dorothy Edith ""Dolly""","female",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Miss. Stella Anna","female",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mr. Douglas Bullen","male",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mr. Frederick","male",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mr. George John Jr","male",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mr. John George","male",,1,9,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mrs. John (Annie Bullen)","female",,1,9,"CA. 2343",69.5500,,"S",,,
-3,0,"Salander, Mr. Karl Johan","male",24,0,0,"7266",9.3250,,"S",,,
-3,1,"Salkjelsvik, Miss. Anna Kristine","female",21,0,0,"343120",7.6500,,"S","C",,
-3,0,"Salonen, Mr. Johan Werner","male",39,0,0,"3101296",7.9250,,"S",,,
-3,0,"Samaan, Mr. Elias","male",,2,0,"2662",21.6792,,"C",,,
-3,0,"Samaan, Mr. Hanna","male",,2,0,"2662",21.6792,,"C",,,
-3,0,"Samaan, Mr. Youssef","male",,2,0,"2662",21.6792,,"C",,,
-3,1,"Sandstrom, Miss. Beatrice Irene","female",1,1,1,"PP 9549",16.7000,"G6","S","13",,
-3,1,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)","female",24,0,2,"PP 9549",16.7000,"G6","S","13",,
-3,1,"Sandstrom, Miss. Marguerite Rut","female",4,1,1,"PP 9549",16.7000,"G6","S","13",,
-3,1,"Sap, Mr. Julius","male",25,0,0,"345768",9.5000,,"S","11",,
-3,0,"Saundercock, Mr. William Henry","male",20,0,0,"A/5. 2151",8.0500,,"S",,,
-3,0,"Sawyer, Mr. Frederick Charles","male",24.5,0,0,"342826",8.0500,,"S",,"284",
-3,0,"Scanlan, Mr. James","male",,0,0,"36209",7.7250,,"Q",,,
-3,0,"Sdycoff, Mr. Todor","male",,0,0,"349222",7.8958,,"S",,,
-3,0,"Shaughnessy, Mr. Patrick","male",,0,0,"370374",7.7500,,"Q",,,
-3,1,"Sheerlinck, Mr. Jan Baptist","male",29,0,0,"345779",9.5000,,"S","11",,
-3,0,"Shellard, Mr. Frederick William","male",,0,0,"C.A. 6212",15.1000,,"S",,,
-3,1,"Shine, Miss. Ellen Natalia","female",,0,0,"330968",7.7792,,"Q",,,
-3,0,"Shorney, Mr. Charles Joseph","male",,0,0,"374910",8.0500,,"S",,,
-3,0,"Simmons, Mr. John","male",,0,0,"SOTON/OQ 392082",8.0500,,"S",,,
-3,0,"Sirayanian, Mr. Orsen","male",22,0,0,"2669",7.2292,,"C",,,
-3,0,"Sirota, Mr. Maurice","male",,0,0,"392092",8.0500,,"S",,,
-3,0,"Sivic, Mr. Husein","male",40,0,0,"349251",7.8958,,"S",,,
-3,0,"Sivola, Mr. Antti Wilhelm","male",21,0,0,"STON/O 2. 3101280",7.9250,,"S",,,
-3,1,"Sjoblom, Miss. Anna Sofia","female",18,0,0,"3101265",7.4958,,"S","16",,
-3,0,"Skoog, Master. Harald","male",4,3,2,"347088",27.9000,,"S",,,
-3,0,"Skoog, Master. Karl Thorsten","male",10,3,2,"347088",27.9000,,"S",,,
-3,0,"Skoog, Miss. Mabel","female",9,3,2,"347088",27.9000,,"S",,,
-3,0,"Skoog, Miss. Margit Elizabeth","female",2,3,2,"347088",27.9000,,"S",,,
-3,0,"Skoog, Mr. Wilhelm","male",40,1,4,"347088",27.9000,,"S",,,
-3,0,"Skoog, Mrs. William (Anna Bernhardina Karlsson)","female",45,1,4,"347088",27.9000,,"S",,,
-3,0,"Slabenoff, Mr. Petco","male",,0,0,"349214",7.8958,,"S",,,
-3,0,"Slocovski, Mr. Selman Francis","male",,0,0,"SOTON/OQ 392086",8.0500,,"S",,,
-3,0,"Smiljanic, Mr. Mile","male",,0,0,"315037",8.6625,,"S",,,
-3,0,"Smith, Mr. Thomas","male",,0,0,"384461",7.7500,,"Q",,,
-3,1,"Smyth, Miss. Julia","female",,0,0,"335432",7.7333,,"Q","13",,
-3,0,"Soholt, Mr. Peter Andreas Lauritz Andersen","male",19,0,0,"348124",7.6500,"F G73","S",,,
-3,0,"Somerton, Mr. Francis William","male",30,0,0,"A.5. 18509",8.0500,,"S",,,
-3,0,"Spector, Mr. Woolf","male",,0,0,"A.5. 3236",8.0500,,"S",,,
-3,0,"Spinner, Mr. Henry John","male",32,0,0,"STON/OQ. 369943",8.0500,,"S",,,
-3,0,"Staneff, Mr. Ivan","male",,0,0,"349208",7.8958,,"S",,,
-3,0,"Stankovic, Mr. Ivan","male",33,0,0,"349239",8.6625,,"C",,,
-3,1,"Stanley, Miss. Amy Zillah Elsie","female",23,0,0,"CA. 2314",7.5500,,"S","C",,
-3,0,"Stanley, Mr. Edward Roland","male",21,0,0,"A/4 45380",8.0500,,"S",,,
-3,0,"Storey, Mr. Thomas","male",60.5,0,0,"3701",,,"S",,"261",
-3,0,"Stoytcheff, Mr. Ilia","male",19,0,0,"349205",7.8958,,"S",,,
-3,0,"Strandberg, Miss. Ida Sofia","female",22,0,0,"7553",9.8375,,"S",,,
-3,1,"Stranden, Mr. Juho","male",31,0,0,"STON/O 2. 3101288",7.9250,,"S","9",,
-3,0,"Strilic, Mr. Ivan","male",27,0,0,"315083",8.6625,,"S",,,
-3,0,"Strom, Miss. Telma Matilda","female",2,0,1,"347054",10.4625,"G6","S",,,
-3,0,"Strom, Mrs. Wilhelm (Elna Matilda Persson)","female",29,1,1,"347054",10.4625,"G6","S",,,
-3,1,"Sunderland, Mr. Victor Francis","male",16,0,0,"SOTON/OQ 392089",8.0500,,"S","B",,
-3,1,"Sundman, Mr. Johan Julian","male",44,0,0,"STON/O 2. 3101269",7.9250,,"S","15",,
-3,0,"Sutehall, Mr. Henry Jr","male",25,0,0,"SOTON/OQ 392076",7.0500,,"S",,,
-3,0,"Svensson, Mr. Johan","male",74,0,0,"347060",7.7750,,"S",,,
-3,1,"Svensson, Mr. Johan Cervin","male",14,0,0,"7538",9.2250,,"S","13",,
-3,0,"Svensson, Mr. Olof","male",24,0,0,"350035",7.7958,,"S",,,
-3,1,"Tenglin, Mr. Gunnar Isidor","male",25,0,0,"350033",7.7958,,"S","13 15",,
-3,0,"Theobald, Mr. Thomas Leonard","male",34,0,0,"363294",8.0500,,"S",,"176",
-3,1,"Thomas, Master. Assad Alexander","male",0.42,0,1,"2625",8.5167,,"C","16",,
-3,0,"Thomas, Mr. Charles P","male",,1,0,"2621",6.4375,,"C",,,
-3,0,"Thomas, Mr. John","male",,0,0,"2681",6.4375,,"C",,,
-3,0,"Thomas, Mr. Tannous","male",,0,0,"2684",7.2250,,"C",,,
-3,1,"Thomas, Mrs. Alexander (Thamine ""Thelma"")","female",16,1,1,"2625",8.5167,,"C","14",,
-3,0,"Thomson, Mr. Alexander Morrison","male",,0,0,"32302",8.0500,,"S",,,
-3,0,"Thorneycroft, Mr. Percival","male",,1,0,"376564",16.1000,,"S",,,
-3,1,"Thorneycroft, Mrs. Percival (Florence Kate White)","female",,1,0,"376564",16.1000,,"S","10",,
-3,0,"Tikkanen, Mr. Juho","male",32,0,0,"STON/O 2. 3101293",7.9250,,"S",,,
-3,0,"Tobin, Mr. Roger","male",,0,0,"383121",7.7500,"F38","Q",,,
-3,0,"Todoroff, Mr. Lalio","male",,0,0,"349216",7.8958,,"S",,,
-3,0,"Tomlin, Mr. Ernest Portage","male",30.5,0,0,"364499",8.0500,,"S",,"50",
-3,0,"Torber, Mr. Ernst William","male",44,0,0,"364511",8.0500,,"S",,,
-3,0,"Torfa, Mr. Assad","male",,0,0,"2673",7.2292,,"C",,,
-3,1,"Tornquist, Mr. William Henry","male",25,0,0,"LINE",0.0000,,"S","15",,
-3,0,"Toufik, Mr. Nakli","male",,0,0,"2641",7.2292,,"C",,,
-3,1,"Touma, Master. Georges Youssef","male",7,1,1,"2650",15.2458,,"C","C",,
-3,1,"Touma, Miss. Maria Youssef","female",9,1,1,"2650",15.2458,,"C","C",,
-3,1,"Touma, Mrs. Darwis (Hanne Youssef Razi)","female",29,0,2,"2650",15.2458,,"C","C",,
-3,0,"Turcin, Mr. Stjepan","male",36,0,0,"349247",7.8958,,"S",,,
-3,1,"Turja, Miss. Anna Sofia","female",18,0,0,"4138",9.8417,,"S","15",,
-3,1,"Turkula, Mrs. (Hedwig)","female",63,0,0,"4134",9.5875,,"S","15",,
-3,0,"van Billiard, Master. James William","male",,1,1,"A/5. 851",14.5000,,"S",,,
-3,0,"van Billiard, Master. Walter John","male",11.5,1,1,"A/5. 851",14.5000,,"S",,"1",
-3,0,"van Billiard, Mr. Austin Blyler","male",40.5,0,2,"A/5. 851",14.5000,,"S",,"255",
-3,0,"Van Impe, Miss. Catharina","female",10,0,2,"345773",24.1500,,"S",,,
-3,0,"Van Impe, Mr. Jean Baptiste","male",36,1,1,"345773",24.1500,,"S",,,
-3,0,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)","female",30,1,1,"345773",24.1500,,"S",,,
-3,0,"van Melkebeke, Mr. Philemon","male",,0,0,"345777",9.5000,,"S",,,
-3,0,"Vande Velde, Mr. Johannes Joseph","male",33,0,0,"345780",9.5000,,"S",,,
-3,0,"Vande Walle, Mr. Nestor Cyriel","male",28,0,0,"345770",9.5000,,"S",,,
-3,0,"Vanden Steen, Mr. Leo Peter","male",28,0,0,"345783",9.5000,,"S",,,
-3,0,"Vander Cruyssen, Mr. Victor","male",47,0,0,"345765",9.0000,,"S",,,
-3,0,"Vander Planke, Miss. Augusta Maria","female",18,2,0,"345764",18.0000,,"S",,,
-3,0,"Vander Planke, Mr. Julius","male",31,3,0,"345763",18.0000,,"S",,,
-3,0,"Vander Planke, Mr. Leo Edmondus","male",16,2,0,"345764",18.0000,,"S",,,
-3,0,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)","female",31,1,0,"345763",18.0000,,"S",,,
-3,1,"Vartanian, Mr. David","male",22,0,0,"2658",7.2250,,"C","13 15",,
-3,0,"Vendel, Mr. Olof Edvin","male",20,0,0,"350416",7.8542,,"S",,,
-3,0,"Vestrom, Miss. Hulda Amanda Adolfina","female",14,0,0,"350406",7.8542,,"S",,,
-3,0,"Vovk, Mr. Janko","male",22,0,0,"349252",7.8958,,"S",,,
-3,0,"Waelens, Mr. Achille","male",22,0,0,"345767",9.0000,,"S",,,"Antwerp, Belgium / Stanton, OH"
-3,0,"Ware, Mr. Frederick","male",,0,0,"359309",8.0500,,"S",,,
-3,0,"Warren, Mr. Charles William","male",,0,0,"C.A. 49867",7.5500,,"S",,,
-3,0,"Webber, Mr. James","male",,0,0,"SOTON/OQ 3101316",8.0500,,"S",,,
-3,0,"Wenzel, Mr. Linhart","male",32.5,0,0,"345775",9.5000,,"S",,"298",
-3,1,"Whabee, Mrs. George Joseph (Shawneene Abi-Saab)","female",38,0,0,"2688",7.2292,,"C","C",,
-3,0,"Widegren, Mr. Carl/Charles Peter","male",51,0,0,"347064",7.7500,,"S",,,
-3,0,"Wiklund, Mr. Jakob Alfred","male",18,1,0,"3101267",6.4958,,"S",,"314",
-3,0,"Wiklund, Mr. Karl Johan","male",21,1,0,"3101266",6.4958,,"S",,,
-3,1,"Wilkes, Mrs. James (Ellen Needs)","female",47,1,0,"363272",7.0000,,"S",,,
-3,0,"Willer, Mr. Aaron (""Abi Weller"")","male",,0,0,"3410",8.7125,,"S",,,
-3,0,"Willey, Mr. Edward","male",,0,0,"S.O./P.P. 751",7.5500,,"S",,,
-3,0,"Williams, Mr. Howard Hugh ""Harry""","male",,0,0,"A/5 2466",8.0500,,"S",,,
-3,0,"Williams, Mr. Leslie","male",28.5,0,0,"54636",16.1000,,"S",,"14",
-3,0,"Windelov, Mr. Einar","male",21,0,0,"SOTON/OQ 3101317",7.2500,,"S",,,
-3,0,"Wirz, Mr. Albert","male",27,0,0,"315154",8.6625,,"S",,"131",
-3,0,"Wiseman, Mr. Phillippe","male",,0,0,"A/4. 34244",7.2500,,"S",,,
-3,0,"Wittevrongel, Mr. Camille","male",36,0,0,"345771",9.5000,,"S",,,
-3,0,"Yasbeck, Mr. Antoni","male",27,1,0,"2659",14.4542,,"C","C",,
-3,1,"Yasbeck, Mrs. Antoni (Selini Alexander)","female",15,1,0,"2659",14.4542,,"C",,,
-3,0,"Youseff, Mr. Gerious","male",45.5,0,0,"2628",7.2250,,"C",,"312",
-3,0,"Yousif, Mr. Wazli","male",,0,0,"2647",7.2250,,"C",,,
-3,0,"Yousseff, Mr. Gerious","male",,0,0,"2627",14.4583,,"C",,,
-3,0,"Zabour, Miss. Hileni","female",14.5,1,0,"2665",14.4542,,"C",,"328",
-3,0,"Zabour, Miss. Thamine","female",,1,0,"2665",14.4542,,"C",,,
-3,0,"Zakarian, Mr. Mapriededer","male",26.5,0,0,"2656",7.2250,,"C",,"304",
-3,0,"Zakarian, Mr. Ortin","male",27,0,0,"2670",7.2250,,"C",,,
-3,0,"Zimmerman, Mr. Leo","male",29,0,0,"315082",7.8750,,"S",,,
From f8f8686d6e127743dcfcc017422a2d701b5abe12 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Fri, 24 May 2024 21:12:48 +0530
Subject: [PATCH 11/72] Update index.md
---
contrib/pandas/index.md | 1 -
1 file changed, 1 deletion(-)
diff --git a/contrib/pandas/index.md b/contrib/pandas/index.md
index d194bfa..c578ade 100644
--- a/contrib/pandas/index.md
+++ b/contrib/pandas/index.md
@@ -2,7 +2,6 @@
- [Pandas Series Vs NumPy ndarray](pandas_series_vs_numpy_ndarray.md)
- [Pandas Introduction and Dataframes in Pandas](Introduction_to_Pandas_Library_and_DataFrames.md)
-- [Importing and Exportin data in pandas](Importing_and_Exporting_Data_in_Pandas.md)
- [Pandas Descriptive Statistics](Descriptive_Statistics.md)
- [Group By Functions with Pandas](GroupBy_Functions_Pandas.md)
- [Excel using Pandas DataFrame](excel_with_pandas.md)
From ab6428fd59dfae627ff94613cc55b19472b6c500 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Fri, 24 May 2024 21:40:43 +0530
Subject: [PATCH 12/72] Update Introduction_to_Pandas_Library_and_DataFrames.md
---
...uction_to_Pandas_Library_and_DataFrames.md | 147 +++---------------
1 file changed, 25 insertions(+), 122 deletions(-)
diff --git a/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md b/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md
index 809a155..3552437 100644
--- a/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md
+++ b/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md
@@ -1,8 +1,5 @@
# Introduction_to_Pandas_Library_and_DataFrames
-
-> Content Creator - Krishna Kaushik
-
**As you have learnt Python Programming , now it's time for some applications.**
- Machine Learning and Data Science is the emerging field of today's time , to work in this this field your first step should be `Data Science` as Machine Learning is all about data.
@@ -110,42 +107,15 @@ You can also create a DataFrame by using `pd.DataFrame()` and passing it a Pytho
# Let's create
cars_with_colours = pd.DataFrame({"Cars" : ["BMW","Audi","Thar","Honda"],
"Colour" : ["Black","White","Red","Green"]})
-cars_with_colours
+print(cars_with_colours)
```
-
-
-
-
-
Cars
-
Colour
-
-
-
-
-
0
-
BMW
-
Black
-
-
-
1
-
Audi
-
White
-
-
-
2
-
Thar
-
Red
-
-
-
3
-
Honda
-
Green
-
-
-
-
-
+ Cars Colour
+ 0 BMW Black
+ 1 Audi White
+ 2 Thar Red
+ 3 Honda Green
+
The dictionary key is the `column name` and value are the `column data`.
@@ -194,42 +164,15 @@ age
record = pd.DataFrame({"Student_Name":students ,
"Age" :age})
-record
+print(record)
```
-
-
-
-
-
Student_Name
-
Age
-
-
-
-
-
0
-
Ram
-
19
-
-
-
1
-
Mohan
-
20
-
-
-
2
-
Krishna
-
21
-
-
-
3
-
Shivam
-
24
-
-
-
-
-
+ Student_Name Age
+ 0 Ram 19
+ 1 Mohan 20
+ 2 Krishna 21
+ 3 Shivam 24
+
```python
@@ -269,53 +212,19 @@ record.dtypes
```python
-record.describe() # It only display the results for numeric data
+print(record.describe()) # It only display the results for numeric data
```
-
-
-
-
-
Age
-
-
-
-
-
count
-
4.000000
-
-
-
mean
-
21.000000
-
-
-
std
-
2.160247
-
-
-
min
-
19.000000
-
-
-
25%
-
19.750000
-
-
-
50%
-
20.500000
-
-
-
75%
-
21.750000
-
-
-
max
-
24.000000
-
-
-
-
-
+ Age
+ count 4.000000
+ mean 21.000000
+ std 2.160247
+ min 19.000000
+ 25% 19.750000
+ 50% 20.500000
+ 75% 21.750000
+ max 24.000000
+
#### 3. Use `.info()` to find information about the dataframe
@@ -333,9 +242,3 @@ record.info()
1 Age 4 non-null int64
dtypes: int64(1), object(1)
memory usage: 196.0+ bytes
-
-
-
-```python
-
-```
From 5ccb3f2b0fc0650b26eba3b99fc7f780df6a0fe8 Mon Sep 17 00:00:00 2001
From: Pranshu shah <97401387+shahpranshu27@users.noreply.github.com>
Date: Fri, 24 May 2024 22:11:05 +0530
Subject: [PATCH 13/72] create lambda-function.md
---
contrib/advanced-python/index.md | 1 +
contrib/advanced-python/lambda-function.md | 88 ++++++++++++++++++++++
2 files changed, 89 insertions(+)
create mode 100644 contrib/advanced-python/lambda-function.md
diff --git a/contrib/advanced-python/index.md b/contrib/advanced-python/index.md
index 5ea5081..b884dde 100644
--- a/contrib/advanced-python/index.md
+++ b/contrib/advanced-python/index.md
@@ -1,3 +1,4 @@
# List of sections
- [Decorators/\*args/**kwargs](decorator-kwargs-args.md)
+- [Lambda Function](lambda-function.md)
diff --git a/contrib/advanced-python/lambda-function.md b/contrib/advanced-python/lambda-function.md
new file mode 100644
index 0000000..93a5330
--- /dev/null
+++ b/contrib/advanced-python/lambda-function.md
@@ -0,0 +1,88 @@
+# Lambda Function
+
+Lambda functions in Python are small, anonymous functions that can be created on-the-fly. They are defined using the `lambda` keyword instead of the `def` keyword used for regular functions. Lambda functions are typically used for simple tasks where a full-blown function definition is not necessary.
+
+Here's an example of a lambda function that adds two numbers:
+
+```python
+add = lambda x, y: x + y
+print(add(3, 5)) # Output: 8
+```
+
+The above lambda function is equivalent to the following regular function:
+
+```python
+def add(x, y):
+ return x + y
+
+print(add(3, 5)) # Output: 8
+```
+
+The difference between a regular function and a lambda function lies mainly in syntax and usage. Here are some key distinctions:
+
+1. **Syntax**: Lambda functions are defined using the `lambda` keyword, followed by parameters and a colon, while regular functions use the `def` keyword, followed by the function name, parameters, and a colon.
+
+2. **Name**: Lambda functions are anonymous; they do not have a name like regular functions. Regular functions are defined with a name.
+
+3. **Complexity**: Lambda functions are suitable for simple, one-liner tasks. They are not meant for complex operations or tasks that require multiple lines of code. Regular functions can handle more complex logic and can contain multiple statements and lines of code.
+
+4. **Usage**: Lambda functions are often used in situations where a function is needed as an argument to another function (e.g., sorting, filtering, mapping), or when you want to write concise code without defining a separate function.
+
+Lambda functions are used primarily for convenience and brevity in situations where a full function definition would be overkill or too cumbersome. They are handy for tasks that require a small, one-time function and can improve code readability when used judiciously.
+
+## Use Cases
+
+1. **Sorting**: Lambda functions are often used as key functions for sorting lists, dictionaries, or other data structures based on specific criteria. For example:
+
+ ```python
+ students = [
+ {"name": "Alice", "age": 20},
+ {"name": "Bob", "age": 18},
+ {"name": "Charlie", "age": 22}
+ ]
+ sorted_students = sorted(students, key=lambda x: x["age"])
+ ```
+
+2. **Filtering**: Lambda functions can be used with filter() to selectively include elements from a collection based on a condition. For instance:
+
+ ```python
+ numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
+ even_numbers = list(filter(lambda x: x % 2 == 0, numbers))
+ ```
+
+3. **Mapping**: Lambda functions are useful with map() to apply a transformation to each element of a collection. For example:
+
+ ```python
+ numbers = [1, 2, 3, 4, 5]
+ squared_numbers = list(map(lambda x: x**2, numbers))
+ ```
+
+4. **Event Handling**: In GUI programming or event-driven systems, lambda functions can be used as event handlers to execute specific actions when an event occurs. For instance:
+
+ ```python
+ button.clicked.connect(lambda: self.on_button_click(argument))
+ ```
+
+5. **Callback Functions**: Lambda functions can be passed as callback functions to other functions, especially when a simple operation needs to be performed in response to an event. For example:
+
+ ```python
+ def process_data(data, callback):
+ # Process data
+ result = ...
+ # Execute callback function
+ callback(result)
+
+ process_data(data, lambda x: print("Result:", x))
+ ```
+
+6. **Anonymous Functions in Higher-Order Functions**: Lambda functions are commonly used with higher-order functions such as reduce(), which applies a rolling computation to sequential pairs of values in a list. For example:
+
+ ```python
+ from functools import reduce
+ numbers = [1, 2, 3, 4, 5]
+ sum_of_numbers = reduce(lambda x, y: x + y, numbers)
+ ```
+
+These are just a few examples of how lambda functions can be applied in Python to simplify code and make it more expressive. They are particularly useful in situations where a small, one-time function is needed and defining a separate named function would be excessive.
+
+In conclusion, **lambda functions** in Python offer a concise and powerful way to handle simple tasks without the need for full function definitions. Their versatility, especially in scenarios like sorting, filtering, and event handling, makes them valuable tools for improving code readability and efficiency. By mastering lambda functions, you can enhance your Python programming skills and tackle various tasks with elegance and brevity.
\ No newline at end of file
From 534475bf7a9e19bd4cd432f6ec4e54f5ae825b4d Mon Sep 17 00:00:00 2001
From: manishh12
Date: Fri, 24 May 2024 22:57:17 +0530
Subject: [PATCH 14/72] Added types of optimizers issue#527
---
.../machine-learning/Types_of_optimizers.md | 357 ++++++++++++++++++
contrib/machine-learning/index.md | 1 +
2 files changed, 358 insertions(+)
create mode 100644 contrib/machine-learning/Types_of_optimizers.md
diff --git a/contrib/machine-learning/Types_of_optimizers.md b/contrib/machine-learning/Types_of_optimizers.md
new file mode 100644
index 0000000..7d0a617
--- /dev/null
+++ b/contrib/machine-learning/Types_of_optimizers.md
@@ -0,0 +1,357 @@
+Sure, here's a more detailed explanation for each optimizer, including the mathematical formulation, intuition, advantages, and disadvantages, along with the Python implementation.
+
+---
+
+# Optimizers in Machine Learning
+
+Optimizers are algorithms or methods used to change the attributes of your neural network such as weights and learning rate in order to reduce the losses. Optimization algorithms help to minimize (or maximize) an objective function (also called a loss function) which is simply a mathematical function dependent on the model's internal learnable parameters which are used in computing the target values from the set of features.
+
+## Types of Optimizers
+
+### 1. Gradient Descent
+
+**Explanation:**
+Gradient Descent is the simplest and most commonly used optimization algorithm. It works by iteratively updating the model parameters in the opposite direction of the gradient of the objective function with respect to the parameters. The idea is to find the minimum of a function by taking steps proportional to the negative of the gradient of the function at the current point.
+
+**Mathematical Formulation:**
+
+The update rule for the parameter vector θ in gradient descent is represented by the equation:
+
+- \(theta_new = theta_old - alpha * gradient/)
+
+Where:
+- theta_old is the old parameter vector.
+- theta_new is the updated parameter vector.
+- alpha is the learning rate.
+- gradient is the gradient of the objective function with respect to the parameters.
+
+
+**Intuition:**
+- At each iteration, we calculate the gradient of the cost function.
+- The parameters are updated in the opposite direction of the gradient.
+- The size of the step is controlled by the learning rate \( \alpha \).
+
+**Advantages:**
+- Simple to implement.
+- Suitable for convex problems.
+
+**Disadvantages:**
+- Can be slow for large datasets.
+- May get stuck in local minima for non-convex problems.
+- Requires careful tuning of the learning rate.
+
+**Python Implementation:**
+```python
+import numpy as np
+
+def gradient_descent(X, y, lr=0.01, epochs=1000):
+ m, n = X.shape
+ theta = np.zeros(n)
+ for epoch in range(epochs):
+ gradient = np.dot(X.T, (np.dot(X, theta) - y)) / m
+ theta -= lr * gradient
+ return theta
+```
+
+### 2. Stochastic Gradient Descent (SGD)
+
+**Explanation:**
+SGD is a variation of gradient descent where we use only one training example to calculate the gradient and update the parameters. This introduces noise into the parameter updates, which can help to escape local minima but may cause the loss to fluctuate.
+
+**Mathematical Formulation:**
+
+- \(theta = theta - alpha * dJ(theta; x_i, y_i) / d(theta)/)
+
+\( x_i, y_i \) are a single training example and its target.
+
+**Intuition:**
+- At each iteration, a random training example is selected.
+- The gradient is calculated and the parameters are updated for this single example.
+- This process is repeated for a specified number of epochs.
+
+**Advantages:**
+- Faster updates compared to batch gradient descent.
+- Can handle large datasets.
+- Helps to escape local minima due to the noise in updates.
+
+**Disadvantages:**
+- Loss function may fluctuate.
+- Requires more iterations to converge.
+
+**Python Implementation:**
+```python
+def stochastic_gradient_descent(X, y, lr=0.01, epochs=1000):
+ m, n = X.shape
+ theta = np.zeros(n)
+ for epoch in range(epochs):
+ for i in range(m):
+ rand_index = np.random.randint(0, m)
+ xi = X[rand_index:rand_index+1]
+ yi = y[rand_index:rand_index+1]
+ gradient = np.dot(xi.T, (np.dot(xi, theta) - yi))
+ theta -= lr * gradient
+ return theta
+```
+
+### 3. Mini-Batch Gradient Descent
+
+**Explanation:**
+Mini-Batch Gradient Descent is a variation where instead of a single training example or the whole dataset, a mini-batch of examples is used to compute the gradient. This reduces the variance of the parameter updates, leading to more stable convergence.
+
+**Mathematical Formulation:**
+
+- theta = theta - alpha * (1/k) * sum(dJ(theta; x_i, y_i) / d(theta))
+
+Where:
+- \( k \) is the batch size.
+
+**Intuition:**
+- At each iteration, a mini-batch of training examples is selected.
+- The gradient is calculated for this mini-batch.
+- The parameters are updated based on the average gradient of the mini-batch.
+
+**Advantages:**
+- More stable updates compared to SGD.
+- Faster convergence than batch gradient descent.
+- Efficient on large datasets.
+
+**Disadvantages:**
+- Requires tuning of batch size.
+- Computationally more expensive than SGD per iteration.
+
+**Python Implementation:**
+```python
+def mini_batch_gradient_descent(X, y, lr=0.01, epochs=1000, batch_size=32):
+ m, n = X.shape
+ theta = np.zeros(n)
+ for epoch in range(epochs):
+ indices = np.random.permutation(m)
+ X_shuffled = X[indices]
+ y_shuffled = y[indices]
+ for i in range(0, m, batch_size):
+ X_i = X_shuffled[i:i+batch_size]
+ y_i = y_shuffled[i:i+batch_size]
+ gradient = np.dot(X_i.T, (np.dot(X_i, theta) - y_i)) / batch_size
+ theta -= lr * gradient
+ return theta
+```
+
+### 4. Momentum
+
+**Explanation:**
+Momentum helps accelerate gradient vectors in the right directions, thus leading to faster converging. It accumulates a velocity vector in directions of persistent reduction in the objective function, which helps to smooth the path towards the minimum.
+
+**Mathematical Formulation:**
+
+- v_t = gamma * v_{t-1} + alpha * dJ(theta) / d(theta)
+
+- theta = theta - v_t
+
+where:
+
+- \( v_t \) is the velocity.
+- \( \gamma \) is the momentum term, typically set between 0.9 and 0.99.
+
+**Intuition:**
+- At each iteration, the gradient is calculated.
+- The velocity is updated based on the current gradient and the previous velocity.
+- The parameters are updated based on the velocity.
+
+**Advantages:**
+- Faster convergence.
+- Reduces oscillations in the parameter updates.
+
+**Disadvantages:**
+- Requires tuning of the momentum term.
+
+**Python Implementation:**
+```python
+def momentum_gradient_descent(X, y, lr=0.01, epochs=1000, gamma=0.9):
+ m, n = X.shape
+ theta = np.zeros(n)
+ v = np.zeros(n)
+ for epoch in range(epochs):
+ gradient = np.dot(X.T, (np.dot(X, theta) - y)) / m
+ v = gamma * v + lr * gradient
+ theta -= v
+ return theta
+```
+
+### 5. Nesterov Accelerated Gradient (NAG)
+
+**Explanation:**
+NAG is a variant of the gradient descent with momentum. It looks ahead by a step and calculates the gradient at that point, thus providing more accurate updates. This method helps to correct the overshooting problem seen in standard momentum.
+
+**Mathematical Formulation:**
+
+- v_t = gamma * v_{t-1} + alpha * dJ(theta - gamma * v_{t-1}) / d(theta)
+
+- theta = theta - v_t
+
+
+**Intuition:**
+- At each iteration, the parameters are temporarily updated using the previous velocity.
+- The gradient is calculated at this lookahead position.
+- The velocity and parameters are then updated based on this gradient.
+
+**Advantages:**
+- More accurate updates compared to standard momentum.
+- Faster convergence.
+
+**Disadvantages:**
+- Requires tuning of the momentum term.
+
+**Python Implementation:**
+```python
+def nesterov_accelerated_gradient(X, y, lr=0.01, epochs=1000, gamma=0.9):
+ m, n = X.shape
+ theta = np.zeros(n)
+ v = np.zeros(n)
+ for epoch in range(epochs):
+ lookahead_theta = theta - gamma * v
+ gradient = np.dot(X.T, (np.dot(X, lookahead_theta) - y)) / m
+ v = gamma * v + lr * gradient
+ theta -= v
+ return theta
+```
+
+### 6. AdaGrad
+
+**Explanation:**
+AdaGrad adapts the learning rate to the parameters, performing larger updates for infrequent and smaller updates for frequent parameters. It scales the learning rate inversely proportional to the square root of the sum of all historical squared values of the gradient.
+
+**Mathematical Formulation:**
+
+- G_t = G_{t-1} + (dJ(theta) / d(theta)) ⊙ (dJ(theta) / d(theta))
+
+- theta = theta - (alpha / sqrt(G_t + epsilon)) * (dJ(theta) / d(theta))
+
+Where:
+- \( G_t \) is the sum of squares of the gradients up to time step \( t \).
+- \( \epsilon \) is a small constant to avoid division by zero.
+
+**Intuition:**
+- Accumulates the sum of the squares of the gradients for each parameter.
+- Uses this accumulated
+
+ sum to scale the learning rate.
+- Parameters with large gradients in the past have smaller learning rates.
+
+**Advantages:**
+- Effective for sparse data.
+- Automatically adjusts learning rate.
+
+**Disadvantages:**
+- Learning rate decreases continuously, which can lead to premature convergence.
+
+**Python Implementation:**
+```python
+def adagrad(X, y, lr=0.01, epochs=1000, epsilon=1e-8):
+ m, n = X.shape
+ theta = np.zeros(n)
+ G = np.zeros(n)
+ for epoch in range(epochs):
+ gradient = np.dot(X.T, (np.dot(X, theta) - y)) / m
+ G += gradient**2
+ adjusted_lr = lr / (np.sqrt(G) + epsilon)
+ theta -= adjusted_lr * gradient
+ return theta
+```
+
+### 7. RMSprop
+
+**Explanation:**
+RMSprop modifies AdaGrad to perform well in non-convex settings by using a moving average of squared gradients to scale the learning rate. It helps to keep the learning rate in check, especially in the presence of noisy gradients.
+
+**Mathematical Formulation:**
+
+E[g^2]_t = beta * E[g^2]_{t-1} + (1 - beta) * (dJ(theta) / d(theta)) ⊙ (dJ(theta) / d(theta))
+
+theta = theta - (alpha / sqrt(E[g^2]_t + epsilon)) * (dJ(theta) / d(theta))
+
+Where:
+- \( E[g^2]_t \) is the exponentially decaying average of past squared gradients.
+- \( \beta \) is the decay rate.
+
+**Intuition:**
+- Keeps a running average of the squared gradients.
+- Uses this average to scale the learning rate.
+- Parameters with large gradients have their learning rates reduced.
+
+**Advantages:**
+- Effective for non-convex problems.
+- Reduces oscillations in parameter updates.
+
+**Disadvantages:**
+- Requires tuning of the decay rate.
+
+**Python Implementation:**
+```python
+def rmsprop(X, y, lr=0.01, epochs=1000, beta=0.9, epsilon=1e-8):
+ m, n = X.shape
+ theta = np.zeros(n)
+ E_g = np.zeros(n)
+ for epoch in range(epochs):
+ gradient = np.dot(X.T, (np.dot(X, theta) - y)) / m
+ E_g = beta * E_g + (1 - beta) * gradient**2
+ adjusted_lr = lr / (np.sqrt(E_g) + epsilon)
+ theta -= adjusted_lr * gradient
+ return theta
+```
+
+### 8. Adam
+
+**Explanation:**
+Adam (Adaptive Moment Estimation) combines the advantages of both RMSprop and AdaGrad by keeping an exponentially decaying average of past gradients and past squared gradients.
+
+**Mathematical Formulation:**
+
+- m_t = beta1 * m_{t-1} + (1 - beta1) * (dJ(theta) / d(theta))
+
+- v_t = beta2 * v_{t-1} + (1 - beta2) * ((dJ(theta) / d(theta))^2)
+
+- hat_m_t = m_t / (1 - beta1^t)
+
+- hat_v_t = v_t / (1 - beta2^t)
+
+- theta = theta - (alpha * hat_m_t) / (sqrt(hat_v_t) + epsilon)
+
+Where:
+- \( m_t \) is the first moment (mean) of the gradient.
+- \( v_t \) is the second moment (uncentered variance) of the gradient.
+- \( \beta_1, \beta_2 \) are the decay rates for the moment estimates.
+
+**Intuition:**
+- Keeps track of both the mean and the variance of the gradients.
+- Uses these to adaptively scale the learning rate.
+- Provides a balance between AdaGrad and RMSprop.
+
+**Advantages:**
+- Efficient for large datasets.
+- Well-suited for non-convex optimization.
+- Handles sparse gradients well.
+
+**Disadvantages:**
+- Requires careful tuning of hyperparameters.
+- Can be computationally intensive.
+
+**Python Implementation:**
+```python
+def adam(X, y, lr=0.01, epochs=1000, beta1=0.9, beta2=0.999, epsilon=1e-8):
+ m, n = X.shape
+ theta = np.zeros(n)
+ m_t = np.zeros(n)
+ v_t = np.zeros(n)
+ for epoch in range(1, epochs+1):
+ gradient = np.dot(X.T, (np.dot(X, theta) - y)) / m
+ m_t = beta1 * m_t + (1 - beta1) * gradient
+ v_t = beta2 * v_t + (1 - beta2) * gradient**2
+ m_t_hat = m_t / (1 - beta1**epoch)
+ v_t_hat = v_t / (1 - beta2**epoch)
+ theta -= lr * m_t_hat / (np.sqrt(v_t_hat) + epsilon)
+ return theta
+```
+
+These implementations are basic examples of how these optimizers can be implemented in Python using NumPy. In practice, libraries like TensorFlow and PyTorch provide highly optimized and more sophisticated implementations of these and other optimization algorithms.
+
+---
\ No newline at end of file
diff --git a/contrib/machine-learning/index.md b/contrib/machine-learning/index.md
index 45235e4..ce75c70 100644
--- a/contrib/machine-learning/index.md
+++ b/contrib/machine-learning/index.md
@@ -7,3 +7,4 @@
- [Support Vector Machine Algorithm](support-vector-machine.md)
- [Artificial Neural Network from the Ground Up](ArtificialNeuralNetwork.md)
- [TensorFlow.md](tensorFlow.md)
+- [Types of optimizers](Types_of_optimizers.md)
From a51621da8aabd6601923b20eab801707713b5bef Mon Sep 17 00:00:00 2001
From: manishh12
Date: Fri, 24 May 2024 23:01:05 +0530
Subject: [PATCH 15/72] updated readme issue#527
---
contrib/machine-learning/Types_of_optimizers.md | 2 --
1 file changed, 2 deletions(-)
diff --git a/contrib/machine-learning/Types_of_optimizers.md b/contrib/machine-learning/Types_of_optimizers.md
index 7d0a617..e941597 100644
--- a/contrib/machine-learning/Types_of_optimizers.md
+++ b/contrib/machine-learning/Types_of_optimizers.md
@@ -1,7 +1,5 @@
-Sure, here's a more detailed explanation for each optimizer, including the mathematical formulation, intuition, advantages, and disadvantages, along with the Python implementation.
---
-
# Optimizers in Machine Learning
Optimizers are algorithms or methods used to change the attributes of your neural network such as weights and learning rate in order to reduce the losses. Optimization algorithms help to minimize (or maximize) an objective function (also called a loss function) which is simply a mathematical function dependent on the model's internal learnable parameters which are used in computing the target values from the set of features.
From 7d1c8f449a297e0c4d2ec6ef4e902971077286b7 Mon Sep 17 00:00:00 2001
From: Lingamuneni Santhosh Siddhardha
<103999924+Santhosh-Siddhardha@users.noreply.github.com>
Date: Sat, 25 May 2024 00:38:57 +0530
Subject: [PATCH 16/72] Create sorting_numpy_array.md
Added Introduction
Added sort method
Added argsort method
Added lexsort method
---
contrib/numpy/sorting_numpy_array.md | 104 +++++++++++++++++++++++++++
1 file changed, 104 insertions(+)
create mode 100644 contrib/numpy/sorting_numpy_array.md
diff --git a/contrib/numpy/sorting_numpy_array.md b/contrib/numpy/sorting_numpy_array.md
new file mode 100644
index 0000000..65e9c25
--- /dev/null
+++ b/contrib/numpy/sorting_numpy_array.md
@@ -0,0 +1,104 @@
+# Sorting NumPy Arrays
+- Sorting arrays is a common operation in data manipulation and analysis.
+- NumPy provides various functions to sort arrays efficiently.
+- The primary methods are `numpy.sort`,`numpy.argsort`, and `numpy.lexsort`
+
+### 1. numpy.sort()
+
+The `numpy.sort` function returns a sorted copy of an array.
+
+#### Syntax :
+
+```python
+numpy.sort(arr, axis=-1, kind=None, order=None)
+```
+- **arr** : Array to be sorted.
+- **axis** : Axis along which to sort. (By Default is -1)
+- **kind** : Sorting algorithm. Options are 'quicksort', 'mergesort', 'heapsort', and 'stable'. (By Default 'quicksort')
+- **order** : When arr is an array with fields defined, this argument specifies which fields to compare first.
+
+#### Example :
+
+```python
+import numpy as np
+
+arr = np.array([1,7,0,4,6])
+sarr = np.sort(arr)
+print(sarr)
+```
+
+**Output** :
+```python
+[0 1 4 6 7]
+```
+
+### 2. numpy.argsort()
+
+The `numpy.argsort` function returns the indices that would sort an array. Using those indices you can sort the array.
+
+#### Syntax :
+
+```python
+numpy.argsort(a, axis=-1, kind=None, order=None)
+```
+- **arr** : Array to be sorted.
+- **axis** : Axis along which to sort. (By Default is -1)
+- **kind** : Sorting algorithm. Options are 'quicksort', 'mergesort', 'heapsort', and 'stable'. (By Default 'quicksort')
+- **order** : When arr is an array with fields defined, this argument specifies which fields to compare first.
+
+#### Example :
+
+```python
+import numpy as np
+
+arr = np.array([2.1,7,4.2,4.3,6])
+indices = np.argsort(arr)
+print(indices)
+s_arr = arr[indices]
+print(s_arr)
+```
+
+**Output** :
+```python
+[0 2 3 4 1]
+[2.1 4.2 4.3 6. 7. ]
+```
+
+### 3. np.lexsort()
+
+The np.lexsort function performs an indirect stable sort using a sequence of keys.
+
+#### Syntax :
+
+```python
+numpy.lexsort(keys, axis=-1)
+```
+- **keys**: Sequence of arrays to sort by. The last key is the primary sort key.
+- **axis**: Axis to be indirectly sorted.(By Default -1)
+
+#### Example :
+
+```python
+import numpy as np
+
+a = np.array([5,4,3,2])
+b = np.array(['a','d','c','b'])
+indices = np.lexsort((a,b))
+print(indices)
+
+s_arr = a[indices]
+print(s_arr)
+
+s_arr = b[indices]
+print(s_arr)
+```
+
+**Output** :
+```python
+[0 3 2 1]
+[2 3 4 5]
+['a' 'b' 'c' 'd']
+```
+
+NumPy provides powerful and flexible functions for sorting arrays, including `np.sort`, `np.argsort`, and `np.lexsort`.
+These functions support sorting along different axes, using various algorithms, and sorting by multiple keys, making them suitable for a wide range of data manipulation tasks.
From 366743436cc8905d9b2163015eb27827114f14e9 Mon Sep 17 00:00:00 2001
From: Lingamuneni Santhosh Siddhardha
<103999924+Santhosh-Siddhardha@users.noreply.github.com>
Date: Sat, 25 May 2024 00:41:11 +0530
Subject: [PATCH 17/72] Update index.md
Added sorting numpy array section
---
contrib/numpy/index.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/contrib/numpy/index.md b/contrib/numpy/index.md
index 18ed17a..4b4a2c8 100644
--- a/contrib/numpy/index.md
+++ b/contrib/numpy/index.md
@@ -7,3 +7,4 @@
- [Operations on Arrays in NumPy](operations-on-arrays.md)
- [Loading Arrays from Files](loading_arrays_from_files.md)
- [Saving Numpy Arrays into FIles](saving_numpy_arrays_to_files.md)
+- [Sorting NumPy Arrays](sorting_numpy_array.md)
From cc4fa4a47c0802f5bd50456358a888ac6212f459 Mon Sep 17 00:00:00 2001
From: Arihant Yadav <147732947+arihunter-18@users.noreply.github.com>
Date: Sat, 25 May 2024 03:07:10 +0530
Subject: [PATCH 18/72] Add files via upload
---
contrib/database/intro_mysql_queries.md | 371 ++++++++++++++++++++++++
1 file changed, 371 insertions(+)
create mode 100644 contrib/database/intro_mysql_queries.md
diff --git a/contrib/database/intro_mysql_queries.md b/contrib/database/intro_mysql_queries.md
new file mode 100644
index 0000000..b955ead
--- /dev/null
+++ b/contrib/database/intro_mysql_queries.md
@@ -0,0 +1,371 @@
+# Introduction to MySQL Queries
+MySQL is a widely-used open-source relational database management system (RDBMS) that utilizes SQL (Structured Query Language) for managing and querying data. In Python, the **mysql-connector-python** library allows you to connect to MySQL databases and execute SQL queries, providing a way to interact with the database from within a Python program.
+
+## Prerequisites
+* Python and MySQL Server must be installed and configured.
+* The library: **mysql-connector-python** must be installed.
+
+## Establishing connection with server
+To establish a connection with the MySQL server, you need to import the **mysql.connector** module and create a connection object using the **connect()** function by providing the prompt server details as mentioned.
+
+```python
+import mysql.connector
+
+con = mysql.connector.connect(
+host ="localhost",
+user ="root",
+passwd ="12345"
+)
+
+print((con.is_connected()))
+```
+Having established a connection with the server, you get the following output :
+```
+True
+```
+## Creating a Database [CREATE]
+To create a database, you need to execute the **CREATE DATABASE** query. The following code snippet demonstrates how to create a database named **GSSOC**.
+```python
+import mysql.connector
+
+# Establish the connection
+conn = mysql.connector.connect(
+ host="localhost",
+ user="root",
+ password="12345"
+)
+
+# Create a cursor object
+cursor = conn.cursor()
+
+# Execute the query to show databases
+cursor.execute("SHOW DATABASES")
+
+# Fetch and print the databases
+databases = cursor.fetchall()
+for database in databases:
+ print(database[0])
+
+# Execute the query to create database GSSOC
+cursor.execute("CREATE DATABASE GSSOC")
+
+print("\nAfter creation of the database\n")
+
+# Execute the query to show databases
+cursor.execute("SHOW DATABASES")
+# Fetch and print the databases
+databases = cursor.fetchall()
+for database in databases:
+ print(database[0])
+
+cursor.close()
+conn.close()
+```
+You can observe in the output below, after execution of the query a new database named **GSSOC** has been created.
+#### Output:
+```
+information_schema
+mysql
+performance_schema
+sakila
+sys
+world
+
+After creation of the database
+
+gssoc
+information_schema
+mysql
+performance_schema
+sakila
+sys
+world
+```
+## Creating a Table in the Database [CREATE]
+Now, we will create a table in the database. We will create a table named **example_table** in the database **GSSOC**. We will execute **CREATE TABLE** query and provide the fields for the table as mentioned in the code below:
+```python
+import mysql.connector
+
+# Establish the connection
+conn = mysql.connector.connect(
+ host="localhost",
+ user="root",
+ password="12345"
+)
+# Create a cursor object
+cursor = conn.cursor()
+
+# Execute the query to show tables
+cursor.execute("USE GSSOC")
+cursor.execute("SHOW TABLES")
+
+# Fetch and print the tables
+tables = cursor.fetchall()
+print("Before creation of table\n")
+for table in tables:
+ print(table[0])
+
+create_table_query = """
+CREATE TABLE example_table (
+ name VARCHAR(255) NOT NULL,
+ age INT NOT NULL,
+ email VARCHAR(255)
+)
+"""
+# Execute the query
+cursor.execute(create_table_query)
+
+# Commit the changes
+conn.commit()
+
+print("\nAfter creation of Table\n")
+# Execute the query to show tables in GSSOC
+cursor.execute("SHOW TABLES")
+
+# Fetch and print the tables
+tables = cursor.fetchall()
+for table in tables:
+ print(table[0])
+
+cursor.close()
+conn.close()
+```
+#### Output:
+```
+Before creation of table
+
+
+After creation of Table
+
+example_table
+```
+## Inserting Data [INSERT]
+To insert data in an existing table, the **INSERT INTO** query is used, followed by the name of the table in which the data needs to be inserted. The following code demonstrates the insertion of multiple records in the table by **executemany()**.
+```python
+import mysql.connector
+
+# Establish the connection
+conn = mysql.connector.connect(
+ host="localhost",
+ user="root",
+ password="12345"
+)
+# Create a cursor object
+cursor = conn.cursor()
+cursor.execute("USE GSSOC")
+# SQL query to insert data
+insert_data_query = """
+INSERT INTO example_table (name, age, email)
+VALUES (%s, %s, %s)
+"""
+
+# Data to be inserted
+data_to_insert = [
+ ("John Doe", 28, "john.doe@example.com"),
+ ("Jane Smith", 34, "jane.smith@example.com"),
+ ("Sam Brown", 22, "sam.brown@example.com")
+]
+
+# Execute the query for each data entry
+cursor.executemany(insert_data_query, data_to_insert)
+
+conn.commit()
+cursor.close()
+conn.close()
+```
+## Displaying Data [SELECT]
+To display the data from a table, the **SELECT** query is used. The following code demonstrates the display of data from the table.
+```python
+import mysql.connector
+
+# Establish the connection
+conn = mysql.connector.connect(
+ host="localhost",
+ user="root",
+ password="12345"
+)
+# Create a cursor object
+cursor = conn.cursor()
+cursor.execute("USE GSSOC")
+
+# SQL query to display data
+display_data_query = "SELECT * FROM example_table"
+
+# Execute the query for each data entry
+cursor.execute(display_data_query)
+
+# Fetch all the rows
+rows = cursor.fetchall()
+
+# Print the column names
+column_names = [desc[0] for desc in cursor.description]
+print(column_names)
+
+# Print the rows
+for row in rows:
+ print(row)
+
+cursor.close()
+conn.close()
+```
+#### Output :
+```
+['name', 'age', 'email']
+('John Doe', 28, 'john.doe@example.com')
+('Jane Smith', 34, 'jane.smith@example.com')
+('Sam Brown', 22, 'sam.brown@example.com')
+```
+## Updating Data [UPDATE]
+To update data in the table, **UPDATE** query is used. In the following code, we will be updating the email and age of the record where the name is John Doe.
+```python
+import mysql.connector
+
+# Establish the connection
+conn = mysql.connector.connect(
+ host="localhost",
+ user="root",
+ password="12345"
+)
+# Create a cursor object
+cursor = conn.cursor()
+cursor.execute("USE GSSOC")
+
+# SQL query to display data
+display_data_query = "SELECT * FROM example_table"
+
+# SQL Query to update data of John Doe
+update_data_query = """
+UPDATE example_table
+SET age = %s, email = %s
+WHERE name = %s
+"""
+
+# Data to be updated
+data_to_update = (30, "new.email@example.com", "John Doe")
+
+# Execute the query
+cursor.execute(update_data_query, data_to_update)
+
+# Commit the changes
+conn.commit()
+
+# Execute the query for each data entry
+cursor.execute(display_data_query)
+
+# Fetch all the rows
+rows = cursor.fetchall()
+
+# Print the column names
+column_names = [desc[0] for desc in cursor.description]
+print(column_names)
+
+# Print the rows
+for row in rows:
+ print(row)
+
+cursor.close()
+conn.close()
+```
+#### Output:
+```
+['name', 'age', 'email']
+('John Doe', 30, 'new.email@example.com')
+('Jane Smith', 34, 'jane.smith@example.com')
+('Sam Brown', 22, 'sam.brown@example.com')
+```
+
+## Deleting Data [DELETE]
+In this segment, we will Delete the record named "John Doe" using the **DELETE** and **WHERE** statements in the query. The following code explains the same and the observe the change in output.
+```python
+import mysql.connector
+
+# Establish the connection
+conn = mysql.connector.connect(
+ host="localhost",
+ user="root",
+ password="12345"
+)
+# Create a cursor object
+cursor = conn.cursor()
+cursor.execute("USE GSSOC")
+
+# SQL query to display data
+display_data_query = "SELECT * FROM example_table"
+
+# SQL query to delete data
+delete_data_query = "DELETE FROM example_table WHERE name = %s"
+
+# Data to be deleted
+data_to_delete = ("John Doe",)
+
+# Execute the query
+cursor.execute(delete_data_query, data_to_delete)
+
+# Commit the changes
+conn.commit()
+
+# Execute the query for each data entry
+cursor.execute(display_data_query)
+
+# Fetch all the rows
+rows = cursor.fetchall()
+
+# Print the column names
+column_names = [desc[0] for desc in cursor.description]
+print(column_names)
+
+# Print the rows
+for row in rows:
+ print(row)
+
+cursor.close()
+conn.close()
+```
+#### Output:
+```
+['name', 'age', 'email']
+('Jane Smith', 34, 'jane.smith@example.com')
+('Sam Brown', 22, 'sam.brown@example.com')
+```
+## Deleting the Table/Database [DROP]
+For deleting a table, you can use the **DROP** query in the following manner:
+```python
+import mysql.connector
+
+# Establish the connection
+conn = mysql.connector.connect(
+ host="localhost",
+ user="root",
+ password="12345"
+)
+# Create a cursor object
+cursor = conn.cursor()
+cursor.execute("USE GSSOC")
+
+# SQL query to delete the table
+delete_table_query = "DROP TABLE IF EXISTS example_table"
+
+# Execute the query
+cursor.execute(delete_table_query)
+
+# Verify the table deletion
+cursor.execute("SHOW TABLES LIKE 'example_table'")
+result = cursor.fetchone()
+
+cursor.close()
+conn.close()
+
+if result:
+ print("Table deletion failed.")
+else:
+ print("Table successfully deleted.")
+```
+#### Output:
+```
+Table successfully deleted.
+```
+Similarly, you can delete the database also by using the **DROP** and accordingly changing the query to be executed.
+
+
+
+
From fd5c4ec3345a48c46eff8ed0db3826b6b6845227 Mon Sep 17 00:00:00 2001
From: Arihant Yadav <147732947+arihunter-18@users.noreply.github.com>
Date: Sat, 25 May 2024 03:09:38 +0530
Subject: [PATCH 19/72] Add files via upload
---
contrib/database/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/database/index.md b/contrib/database/index.md
index 82596a2..56cd85b 100644
--- a/contrib/database/index.md
+++ b/contrib/database/index.md
@@ -1,3 +1,3 @@
# List of sections
-- [Section title](filename.md)
+- [Introduction to MySQL and Queries](intro_mysql_queries.md)
From 91c57b20b772613d779c2bbd963385d2458f6773 Mon Sep 17 00:00:00 2001
From: Ankit Mahato
Date: Sat, 25 May 2024 04:58:13 +0530
Subject: [PATCH 20/72] Rename Introduction_to_Pandas_Library_and_DataFrames.md
to introduction.md
---
...uction_to_Pandas_Library_and_DataFrames.md => introduction.md} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename contrib/pandas/{Introduction_to_Pandas_Library_and_DataFrames.md => introduction.md} (100%)
diff --git a/contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md b/contrib/pandas/introduction.md
similarity index 100%
rename from contrib/pandas/Introduction_to_Pandas_Library_and_DataFrames.md
rename to contrib/pandas/introduction.md
From 6ec6fd6f409f96d26afb7b0b6554da02a1dfc74d Mon Sep 17 00:00:00 2001
From: Ankit Mahato
Date: Sat, 25 May 2024 04:58:34 +0530
Subject: [PATCH 21/72] Update index.md
---
contrib/pandas/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/pandas/index.md b/contrib/pandas/index.md
index c578ade..2874431 100644
--- a/contrib/pandas/index.md
+++ b/contrib/pandas/index.md
@@ -1,7 +1,7 @@
# List of sections
+- [Pandas Introduction and Dataframes in Pandas](introduction.md)
- [Pandas Series Vs NumPy ndarray](pandas_series_vs_numpy_ndarray.md)
-- [Pandas Introduction and Dataframes in Pandas](Introduction_to_Pandas_Library_and_DataFrames.md)
- [Pandas Descriptive Statistics](Descriptive_Statistics.md)
- [Group By Functions with Pandas](GroupBy_Functions_Pandas.md)
- [Excel using Pandas DataFrame](excel_with_pandas.md)
From 54eec70ca9001137fb9d80d442c3fd7d31f7b1ce Mon Sep 17 00:00:00 2001
From: Pranshu shah <97401387+shahpranshu27@users.noreply.github.com>
Date: Sat, 25 May 2024 07:25:26 +0530
Subject: [PATCH 22/72] create map-function.md
---
contrib/advanced-python/index.md | 1 +
contrib/advanced-python/map-function.md | 54 +++++++++++++++++++++++++
2 files changed, 55 insertions(+)
create mode 100644 contrib/advanced-python/map-function.md
diff --git a/contrib/advanced-python/index.md b/contrib/advanced-python/index.md
index 880b393..e1ff216 100644
--- a/contrib/advanced-python/index.md
+++ b/contrib/advanced-python/index.md
@@ -5,3 +5,4 @@
- [Regular Expressions in Python](regular_expressions.md)
- [JSON module](json-module.md)
- [OOPs](OOPs.md)
+- [Map Function](map-function.md)
diff --git a/contrib/advanced-python/map-function.md b/contrib/advanced-python/map-function.md
new file mode 100644
index 0000000..be035d0
--- /dev/null
+++ b/contrib/advanced-python/map-function.md
@@ -0,0 +1,54 @@
+The `map()` function in Python is a built-in function used for applying a given function to each item of an iterable (like a list, tuple, or dictionary) and returning a new iterable with the results. It's a powerful tool for transforming data without the need for explicit loops. Let's break down its syntax, explore examples, and discuss various use cases.
+
+### Syntax:
+
+```python
+map(function, iterable1, iterable2, ...)
+```
+
+- `function`: The function to apply to each item in the iterables.
+- `iterable1`, `iterable2`, ...: One or more iterable objects whose items will be passed as arguments to `function`.
+
+### Examples:
+
+#### Example 1: Doubling the values in a list
+
+```python
+# Define the function
+def double(x):
+ return x * 2
+
+# Apply the function to each item in the list using map
+original_list = [1, 2, 3, 4, 5]
+doubled_list = list(map(double, original_list))
+print(doubled_list) # Output: [2, 4, 6, 8, 10]
+```
+
+#### Example 2: Converting temperatures from Celsius to Fahrenheit
+
+```python
+# Define the function
+def celsius_to_fahrenheit(celsius):
+ return (celsius * 9/5) + 32
+
+# Apply the function to each Celsius temperature using map
+celsius_temperatures = [0, 10, 20, 30, 40]
+fahrenheit_temperatures = list(map(celsius_to_fahrenheit, celsius_temperatures))
+print(fahrenheit_temperatures) # Output: [32.0, 50.0, 68.0, 86.0, 104.0]
+```
+
+### Use Cases:
+
+1. **Data Transformation**: When you need to apply a function to each item of a collection and obtain the transformed values, `map()` is very handy.
+
+2. **Parallel Processing**: In some cases, `map()` can be utilized in parallel processing scenarios, especially when combined with `multiprocessing` or `concurrent.futures`.
+
+3. **Cleaning and Formatting Data**: It's often used in data processing pipelines for tasks like converting data types, normalizing values, or applying formatting functions.
+
+4. **Functional Programming**: In functional programming paradigms, `map()` is frequently used along with other functional constructs like `filter()` and `reduce()` for concise and expressive code.
+
+5. **Generating Multiple Outputs**: You can use `map()` to generate multiple outputs simultaneously by passing multiple iterables. The function will be applied to corresponding items in the iterables.
+
+6. **Lazy Evaluation**: In Python 3, `map()` returns an iterator rather than a list. This means it's memory efficient and can handle large datasets without loading everything into memory at once.
+
+Remember, while `map()` is powerful, it's essential to balance its use with readability and clarity. Sometimes, a simple loop might be more understandable than a `map()` call.
\ No newline at end of file
From 9680263fa2e36061cf81665b6c1e2a6560e8e77b Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 25 May 2024 08:19:34 +0530
Subject: [PATCH 23/72] Create readme.md
---
contrib/pandas/Datasets/readme.md | 1 +
1 file changed, 1 insertion(+)
create mode 100644 contrib/pandas/Datasets/readme.md
diff --git a/contrib/pandas/Datasets/readme.md b/contrib/pandas/Datasets/readme.md
new file mode 100644
index 0000000..ea2255c
--- /dev/null
+++ b/contrib/pandas/Datasets/readme.md
@@ -0,0 +1 @@
+## This folder contains all the Datasets used in the content.
From 1b654fd3abd8a6a940f99e367e5a4ca0d67e9a44 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 25 May 2024 08:19:56 +0530
Subject: [PATCH 24/72] Add files via upload
---
contrib/pandas/Datasets/Titanic.csv | 1310 +++++++++++++++++++++++++++
1 file changed, 1310 insertions(+)
create mode 100644 contrib/pandas/Datasets/Titanic.csv
diff --git a/contrib/pandas/Datasets/Titanic.csv b/contrib/pandas/Datasets/Titanic.csv
new file mode 100644
index 0000000..f8d49dc
--- /dev/null
+++ b/contrib/pandas/Datasets/Titanic.csv
@@ -0,0 +1,1310 @@
+"pclass","survived","name","sex","age","sibsp","parch","ticket","fare","cabin","embarked","boat","body","home.dest"
+1,1,"Allen, Miss. Elisabeth Walton","female",29,0,0,"24160",211.3375,"B5","S","2",,"St Louis, MO"
+1,1,"Allison, Master. Hudson Trevor","male",0.92,1,2,"113781",151.5500,"C22 C26","S","11",,"Montreal, PQ / Chesterville, ON"
+1,0,"Allison, Miss. Helen Loraine","female",2,1,2,"113781",151.5500,"C22 C26","S",,,"Montreal, PQ / Chesterville, ON"
+1,0,"Allison, Mr. Hudson Joshua Creighton","male",30,1,2,"113781",151.5500,"C22 C26","S",,"135","Montreal, PQ / Chesterville, ON"
+1,0,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)","female",25,1,2,"113781",151.5500,"C22 C26","S",,,"Montreal, PQ / Chesterville, ON"
+1,1,"Anderson, Mr. Harry","male",48,0,0,"19952",26.5500,"E12","S","3",,"New York, NY"
+1,1,"Andrews, Miss. Kornelia Theodosia","female",63,1,0,"13502",77.9583,"D7","S","10",,"Hudson, NY"
+1,0,"Andrews, Mr. Thomas Jr","male",39,0,0,"112050",0.0000,"A36","S",,,"Belfast, NI"
+1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)","female",53,2,0,"11769",51.4792,"C101","S","D",,"Bayside, Queens, NY"
+1,0,"Artagaveytia, Mr. Ramon","male",71,0,0,"PC 17609",49.5042,,"C",,"22","Montevideo, Uruguay"
+1,0,"Astor, Col. John Jacob","male",47,1,0,"PC 17757",227.5250,"C62 C64","C",,"124","New York, NY"
+1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)","female",18,1,0,"PC 17757",227.5250,"C62 C64","C","4",,"New York, NY"
+1,1,"Aubart, Mme. Leontine Pauline","female",24,0,0,"PC 17477",69.3000,"B35","C","9",,"Paris, France"
+1,1,"Barber, Miss. Ellen ""Nellie""","female",26,0,0,"19877",78.8500,,"S","6",,
+1,1,"Barkworth, Mr. Algernon Henry Wilson","male",80,0,0,"27042",30.0000,"A23","S","B",,"Hessle, Yorks"
+1,0,"Baumann, Mr. John D","male",,0,0,"PC 17318",25.9250,,"S",,,"New York, NY"
+1,0,"Baxter, Mr. Quigg Edmond","male",24,0,1,"PC 17558",247.5208,"B58 B60","C",,,"Montreal, PQ"
+1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)","female",50,0,1,"PC 17558",247.5208,"B58 B60","C","6",,"Montreal, PQ"
+1,1,"Bazzani, Miss. Albina","female",32,0,0,"11813",76.2917,"D15","C","8",,
+1,0,"Beattie, Mr. Thomson","male",36,0,0,"13050",75.2417,"C6","C","A",,"Winnipeg, MN"
+1,1,"Beckwith, Mr. Richard Leonard","male",37,1,1,"11751",52.5542,"D35","S","5",,"New York, NY"
+1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)","female",47,1,1,"11751",52.5542,"D35","S","5",,"New York, NY"
+1,1,"Behr, Mr. Karl Howell","male",26,0,0,"111369",30.0000,"C148","C","5",,"New York, NY"
+1,1,"Bidois, Miss. Rosalie","female",42,0,0,"PC 17757",227.5250,,"C","4",,
+1,1,"Bird, Miss. Ellen","female",29,0,0,"PC 17483",221.7792,"C97","S","8",,
+1,0,"Birnbaum, Mr. Jakob","male",25,0,0,"13905",26.0000,,"C",,"148","San Francisco, CA"
+1,1,"Bishop, Mr. Dickinson H","male",25,1,0,"11967",91.0792,"B49","C","7",,"Dowagiac, MI"
+1,1,"Bishop, Mrs. Dickinson H (Helen Walton)","female",19,1,0,"11967",91.0792,"B49","C","7",,"Dowagiac, MI"
+1,1,"Bissette, Miss. Amelia","female",35,0,0,"PC 17760",135.6333,"C99","S","8",,
+1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan","male",28,0,0,"110564",26.5500,"C52","S","D",,"Stockholm, Sweden / Washington, DC"
+1,0,"Blackwell, Mr. Stephen Weart","male",45,0,0,"113784",35.5000,"T","S",,,"Trenton, NJ"
+1,1,"Blank, Mr. Henry","male",40,0,0,"112277",31.0000,"A31","C","7",,"Glen Ridge, NJ"
+1,1,"Bonnell, Miss. Caroline","female",30,0,0,"36928",164.8667,"C7","S","8",,"Youngstown, OH"
+1,1,"Bonnell, Miss. Elizabeth","female",58,0,0,"113783",26.5500,"C103","S","8",,"Birkdale, England Cleveland, Ohio"
+1,0,"Borebank, Mr. John James","male",42,0,0,"110489",26.5500,"D22","S",,,"London / Winnipeg, MB"
+1,1,"Bowen, Miss. Grace Scott","female",45,0,0,"PC 17608",262.3750,,"C","4",,"Cooperstown, NY"
+1,1,"Bowerman, Miss. Elsie Edith","female",22,0,1,"113505",55.0000,"E33","S","6",,"St Leonards-on-Sea, England Ohio"
+1,1,"Bradley, Mr. George (""George Arthur Brayton"")","male",,0,0,"111427",26.5500,,"S","9",,"Los Angeles, CA"
+1,0,"Brady, Mr. John Bertram","male",41,0,0,"113054",30.5000,"A21","S",,,"Pomeroy, WA"
+1,0,"Brandeis, Mr. Emil","male",48,0,0,"PC 17591",50.4958,"B10","C",,"208","Omaha, NE"
+1,0,"Brewe, Dr. Arthur Jackson","male",,0,0,"112379",39.6000,,"C",,,"Philadelphia, PA"
+1,1,"Brown, Mrs. James Joseph (Margaret Tobin)","female",44,0,0,"PC 17610",27.7208,"B4","C","6",,"Denver, CO"
+1,1,"Brown, Mrs. John Murray (Caroline Lane Lamson)","female",59,2,0,"11769",51.4792,"C101","S","D",,"Belmont, MA"
+1,1,"Bucknell, Mrs. William Robert (Emma Eliza Ward)","female",60,0,0,"11813",76.2917,"D15","C","8",,"Philadelphia, PA"
+1,1,"Burns, Miss. Elizabeth Margaret","female",41,0,0,"16966",134.5000,"E40","C","3",,
+1,0,"Butt, Major. Archibald Willingham","male",45,0,0,"113050",26.5500,"B38","S",,,"Washington, DC"
+1,0,"Cairns, Mr. Alexander","male",,0,0,"113798",31.0000,,"S",,,
+1,1,"Calderhead, Mr. Edward Pennington","male",42,0,0,"PC 17476",26.2875,"E24","S","5",,"New York, NY"
+1,1,"Candee, Mrs. Edward (Helen Churchill Hungerford)","female",53,0,0,"PC 17606",27.4458,,"C","6",,"Washington, DC"
+1,1,"Cardeza, Mr. Thomas Drake Martinez","male",36,0,1,"PC 17755",512.3292,"B51 B53 B55","C","3",,"Austria-Hungary / Germantown, Philadelphia, PA"
+1,1,"Cardeza, Mrs. James Warburton Martinez (Charlotte Wardle Drake)","female",58,0,1,"PC 17755",512.3292,"B51 B53 B55","C","3",,"Germantown, Philadelphia, PA"
+1,0,"Carlsson, Mr. Frans Olof","male",33,0,0,"695",5.0000,"B51 B53 B55","S",,,"New York, NY"
+1,0,"Carrau, Mr. Francisco M","male",28,0,0,"113059",47.1000,,"S",,,"Montevideo, Uruguay"
+1,0,"Carrau, Mr. Jose Pedro","male",17,0,0,"113059",47.1000,,"S",,,"Montevideo, Uruguay"
+1,1,"Carter, Master. William Thornton II","male",11,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
+1,1,"Carter, Miss. Lucile Polk","female",14,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
+1,1,"Carter, Mr. William Ernest","male",36,1,2,"113760",120.0000,"B96 B98","S","C",,"Bryn Mawr, PA"
+1,1,"Carter, Mrs. William Ernest (Lucile Polk)","female",36,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
+1,0,"Case, Mr. Howard Brown","male",49,0,0,"19924",26.0000,,"S",,,"Ascot, Berkshire / Rochester, NY"
+1,1,"Cassebeer, Mrs. Henry Arthur Jr (Eleanor Genevieve Fosdick)","female",,0,0,"17770",27.7208,,"C","5",,"New York, NY"
+1,0,"Cavendish, Mr. Tyrell William","male",36,1,0,"19877",78.8500,"C46","S",,"172","Little Onn Hall, Staffs"
+1,1,"Cavendish, Mrs. Tyrell William (Julia Florence Siegel)","female",76,1,0,"19877",78.8500,"C46","S","6",,"Little Onn Hall, Staffs"
+1,0,"Chaffee, Mr. Herbert Fuller","male",46,1,0,"W.E.P. 5734",61.1750,"E31","S",,,"Amenia, ND"
+1,1,"Chaffee, Mrs. Herbert Fuller (Carrie Constance Toogood)","female",47,1,0,"W.E.P. 5734",61.1750,"E31","S","4",,"Amenia, ND"
+1,1,"Chambers, Mr. Norman Campbell","male",27,1,0,"113806",53.1000,"E8","S","5",,"New York, NY / Ithaca, NY"
+1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)","female",33,1,0,"113806",53.1000,"E8","S","5",,"New York, NY / Ithaca, NY"
+1,1,"Chaudanson, Miss. Victorine","female",36,0,0,"PC 17608",262.3750,"B61","C","4",,
+1,1,"Cherry, Miss. Gladys","female",30,0,0,"110152",86.5000,"B77","S","8",,"London, England"
+1,1,"Chevre, Mr. Paul Romaine","male",45,0,0,"PC 17594",29.7000,"A9","C","7",,"Paris, France"
+1,1,"Chibnall, Mrs. (Edith Martha Bowerman)","female",,0,1,"113505",55.0000,"E33","S","6",,"St Leonards-on-Sea, England Ohio"
+1,0,"Chisholm, Mr. Roderick Robert Crispin","male",,0,0,"112051",0.0000,,"S",,,"Liverpool, England / Belfast"
+1,0,"Clark, Mr. Walter Miller","male",27,1,0,"13508",136.7792,"C89","C",,,"Los Angeles, CA"
+1,1,"Clark, Mrs. Walter Miller (Virginia McDowell)","female",26,1,0,"13508",136.7792,"C89","C","4",,"Los Angeles, CA"
+1,1,"Cleaver, Miss. Alice","female",22,0,0,"113781",151.5500,,"S","11",,
+1,0,"Clifford, Mr. George Quincy","male",,0,0,"110465",52.0000,"A14","S",,,"Stoughton, MA"
+1,0,"Colley, Mr. Edward Pomeroy","male",47,0,0,"5727",25.5875,"E58","S",,,"Victoria, BC"
+1,1,"Compton, Miss. Sara Rebecca","female",39,1,1,"PC 17756",83.1583,"E49","C","14",,"Lakewood, NJ"
+1,0,"Compton, Mr. Alexander Taylor Jr","male",37,1,1,"PC 17756",83.1583,"E52","C",,,"Lakewood, NJ"
+1,1,"Compton, Mrs. Alexander Taylor (Mary Eliza Ingersoll)","female",64,0,2,"PC 17756",83.1583,"E45","C","14",,"Lakewood, NJ"
+1,1,"Cornell, Mrs. Robert Clifford (Malvina Helen Lamson)","female",55,2,0,"11770",25.7000,"C101","S","2",,"New York, NY"
+1,0,"Crafton, Mr. John Bertram","male",,0,0,"113791",26.5500,,"S",,,"Roachdale, IN"
+1,0,"Crosby, Capt. Edward Gifford","male",70,1,1,"WE/P 5735",71.0000,"B22","S",,"269","Milwaukee, WI"
+1,1,"Crosby, Miss. Harriet R","female",36,0,2,"WE/P 5735",71.0000,"B22","S","7",,"Milwaukee, WI"
+1,1,"Crosby, Mrs. Edward Gifford (Catherine Elizabeth Halstead)","female",64,1,1,"112901",26.5500,"B26","S","7",,"Milwaukee, WI"
+1,0,"Cumings, Mr. John Bradley","male",39,1,0,"PC 17599",71.2833,"C85","C",,,"New York, NY"
+1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)","female",38,1,0,"PC 17599",71.2833,"C85","C","4",,"New York, NY"
+1,1,"Daly, Mr. Peter Denis ","male",51,0,0,"113055",26.5500,"E17","S","5 9",,"Lima, Peru"
+1,1,"Daniel, Mr. Robert Williams","male",27,0,0,"113804",30.5000,,"S","3",,"Philadelphia, PA"
+1,1,"Daniels, Miss. Sarah","female",33,0,0,"113781",151.5500,,"S","8",,
+1,0,"Davidson, Mr. Thornton","male",31,1,0,"F.C. 12750",52.0000,"B71","S",,,"Montreal, PQ"
+1,1,"Davidson, Mrs. Thornton (Orian Hays)","female",27,1,2,"F.C. 12750",52.0000,"B71","S","3",,"Montreal, PQ"
+1,1,"Dick, Mr. Albert Adrian","male",31,1,0,"17474",57.0000,"B20","S","3",,"Calgary, AB"
+1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)","female",17,1,0,"17474",57.0000,"B20","S","3",,"Calgary, AB"
+1,1,"Dodge, Dr. Washington","male",53,1,1,"33638",81.8583,"A34","S","13",,"San Francisco, CA"
+1,1,"Dodge, Master. Washington","male",4,0,2,"33638",81.8583,"A34","S","5",,"San Francisco, CA"
+1,1,"Dodge, Mrs. Washington (Ruth Vidaver)","female",54,1,1,"33638",81.8583,"A34","S","5",,"San Francisco, CA"
+1,0,"Douglas, Mr. Walter Donald","male",50,1,0,"PC 17761",106.4250,"C86","C",,"62","Deephaven, MN / Cedar Rapids, IA"
+1,1,"Douglas, Mrs. Frederick Charles (Mary Helene Baxter)","female",27,1,1,"PC 17558",247.5208,"B58 B60","C","6",,"Montreal, PQ"
+1,1,"Douglas, Mrs. Walter Donald (Mahala Dutton)","female",48,1,0,"PC 17761",106.4250,"C86","C","2",,"Deephaven, MN / Cedar Rapids, IA"
+1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")","female",48,1,0,"11755",39.6000,"A16","C","1",,"London / Paris"
+1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")","male",49,1,0,"PC 17485",56.9292,"A20","C","1",,"London / Paris"
+1,0,"Dulles, Mr. William Crothers","male",39,0,0,"PC 17580",29.7000,"A18","C",,"133","Philadelphia, PA"
+1,1,"Earnshaw, Mrs. Boulton (Olive Potter)","female",23,0,1,"11767",83.1583,"C54","C","7",,"Mt Airy, Philadelphia, PA"
+1,1,"Endres, Miss. Caroline Louise","female",38,0,0,"PC 17757",227.5250,"C45","C","4",,"New York, NY"
+1,1,"Eustis, Miss. Elizabeth Mussey","female",54,1,0,"36947",78.2667,"D20","C","4",,"Brookline, MA"
+1,0,"Evans, Miss. Edith Corse","female",36,0,0,"PC 17531",31.6792,"A29","C",,,"New York, NY"
+1,0,"Farthing, Mr. John","male",,0,0,"PC 17483",221.7792,"C95","S",,,
+1,1,"Flegenheim, Mrs. Alfred (Antoinette)","female",,0,0,"PC 17598",31.6833,,"S","7",,"New York, NY"
+1,1,"Fleming, Miss. Margaret","female",,0,0,"17421",110.8833,,"C","4",,
+1,1,"Flynn, Mr. John Irwin (""Irving"")","male",36,0,0,"PC 17474",26.3875,"E25","S","5",,"Brooklyn, NY"
+1,0,"Foreman, Mr. Benjamin Laventall","male",30,0,0,"113051",27.7500,"C111","C",,,"New York, NY"
+1,1,"Fortune, Miss. Alice Elizabeth","female",24,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
+1,1,"Fortune, Miss. Ethel Flora","female",28,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
+1,1,"Fortune, Miss. Mabel Helen","female",23,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
+1,0,"Fortune, Mr. Charles Alexander","male",19,3,2,"19950",263.0000,"C23 C25 C27","S",,,"Winnipeg, MB"
+1,0,"Fortune, Mr. Mark","male",64,1,4,"19950",263.0000,"C23 C25 C27","S",,,"Winnipeg, MB"
+1,1,"Fortune, Mrs. Mark (Mary McDougald)","female",60,1,4,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
+1,1,"Francatelli, Miss. Laura Mabel","female",30,0,0,"PC 17485",56.9292,"E36","C","1",,
+1,0,"Franklin, Mr. Thomas Parham","male",,0,0,"113778",26.5500,"D34","S",,,"Westcliff-on-Sea, Essex"
+1,1,"Frauenthal, Dr. Henry William","male",50,2,0,"PC 17611",133.6500,,"S","5",,"New York, NY"
+1,1,"Frauenthal, Mr. Isaac Gerald","male",43,1,0,"17765",27.7208,"D40","C","5",,"New York, NY"
+1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)","female",,1,0,"PC 17611",133.6500,,"S","5",,"New York, NY"
+1,1,"Frolicher, Miss. Hedwig Margaritha","female",22,0,2,"13568",49.5000,"B39","C","5",,"Zurich, Switzerland"
+1,1,"Frolicher-Stehli, Mr. Maxmillian","male",60,1,1,"13567",79.2000,"B41","C","5",,"Zurich, Switzerland"
+1,1,"Frolicher-Stehli, Mrs. Maxmillian (Margaretha Emerentia Stehli)","female",48,1,1,"13567",79.2000,"B41","C","5",,"Zurich, Switzerland"
+1,0,"Fry, Mr. Richard","male",,0,0,"112058",0.0000,"B102","S",,,
+1,0,"Futrelle, Mr. Jacques Heath","male",37,1,0,"113803",53.1000,"C123","S",,,"Scituate, MA"
+1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)","female",35,1,0,"113803",53.1000,"C123","S","D",,"Scituate, MA"
+1,0,"Gee, Mr. Arthur H","male",47,0,0,"111320",38.5000,"E63","S",,"275","St Anne's-on-Sea, Lancashire"
+1,1,"Geiger, Miss. Amalie","female",35,0,0,"113503",211.5000,"C130","C","4",,
+1,1,"Gibson, Miss. Dorothy Winifred","female",22,0,1,"112378",59.4000,,"C","7",,"New York, NY"
+1,1,"Gibson, Mrs. Leonard (Pauline C Boeson)","female",45,0,1,"112378",59.4000,,"C","7",,"New York, NY"
+1,0,"Giglio, Mr. Victor","male",24,0,0,"PC 17593",79.2000,"B86","C",,,
+1,1,"Goldenberg, Mr. Samuel L","male",49,1,0,"17453",89.1042,"C92","C","5",,"Paris, France / New York, NY"
+1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)","female",,1,0,"17453",89.1042,"C92","C","5",,"Paris, France / New York, NY"
+1,0,"Goldschmidt, Mr. George B","male",71,0,0,"PC 17754",34.6542,"A5","C",,,"New York, NY"
+1,1,"Gracie, Col. Archibald IV","male",53,0,0,"113780",28.5000,"C51","C","B",,"Washington, DC"
+1,1,"Graham, Miss. Margaret Edith","female",19,0,0,"112053",30.0000,"B42","S","3",,"Greenwich, CT"
+1,0,"Graham, Mr. George Edward","male",38,0,1,"PC 17582",153.4625,"C91","S",,"147","Winnipeg, MB"
+1,1,"Graham, Mrs. William Thompson (Edith Junkins)","female",58,0,1,"PC 17582",153.4625,"C125","S","3",,"Greenwich, CT"
+1,1,"Greenfield, Mr. William Bertram","male",23,0,1,"PC 17759",63.3583,"D10 D12","C","7",,"New York, NY"
+1,1,"Greenfield, Mrs. Leo David (Blanche Strouse)","female",45,0,1,"PC 17759",63.3583,"D10 D12","C","7",,"New York, NY"
+1,0,"Guggenheim, Mr. Benjamin","male",46,0,0,"PC 17593",79.2000,"B82 B84","C",,,"New York, NY"
+1,1,"Harder, Mr. George Achilles","male",25,1,0,"11765",55.4417,"E50","C","5",,"Brooklyn, NY"
+1,1,"Harder, Mrs. George Achilles (Dorothy Annan)","female",25,1,0,"11765",55.4417,"E50","C","5",,"Brooklyn, NY"
+1,1,"Harper, Mr. Henry Sleeper","male",48,1,0,"PC 17572",76.7292,"D33","C","3",,"New York, NY"
+1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)","female",49,1,0,"PC 17572",76.7292,"D33","C","3",,"New York, NY"
+1,0,"Harrington, Mr. Charles H","male",,0,0,"113796",42.4000,,"S",,,
+1,0,"Harris, Mr. Henry Birkhardt","male",45,1,0,"36973",83.4750,"C83","S",,,"New York, NY"
+1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)","female",35,1,0,"36973",83.4750,"C83","S","D",,"New York, NY"
+1,0,"Harrison, Mr. William","male",40,0,0,"112059",0.0000,"B94","S",,"110",
+1,1,"Hassab, Mr. Hammad","male",27,0,0,"PC 17572",76.7292,"D49","C","3",,
+1,1,"Hawksford, Mr. Walter James","male",,0,0,"16988",30.0000,"D45","S","3",,"Kingston, Surrey"
+1,1,"Hays, Miss. Margaret Bechstein","female",24,0,0,"11767",83.1583,"C54","C","7",,"New York, NY"
+1,0,"Hays, Mr. Charles Melville","male",55,1,1,"12749",93.5000,"B69","S",,"307","Montreal, PQ"
+1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)","female",52,1,1,"12749",93.5000,"B69","S","3",,"Montreal, PQ"
+1,0,"Head, Mr. Christopher","male",42,0,0,"113038",42.5000,"B11","S",,,"London / Middlesex"
+1,0,"Hilliard, Mr. Herbert Henry","male",,0,0,"17463",51.8625,"E46","S",,,"Brighton, MA"
+1,0,"Hipkins, Mr. William Edward","male",55,0,0,"680",50.0000,"C39","S",,,"London / Birmingham"
+1,1,"Hippach, Miss. Jean Gertrude","female",16,0,1,"111361",57.9792,"B18","C","4",,"Chicago, IL"
+1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)","female",44,0,1,"111361",57.9792,"B18","C","4",,"Chicago, IL"
+1,1,"Hogeboom, Mrs. John C (Anna Andrews)","female",51,1,0,"13502",77.9583,"D11","S","10",,"Hudson, NY"
+1,0,"Holverson, Mr. Alexander Oskar","male",42,1,0,"113789",52.0000,,"S",,"38","New York, NY"
+1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)","female",35,1,0,"113789",52.0000,,"S","8",,"New York, NY"
+1,1,"Homer, Mr. Harry (""Mr E Haven"")","male",35,0,0,"111426",26.5500,,"C","15",,"Indianapolis, IN"
+1,1,"Hoyt, Mr. Frederick Maxfield","male",38,1,0,"19943",90.0000,"C93","S","D",,"New York, NY / Stamford CT"
+1,0,"Hoyt, Mr. William Fisher","male",,0,0,"PC 17600",30.6958,,"C","14",,"New York, NY"
+1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)","female",35,1,0,"19943",90.0000,"C93","S","D",,"New York, NY / Stamford CT"
+1,1,"Icard, Miss. Amelie","female",38,0,0,"113572",80.0000,"B28",,"6",,
+1,0,"Isham, Miss. Ann Elizabeth","female",50,0,0,"PC 17595",28.7125,"C49","C",,,"Paris, France New York, NY"
+1,1,"Ismay, Mr. Joseph Bruce","male",49,0,0,"112058",0.0000,"B52 B54 B56","S","C",,"Liverpool"
+1,0,"Jones, Mr. Charles Cresson","male",46,0,0,"694",26.0000,,"S",,"80","Bennington, VT"
+1,0,"Julian, Mr. Henry Forbes","male",50,0,0,"113044",26.0000,"E60","S",,,"London"
+1,0,"Keeping, Mr. Edwin","male",32.5,0,0,"113503",211.5000,"C132","C",,"45",
+1,0,"Kent, Mr. Edward Austin","male",58,0,0,"11771",29.7000,"B37","C",,"258","Buffalo, NY"
+1,0,"Kenyon, Mr. Frederick R","male",41,1,0,"17464",51.8625,"D21","S",,,"Southington / Noank, CT"
+1,1,"Kenyon, Mrs. Frederick R (Marion)","female",,1,0,"17464",51.8625,"D21","S","8",,"Southington / Noank, CT"
+1,1,"Kimball, Mr. Edwin Nelson Jr","male",42,1,0,"11753",52.5542,"D19","S","5",,"Boston, MA"
+1,1,"Kimball, Mrs. Edwin Nelson Jr (Gertrude Parsons)","female",45,1,0,"11753",52.5542,"D19","S","5",,"Boston, MA"
+1,0,"Klaber, Mr. Herman","male",,0,0,"113028",26.5500,"C124","S",,,"Portland, OR"
+1,1,"Kreuchen, Miss. Emilie","female",39,0,0,"24160",211.3375,,"S","2",,
+1,1,"Leader, Dr. Alice (Farnham)","female",49,0,0,"17465",25.9292,"D17","S","8",,"New York, NY"
+1,1,"LeRoy, Miss. Bertha","female",30,0,0,"PC 17761",106.4250,,"C","2",,
+1,1,"Lesurer, Mr. Gustave J","male",35,0,0,"PC 17755",512.3292,"B101","C","3",,
+1,0,"Lewy, Mr. Ervin G","male",,0,0,"PC 17612",27.7208,,"C",,,"Chicago, IL"
+1,0,"Lindeberg-Lind, Mr. Erik Gustaf (""Mr Edward Lingrey"")","male",42,0,0,"17475",26.5500,,"S",,,"Stockholm, Sweden"
+1,1,"Lindstrom, Mrs. Carl Johan (Sigrid Posse)","female",55,0,0,"112377",27.7208,,"C","6",,"Stockholm, Sweden"
+1,1,"Lines, Miss. Mary Conover","female",16,0,1,"PC 17592",39.4000,"D28","S","9",,"Paris, France"
+1,1,"Lines, Mrs. Ernest H (Elizabeth Lindsey James)","female",51,0,1,"PC 17592",39.4000,"D28","S","9",,"Paris, France"
+1,0,"Long, Mr. Milton Clyde","male",29,0,0,"113501",30.0000,"D6","S",,"126","Springfield, MA"
+1,1,"Longley, Miss. Gretchen Fiske","female",21,0,0,"13502",77.9583,"D9","S","10",,"Hudson, NY"
+1,0,"Loring, Mr. Joseph Holland","male",30,0,0,"113801",45.5000,,"S",,,"London / New York, NY"
+1,1,"Lurette, Miss. Elise","female",58,0,0,"PC 17569",146.5208,"B80","C",,,
+1,1,"Madill, Miss. Georgette Alexandra","female",15,0,1,"24160",211.3375,"B5","S","2",,"St Louis, MO"
+1,0,"Maguire, Mr. John Edward","male",30,0,0,"110469",26.0000,"C106","S",,,"Brockton, MA"
+1,1,"Maioni, Miss. Roberta","female",16,0,0,"110152",86.5000,"B79","S","8",,
+1,1,"Marechal, Mr. Pierre","male",,0,0,"11774",29.7000,"C47","C","7",,"Paris, France"
+1,0,"Marvin, Mr. Daniel Warner","male",19,1,0,"113773",53.1000,"D30","S",,,"New York, NY"
+1,1,"Marvin, Mrs. Daniel Warner (Mary Graham Carmichael Farquarson)","female",18,1,0,"113773",53.1000,"D30","S","10",,"New York, NY"
+1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")","female",24,0,0,"PC 17482",49.5042,"C90","C","6",,"Belgium Montreal, PQ"
+1,0,"McCaffry, Mr. Thomas Francis","male",46,0,0,"13050",75.2417,"C6","C",,"292","Vancouver, BC"
+1,0,"McCarthy, Mr. Timothy J","male",54,0,0,"17463",51.8625,"E46","S",,"175","Dorchester, MA"
+1,1,"McGough, Mr. James Robert","male",36,0,0,"PC 17473",26.2875,"E25","S","7",,"Philadelphia, PA"
+1,0,"Meyer, Mr. Edgar Joseph","male",28,1,0,"PC 17604",82.1708,,"C",,,"New York, NY"
+1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)","female",,1,0,"PC 17604",82.1708,,"C","6",,"New York, NY"
+1,0,"Millet, Mr. Francis Davis","male",65,0,0,"13509",26.5500,"E38","S",,"249","East Bridgewater, MA"
+1,0,"Minahan, Dr. William Edward","male",44,2,0,"19928",90.0000,"C78","Q",,"230","Fond du Lac, WI"
+1,1,"Minahan, Miss. Daisy E","female",33,1,0,"19928",90.0000,"C78","Q","14",,"Green Bay, WI"
+1,1,"Minahan, Mrs. William Edward (Lillian E Thorpe)","female",37,1,0,"19928",90.0000,"C78","Q","14",,"Fond du Lac, WI"
+1,1,"Mock, Mr. Philipp Edmund","male",30,1,0,"13236",57.7500,"C78","C","11",,"New York, NY"
+1,0,"Molson, Mr. Harry Markland","male",55,0,0,"113787",30.5000,"C30","S",,,"Montreal, PQ"
+1,0,"Moore, Mr. Clarence Bloomfield","male",47,0,0,"113796",42.4000,,"S",,,"Washington, DC"
+1,0,"Natsch, Mr. Charles H","male",37,0,1,"PC 17596",29.7000,"C118","C",,,"Brooklyn, NY"
+1,1,"Newell, Miss. Madeleine","female",31,1,0,"35273",113.2750,"D36","C","6",,"Lexington, MA"
+1,1,"Newell, Miss. Marjorie","female",23,1,0,"35273",113.2750,"D36","C","6",,"Lexington, MA"
+1,0,"Newell, Mr. Arthur Webster","male",58,0,2,"35273",113.2750,"D48","C",,"122","Lexington, MA"
+1,1,"Newsom, Miss. Helen Monypeny","female",19,0,2,"11752",26.2833,"D47","S","5",,"New York, NY"
+1,0,"Nicholson, Mr. Arthur Ernest","male",64,0,0,"693",26.0000,,"S",,"263","Isle of Wight, England"
+1,1,"Oliva y Ocana, Dona. Fermina","female",39,0,0,"PC 17758",108.9000,"C105","C","8",,
+1,1,"Omont, Mr. Alfred Fernand","male",,0,0,"F.C. 12998",25.7417,,"C","7",,"Paris, France"
+1,1,"Ostby, Miss. Helene Ragnhild","female",22,0,1,"113509",61.9792,"B36","C","5",,"Providence, RI"
+1,0,"Ostby, Mr. Engelhart Cornelius","male",65,0,1,"113509",61.9792,"B30","C",,"234","Providence, RI"
+1,0,"Ovies y Rodriguez, Mr. Servando","male",28.5,0,0,"PC 17562",27.7208,"D43","C",,"189","?Havana, Cuba"
+1,0,"Parr, Mr. William Henry Marsh","male",,0,0,"112052",0.0000,,"S",,,"Belfast"
+1,0,"Partner, Mr. Austen","male",45.5,0,0,"113043",28.5000,"C124","S",,"166","Surbiton Hill, Surrey"
+1,0,"Payne, Mr. Vivian Ponsonby","male",23,0,0,"12749",93.5000,"B24","S",,,"Montreal, PQ"
+1,0,"Pears, Mr. Thomas Clinton","male",29,1,0,"113776",66.6000,"C2","S",,,"Isleworth, England"
+1,1,"Pears, Mrs. Thomas (Edith Wearne)","female",22,1,0,"113776",66.6000,"C2","S","8",,"Isleworth, England"
+1,0,"Penasco y Castellana, Mr. Victor de Satode","male",18,1,0,"PC 17758",108.9000,"C65","C",,,"Madrid, Spain"
+1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)","female",17,1,0,"PC 17758",108.9000,"C65","C","8",,"Madrid, Spain"
+1,1,"Perreault, Miss. Anne","female",30,0,0,"12749",93.5000,"B73","S","3",,
+1,1,"Peuchen, Major. Arthur Godfrey","male",52,0,0,"113786",30.5000,"C104","S","6",,"Toronto, ON"
+1,0,"Porter, Mr. Walter Chamberlain","male",47,0,0,"110465",52.0000,"C110","S",,"207","Worcester, MA"
+1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)","female",56,0,1,"11767",83.1583,"C50","C","7",,"Mt Airy, Philadelphia, PA"
+1,0,"Reuchlin, Jonkheer. John George","male",38,0,0,"19972",0.0000,,"S",,,"Rotterdam, Netherlands"
+1,1,"Rheims, Mr. George Alexander Lucien","male",,0,0,"PC 17607",39.6000,,"S","A",,"Paris / New York, NY"
+1,0,"Ringhini, Mr. Sante","male",22,0,0,"PC 17760",135.6333,,"C",,"232",
+1,0,"Robbins, Mr. Victor","male",,0,0,"PC 17757",227.5250,,"C",,,
+1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)","female",43,0,1,"24160",211.3375,"B3","S","2",,"St Louis, MO"
+1,0,"Roebling, Mr. Washington Augustus II","male",31,0,0,"PC 17590",50.4958,"A24","S",,,"Trenton, NJ"
+1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")","male",45,0,0,"111428",26.5500,,"S","9",,"New York, NY"
+1,0,"Rood, Mr. Hugh Roscoe","male",,0,0,"113767",50.0000,"A32","S",,,"Seattle, WA"
+1,1,"Rosenbaum, Miss. Edith Louise","female",33,0,0,"PC 17613",27.7208,"A11","C","11",,"Paris, France"
+1,0,"Rosenshine, Mr. George (""Mr George Thorne"")","male",46,0,0,"PC 17585",79.2000,,"C",,"16","New York, NY"
+1,0,"Ross, Mr. John Hugo","male",36,0,0,"13049",40.1250,"A10","C",,,"Winnipeg, MB"
+1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)","female",33,0,0,"110152",86.5000,"B77","S","8",,"London Vancouver, BC"
+1,0,"Rothschild, Mr. Martin","male",55,1,0,"PC 17603",59.4000,,"C",,,"New York, NY"
+1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)","female",54,1,0,"PC 17603",59.4000,,"C","6",,"New York, NY"
+1,0,"Rowe, Mr. Alfred G","male",33,0,0,"113790",26.5500,,"S",,"109","London"
+1,1,"Ryerson, Master. John Borie","male",13,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
+1,1,"Ryerson, Miss. Emily Borie","female",18,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
+1,1,"Ryerson, Miss. Susan Parker ""Suzette""","female",21,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
+1,0,"Ryerson, Mr. Arthur Larned","male",61,1,3,"PC 17608",262.3750,"B57 B59 B63 B66","C",,,"Haverford, PA / Cooperstown, NY"
+1,1,"Ryerson, Mrs. Arthur Larned (Emily Maria Borie)","female",48,1,3,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
+1,1,"Saalfeld, Mr. Adolphe","male",,0,0,"19988",30.5000,"C106","S","3",,"Manchester, England"
+1,1,"Sagesser, Mlle. Emma","female",24,0,0,"PC 17477",69.3000,"B35","C","9",,
+1,1,"Salomon, Mr. Abraham L","male",,0,0,"111163",26.0000,,"S","1",,"New York, NY"
+1,1,"Schabert, Mrs. Paul (Emma Mock)","female",35,1,0,"13236",57.7500,"C28","C","11",,"New York, NY"
+1,1,"Serepeca, Miss. Augusta","female",30,0,0,"113798",31.0000,,"C","4",,
+1,1,"Seward, Mr. Frederic Kimber","male",34,0,0,"113794",26.5500,,"S","7",,"New York, NY"
+1,1,"Shutes, Miss. Elizabeth W","female",40,0,0,"PC 17582",153.4625,"C125","S","3",,"New York, NY / Greenwich CT"
+1,1,"Silverthorne, Mr. Spencer Victor","male",35,0,0,"PC 17475",26.2875,"E24","S","5",,"St Louis, MO"
+1,0,"Silvey, Mr. William Baird","male",50,1,0,"13507",55.9000,"E44","S",,,"Duluth, MN"
+1,1,"Silvey, Mrs. William Baird (Alice Munger)","female",39,1,0,"13507",55.9000,"E44","S","11",,"Duluth, MN"
+1,1,"Simonius-Blumer, Col. Oberst Alfons","male",56,0,0,"13213",35.5000,"A26","C","3",,"Basel, Switzerland"
+1,1,"Sloper, Mr. William Thompson","male",28,0,0,"113788",35.5000,"A6","S","7",,"New Britain, CT"
+1,0,"Smart, Mr. John Montgomery","male",56,0,0,"113792",26.5500,,"S",,,"New York, NY"
+1,0,"Smith, Mr. James Clinch","male",56,0,0,"17764",30.6958,"A7","C",,,"St James, Long Island, NY"
+1,0,"Smith, Mr. Lucien Philip","male",24,1,0,"13695",60.0000,"C31","S",,,"Huntington, WV"
+1,0,"Smith, Mr. Richard William","male",,0,0,"113056",26.0000,"A19","S",,,"Streatham, Surrey"
+1,1,"Smith, Mrs. Lucien Philip (Mary Eloise Hughes)","female",18,1,0,"13695",60.0000,"C31","S","6",,"Huntington, WV"
+1,1,"Snyder, Mr. John Pillsbury","male",24,1,0,"21228",82.2667,"B45","S","7",,"Minneapolis, MN"
+1,1,"Snyder, Mrs. John Pillsbury (Nelle Stevenson)","female",23,1,0,"21228",82.2667,"B45","S","7",,"Minneapolis, MN"
+1,1,"Spedden, Master. Robert Douglas","male",6,0,2,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
+1,1,"Spedden, Mr. Frederic Oakley","male",45,1,1,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
+1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)","female",40,1,1,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
+1,0,"Spencer, Mr. William Augustus","male",57,1,0,"PC 17569",146.5208,"B78","C",,,"Paris, France"
+1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)","female",,1,0,"PC 17569",146.5208,"B78","C","6",,"Paris, France"
+1,1,"Stahelin-Maeglin, Dr. Max","male",32,0,0,"13214",30.5000,"B50","C","3",,"Basel, Switzerland"
+1,0,"Stead, Mr. William Thomas","male",62,0,0,"113514",26.5500,"C87","S",,,"Wimbledon Park, London / Hayling Island, Hants"
+1,1,"Stengel, Mr. Charles Emil Henry","male",54,1,0,"11778",55.4417,"C116","C","1",,"Newark, NJ"
+1,1,"Stengel, Mrs. Charles Emil Henry (Annie May Morris)","female",43,1,0,"11778",55.4417,"C116","C","5",,"Newark, NJ"
+1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)","female",52,1,0,"36947",78.2667,"D20","C","4",,"Haverford, PA"
+1,0,"Stewart, Mr. Albert A","male",,0,0,"PC 17605",27.7208,,"C",,,"Gallipolis, Ohio / ? Paris / New York"
+1,1,"Stone, Mrs. George Nelson (Martha Evelyn)","female",62,0,0,"113572",80.0000,"B28",,"6",,"Cincinatti, OH"
+1,0,"Straus, Mr. Isidor","male",67,1,0,"PC 17483",221.7792,"C55 C57","S",,"96","New York, NY"
+1,0,"Straus, Mrs. Isidor (Rosalie Ida Blun)","female",63,1,0,"PC 17483",221.7792,"C55 C57","S",,,"New York, NY"
+1,0,"Sutton, Mr. Frederick","male",61,0,0,"36963",32.3208,"D50","S",,"46","Haddenfield, NJ"
+1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)","female",48,0,0,"17466",25.9292,"D17","S","8",,"Brooklyn, NY"
+1,1,"Taussig, Miss. Ruth","female",18,0,2,"110413",79.6500,"E68","S","8",,"New York, NY"
+1,0,"Taussig, Mr. Emil","male",52,1,1,"110413",79.6500,"E67","S",,,"New York, NY"
+1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)","female",39,1,1,"110413",79.6500,"E67","S","8",,"New York, NY"
+1,1,"Taylor, Mr. Elmer Zebley","male",48,1,0,"19996",52.0000,"C126","S","5 7",,"London / East Orange, NJ"
+1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)","female",,1,0,"19996",52.0000,"C126","S","5 7",,"London / East Orange, NJ"
+1,0,"Thayer, Mr. John Borland","male",49,1,1,"17421",110.8833,"C68","C",,,"Haverford, PA"
+1,1,"Thayer, Mr. John Borland Jr","male",17,0,2,"17421",110.8833,"C70","C","B",,"Haverford, PA"
+1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)","female",39,1,1,"17421",110.8833,"C68","C","4",,"Haverford, PA"
+1,1,"Thorne, Mrs. Gertrude Maybelle","female",,0,0,"PC 17585",79.2000,,"C","D",,"New York, NY"
+1,1,"Tucker, Mr. Gilbert Milligan Jr","male",31,0,0,"2543",28.5375,"C53","C","7",,"Albany, NY"
+1,0,"Uruchurtu, Don. Manuel E","male",40,0,0,"PC 17601",27.7208,,"C",,,"Mexico City, Mexico"
+1,0,"Van der hoef, Mr. Wyckoff","male",61,0,0,"111240",33.5000,"B19","S",,"245","Brooklyn, NY"
+1,0,"Walker, Mr. William Anderson","male",47,0,0,"36967",34.0208,"D46","S",,,"East Orange, NJ"
+1,1,"Ward, Miss. Anna","female",35,0,0,"PC 17755",512.3292,,"C","3",,
+1,0,"Warren, Mr. Frank Manley","male",64,1,0,"110813",75.2500,"D37","C",,,"Portland, OR"
+1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)","female",60,1,0,"110813",75.2500,"D37","C","5",,"Portland, OR"
+1,0,"Weir, Col. John","male",60,0,0,"113800",26.5500,,"S",,,"England Salt Lake City, Utah"
+1,0,"White, Mr. Percival Wayland","male",54,0,1,"35281",77.2875,"D26","S",,,"Brunswick, ME"
+1,0,"White, Mr. Richard Frasar","male",21,0,1,"35281",77.2875,"D26","S",,"169","Brunswick, ME"
+1,1,"White, Mrs. John Stuart (Ella Holmes)","female",55,0,0,"PC 17760",135.6333,"C32","C","8",,"New York, NY / Briarcliff Manor NY"
+1,1,"Wick, Miss. Mary Natalie","female",31,0,2,"36928",164.8667,"C7","S","8",,"Youngstown, OH"
+1,0,"Wick, Mr. George Dennick","male",57,1,1,"36928",164.8667,,"S",,,"Youngstown, OH"
+1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)","female",45,1,1,"36928",164.8667,,"S","8",,"Youngstown, OH"
+1,0,"Widener, Mr. George Dunton","male",50,1,1,"113503",211.5000,"C80","C",,,"Elkins Park, PA"
+1,0,"Widener, Mr. Harry Elkins","male",27,0,2,"113503",211.5000,"C82","C",,,"Elkins Park, PA"
+1,1,"Widener, Mrs. George Dunton (Eleanor Elkins)","female",50,1,1,"113503",211.5000,"C80","C","4",,"Elkins Park, PA"
+1,1,"Willard, Miss. Constance","female",21,0,0,"113795",26.5500,,"S","8 10",,"Duluth, MN"
+1,0,"Williams, Mr. Charles Duane","male",51,0,1,"PC 17597",61.3792,,"C",,,"Geneva, Switzerland / Radnor, PA"
+1,1,"Williams, Mr. Richard Norris II","male",21,0,1,"PC 17597",61.3792,,"C","A",,"Geneva, Switzerland / Radnor, PA"
+1,0,"Williams-Lambert, Mr. Fletcher Fellows","male",,0,0,"113510",35.0000,"C128","S",,,"London, England"
+1,1,"Wilson, Miss. Helen Alice","female",31,0,0,"16966",134.5000,"E39 E41","C","3",,
+1,1,"Woolner, Mr. Hugh","male",,0,0,"19947",35.5000,"C52","S","D",,"London, England"
+1,0,"Wright, Mr. George","male",62,0,0,"113807",26.5500,,"S",,,"Halifax, NS"
+1,1,"Young, Miss. Marie Grice","female",36,0,0,"PC 17760",135.6333,"C32","C","8",,"New York, NY / Washington, DC"
+2,0,"Abelson, Mr. Samuel","male",30,1,0,"P/PP 3381",24.0000,,"C",,,"Russia New York, NY"
+2,1,"Abelson, Mrs. Samuel (Hannah Wizosky)","female",28,1,0,"P/PP 3381",24.0000,,"C","10",,"Russia New York, NY"
+2,0,"Aldworth, Mr. Charles Augustus","male",30,0,0,"248744",13.0000,,"S",,,"Bryn Mawr, PA, USA"
+2,0,"Andrew, Mr. Edgardo Samuel","male",18,0,0,"231945",11.5000,,"S",,,"Buenos Aires, Argentina / New Jersey, NJ"
+2,0,"Andrew, Mr. Frank Thomas","male",25,0,0,"C.A. 34050",10.5000,,"S",,,"Cornwall, England Houghton, MI"
+2,0,"Angle, Mr. William A","male",34,1,0,"226875",26.0000,,"S",,,"Warwick, England"
+2,1,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)","female",36,1,0,"226875",26.0000,,"S","11",,"Warwick, England"
+2,0,"Ashby, Mr. John","male",57,0,0,"244346",13.0000,,"S",,,"West Hoboken, NJ"
+2,0,"Bailey, Mr. Percy Andrew","male",18,0,0,"29108",11.5000,,"S",,,"Penzance, Cornwall / Akron, OH"
+2,0,"Baimbrigge, Mr. Charles Robert","male",23,0,0,"C.A. 31030",10.5000,,"S",,,"Guernsey"
+2,1,"Ball, Mrs. (Ada E Hall)","female",36,0,0,"28551",13.0000,"D","S","10",,"Bristol, Avon / Jacksonville, FL"
+2,0,"Banfield, Mr. Frederick James","male",28,0,0,"C.A./SOTON 34068",10.5000,,"S",,,"Plymouth, Dorset / Houghton, MI"
+2,0,"Bateman, Rev. Robert James","male",51,0,0,"S.O.P. 1166",12.5250,,"S",,"174","Jacksonville, FL"
+2,1,"Beane, Mr. Edward","male",32,1,0,"2908",26.0000,,"S","13",,"Norwich / New York, NY"
+2,1,"Beane, Mrs. Edward (Ethel Clarke)","female",19,1,0,"2908",26.0000,,"S","13",,"Norwich / New York, NY"
+2,0,"Beauchamp, Mr. Henry James","male",28,0,0,"244358",26.0000,,"S",,,"England"
+2,1,"Becker, Master. Richard F","male",1,2,1,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
+2,1,"Becker, Miss. Marion Louise","female",4,2,1,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
+2,1,"Becker, Miss. Ruth Elizabeth","female",12,2,1,"230136",39.0000,"F4","S","13",,"Guntur, India / Benton Harbour, MI"
+2,1,"Becker, Mrs. Allen Oliver (Nellie E Baumgardner)","female",36,0,3,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
+2,1,"Beesley, Mr. Lawrence","male",34,0,0,"248698",13.0000,"D56","S","13",,"London"
+2,1,"Bentham, Miss. Lilian W","female",19,0,0,"28404",13.0000,,"S","12",,"Rochester, NY"
+2,0,"Berriman, Mr. William John","male",23,0,0,"28425",13.0000,,"S",,,"St Ives, Cornwall / Calumet, MI"
+2,0,"Botsford, Mr. William Hull","male",26,0,0,"237670",13.0000,,"S",,,"Elmira, NY / Orange, NJ"
+2,0,"Bowenur, Mr. Solomon","male",42,0,0,"211535",13.0000,,"S",,,"London"
+2,0,"Bracken, Mr. James H","male",27,0,0,"220367",13.0000,,"S",,,"Lake Arthur, Chavez County, NM"
+2,1,"Brown, Miss. Amelia ""Mildred""","female",24,0,0,"248733",13.0000,"F33","S","11",,"London / Montreal, PQ"
+2,1,"Brown, Miss. Edith Eileen","female",15,0,2,"29750",39.0000,,"S","14",,"Cape Town, South Africa / Seattle, WA"
+2,0,"Brown, Mr. Thomas William Solomon","male",60,1,1,"29750",39.0000,,"S",,,"Cape Town, South Africa / Seattle, WA"
+2,1,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)","female",40,1,1,"29750",39.0000,,"S","14",,"Cape Town, South Africa / Seattle, WA"
+2,1,"Bryhl, Miss. Dagmar Jenny Ingeborg ","female",20,1,0,"236853",26.0000,,"S","12",,"Skara, Sweden / Rockford, IL"
+2,0,"Bryhl, Mr. Kurt Arnold Gottfrid","male",25,1,0,"236853",26.0000,,"S",,,"Skara, Sweden / Rockford, IL"
+2,1,"Buss, Miss. Kate","female",36,0,0,"27849",13.0000,,"S","9",,"Sittingbourne, England / San Diego, CA"
+2,0,"Butler, Mr. Reginald Fenton","male",25,0,0,"234686",13.0000,,"S",,"97","Southsea, Hants"
+2,0,"Byles, Rev. Thomas Roussel Davids","male",42,0,0,"244310",13.0000,,"S",,,"London"
+2,1,"Bystrom, Mrs. (Karolina)","female",42,0,0,"236852",13.0000,,"S",,,"New York, NY"
+2,1,"Caldwell, Master. Alden Gates","male",0.83,0,2,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
+2,1,"Caldwell, Mr. Albert Francis","male",26,1,1,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
+2,1,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)","female",22,1,1,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
+2,1,"Cameron, Miss. Clear Annie","female",35,0,0,"F.C.C. 13528",21.0000,,"S","14",,"Mamaroneck, NY"
+2,0,"Campbell, Mr. William","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
+2,0,"Carbines, Mr. William","male",19,0,0,"28424",13.0000,,"S",,"18","St Ives, Cornwall / Calumet, MI"
+2,0,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)","female",44,1,0,"244252",26.0000,,"S",,,"London"
+2,0,"Carter, Rev. Ernest Courtenay","male",54,1,0,"244252",26.0000,,"S",,,"London"
+2,0,"Chapman, Mr. Charles Henry","male",52,0,0,"248731",13.5000,,"S",,"130","Bronx, NY"
+2,0,"Chapman, Mr. John Henry","male",37,1,0,"SC/AH 29037",26.0000,,"S",,"17","Cornwall / Spokane, WA"
+2,0,"Chapman, Mrs. John Henry (Sara Elizabeth Lawry)","female",29,1,0,"SC/AH 29037",26.0000,,"S",,,"Cornwall / Spokane, WA"
+2,1,"Christy, Miss. Julie Rachel","female",25,1,1,"237789",30.0000,,"S","12",,"London"
+2,1,"Christy, Mrs. (Alice Frances)","female",45,0,2,"237789",30.0000,,"S","12",,"London"
+2,0,"Clarke, Mr. Charles Valentine","male",29,1,0,"2003",26.0000,,"S",,,"England / San Francisco, CA"
+2,1,"Clarke, Mrs. Charles V (Ada Maria Winfield)","female",28,1,0,"2003",26.0000,,"S","14",,"England / San Francisco, CA"
+2,0,"Coleridge, Mr. Reginald Charles","male",29,0,0,"W./C. 14263",10.5000,,"S",,,"Hartford, Huntingdonshire"
+2,0,"Collander, Mr. Erik Gustaf","male",28,0,0,"248740",13.0000,,"S",,,"Helsinki, Finland Ashtabula, Ohio"
+2,1,"Collett, Mr. Sidney C Stuart","male",24,0,0,"28034",10.5000,,"S","9",,"London / Fort Byron, NY"
+2,1,"Collyer, Miss. Marjorie ""Lottie""","female",8,0,2,"C.A. 31921",26.2500,,"S","14",,"Bishopstoke, Hants / Fayette Valley, ID"
+2,0,"Collyer, Mr. Harvey","male",31,1,1,"C.A. 31921",26.2500,,"S",,,"Bishopstoke, Hants / Fayette Valley, ID"
+2,1,"Collyer, Mrs. Harvey (Charlotte Annie Tate)","female",31,1,1,"C.A. 31921",26.2500,,"S","14",,"Bishopstoke, Hants / Fayette Valley, ID"
+2,1,"Cook, Mrs. (Selena Rogers)","female",22,0,0,"W./C. 14266",10.5000,"F33","S","14",,"Pennsylvania"
+2,0,"Corbett, Mrs. Walter H (Irene Colvin)","female",30,0,0,"237249",13.0000,,"S",,,"Provo, UT"
+2,0,"Corey, Mrs. Percy C (Mary Phyllis Elizabeth Miller)","female",,0,0,"F.C.C. 13534",21.0000,,"S",,,"Upper Burma, India Pittsburgh, PA"
+2,0,"Cotterill, Mr. Henry ""Harry""","male",21,0,0,"29107",11.5000,,"S",,,"Penzance, Cornwall / Akron, OH"
+2,0,"Cunningham, Mr. Alfred Fleming","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
+2,1,"Davies, Master. John Morgan Jr","male",8,1,1,"C.A. 33112",36.7500,,"S","14",,"St Ives, Cornwall / Hancock, MI"
+2,0,"Davies, Mr. Charles Henry","male",18,0,0,"S.O.C. 14879",73.5000,,"S",,,"Lyndhurst, England"
+2,1,"Davies, Mrs. John Morgan (Elizabeth Agnes Mary White) ","female",48,0,2,"C.A. 33112",36.7500,,"S","14",,"St Ives, Cornwall / Hancock, MI"
+2,1,"Davis, Miss. Mary","female",28,0,0,"237668",13.0000,,"S","13",,"London / Staten Island, NY"
+2,0,"de Brito, Mr. Jose Joaquim","male",32,0,0,"244360",13.0000,,"S",,,"Portugal / Sau Paulo, Brazil"
+2,0,"Deacon, Mr. Percy William","male",17,0,0,"S.O.C. 14879",73.5000,,"S",,,
+2,0,"del Carlo, Mr. Sebastiano","male",29,1,0,"SC/PARIS 2167",27.7208,,"C",,"295","Lucca, Italy / California"
+2,1,"del Carlo, Mrs. Sebastiano (Argenia Genovesi)","female",24,1,0,"SC/PARIS 2167",27.7208,,"C","12",,"Lucca, Italy / California"
+2,0,"Denbury, Mr. Herbert","male",25,0,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
+2,0,"Dibden, Mr. William","male",18,0,0,"S.O.C. 14879",73.5000,,"S",,,"New Forest, England"
+2,1,"Doling, Miss. Elsie","female",18,0,1,"231919",23.0000,,"S",,,"Southampton"
+2,1,"Doling, Mrs. John T (Ada Julia Bone)","female",34,0,1,"231919",23.0000,,"S",,,"Southampton"
+2,0,"Downton, Mr. William James","male",54,0,0,"28403",26.0000,,"S",,,"Holley, NY"
+2,1,"Drew, Master. Marshall Brines","male",8,0,2,"28220",32.5000,,"S","10",,"Greenport, NY"
+2,0,"Drew, Mr. James Vivian","male",42,1,1,"28220",32.5000,,"S",,,"Greenport, NY"
+2,1,"Drew, Mrs. James Vivian (Lulu Thorne Christian)","female",34,1,1,"28220",32.5000,,"S","10",,"Greenport, NY"
+2,1,"Duran y More, Miss. Asuncion","female",27,1,0,"SC/PARIS 2149",13.8583,,"C","12",,"Barcelona, Spain / Havana, Cuba"
+2,1,"Duran y More, Miss. Florentina","female",30,1,0,"SC/PARIS 2148",13.8583,,"C","12",,"Barcelona, Spain / Havana, Cuba"
+2,0,"Eitemiller, Mr. George Floyd","male",23,0,0,"29751",13.0000,,"S",,,"England / Detroit, MI"
+2,0,"Enander, Mr. Ingvar","male",21,0,0,"236854",13.0000,,"S",,,"Goteborg, Sweden / Rockford, IL"
+2,0,"Fahlstrom, Mr. Arne Jonas","male",18,0,0,"236171",13.0000,,"S",,,"Oslo, Norway Bayonne, NJ"
+2,0,"Faunthorpe, Mr. Harry","male",40,1,0,"2926",26.0000,,"S",,"286","England / Philadelphia, PA"
+2,1,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)","female",29,1,0,"2926",26.0000,,"S","16",,
+2,0,"Fillbrook, Mr. Joseph Charles","male",18,0,0,"C.A. 15185",10.5000,,"S",,,"Cornwall / Houghton, MI"
+2,0,"Fox, Mr. Stanley Hubert","male",36,0,0,"229236",13.0000,,"S",,"236","Rochester, NY"
+2,0,"Frost, Mr. Anthony Wood ""Archie""","male",,0,0,"239854",0.0000,,"S",,,"Belfast"
+2,0,"Funk, Miss. Annie Clemmer","female",38,0,0,"237671",13.0000,,"S",,,"Janjgir, India / Pennsylvania"
+2,0,"Fynney, Mr. Joseph J","male",35,0,0,"239865",26.0000,,"S",,"322","Liverpool / Montreal, PQ"
+2,0,"Gale, Mr. Harry","male",38,1,0,"28664",21.0000,,"S",,,"Cornwall / Clear Creek, CO"
+2,0,"Gale, Mr. Shadrach","male",34,1,0,"28664",21.0000,,"S",,,"Cornwall / Clear Creek, CO"
+2,1,"Garside, Miss. Ethel","female",34,0,0,"243880",13.0000,,"S","12",,"Brooklyn, NY"
+2,0,"Gaskell, Mr. Alfred","male",16,0,0,"239865",26.0000,,"S",,,"Liverpool / Montreal, PQ"
+2,0,"Gavey, Mr. Lawrence","male",26,0,0,"31028",10.5000,,"S",,,"Guernsey / Elizabeth, NJ"
+2,0,"Gilbert, Mr. William","male",47,0,0,"C.A. 30769",10.5000,,"S",,,"Cornwall"
+2,0,"Giles, Mr. Edgar","male",21,1,0,"28133",11.5000,,"S",,,"Cornwall / Camden, NJ"
+2,0,"Giles, Mr. Frederick Edward","male",21,1,0,"28134",11.5000,,"S",,,"Cornwall / Camden, NJ"
+2,0,"Giles, Mr. Ralph","male",24,0,0,"248726",13.5000,,"S",,"297","West Kensington, London"
+2,0,"Gill, Mr. John William","male",24,0,0,"233866",13.0000,,"S",,"155","Clevedon, England"
+2,0,"Gillespie, Mr. William Henry","male",34,0,0,"12233",13.0000,,"S",,,"Vancouver, BC"
+2,0,"Givard, Mr. Hans Kristensen","male",30,0,0,"250646",13.0000,,"S",,"305",
+2,0,"Greenberg, Mr. Samuel","male",52,0,0,"250647",13.0000,,"S",,"19","Bronx, NY"
+2,0,"Hale, Mr. Reginald","male",30,0,0,"250653",13.0000,,"S",,"75","Auburn, NY"
+2,1,"Hamalainen, Master. Viljo","male",0.67,1,1,"250649",14.5000,,"S","4",,"Detroit, MI"
+2,1,"Hamalainen, Mrs. William (Anna)","female",24,0,2,"250649",14.5000,,"S","4",,"Detroit, MI"
+2,0,"Harbeck, Mr. William H","male",44,0,0,"248746",13.0000,,"S",,"35","Seattle, WA / Toledo, OH"
+2,1,"Harper, Miss. Annie Jessie ""Nina""","female",6,0,1,"248727",33.0000,,"S","11",,"Denmark Hill, Surrey / Chicago"
+2,0,"Harper, Rev. John","male",28,0,1,"248727",33.0000,,"S",,,"Denmark Hill, Surrey / Chicago"
+2,1,"Harris, Mr. George","male",62,0,0,"S.W./PP 752",10.5000,,"S","15",,"London"
+2,0,"Harris, Mr. Walter","male",30,0,0,"W/C 14208",10.5000,,"S",,,"Walthamstow, England"
+2,1,"Hart, Miss. Eva Miriam","female",7,0,2,"F.C.C. 13529",26.2500,,"S","14",,"Ilford, Essex / Winnipeg, MB"
+2,0,"Hart, Mr. Benjamin","male",43,1,1,"F.C.C. 13529",26.2500,,"S",,,"Ilford, Essex / Winnipeg, MB"
+2,1,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)","female",45,1,1,"F.C.C. 13529",26.2500,,"S","14",,"Ilford, Essex / Winnipeg, MB"
+2,1,"Herman, Miss. Alice","female",24,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
+2,1,"Herman, Miss. Kate","female",24,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
+2,0,"Herman, Mr. Samuel","male",49,1,2,"220845",65.0000,,"S",,,"Somerset / Bernardsville, NJ"
+2,1,"Herman, Mrs. Samuel (Jane Laver)","female",48,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
+2,1,"Hewlett, Mrs. (Mary D Kingcome) ","female",55,0,0,"248706",16.0000,,"S","13",,"India / Rapid City, SD"
+2,0,"Hickman, Mr. Leonard Mark","male",24,2,0,"S.O.C. 14879",73.5000,,"S",,,"West Hampstead, London / Neepawa, MB"
+2,0,"Hickman, Mr. Lewis","male",32,2,0,"S.O.C. 14879",73.5000,,"S",,"256","West Hampstead, London / Neepawa, MB"
+2,0,"Hickman, Mr. Stanley George","male",21,2,0,"S.O.C. 14879",73.5000,,"S",,,"West Hampstead, London / Neepawa, MB"
+2,0,"Hiltunen, Miss. Marta","female",18,1,1,"250650",13.0000,,"S",,,"Kontiolahti, Finland / Detroit, MI"
+2,1,"Hocking, Miss. Ellen ""Nellie""","female",20,2,1,"29105",23.0000,,"S","4",,"Cornwall / Akron, OH"
+2,0,"Hocking, Mr. Richard George","male",23,2,1,"29104",11.5000,,"S",,,"Cornwall / Akron, OH"
+2,0,"Hocking, Mr. Samuel James Metcalfe","male",36,0,0,"242963",13.0000,,"S",,,"Devonport, England"
+2,1,"Hocking, Mrs. Elizabeth (Eliza Needs)","female",54,1,3,"29105",23.0000,,"S","4",,"Cornwall / Akron, OH"
+2,0,"Hodges, Mr. Henry Price","male",50,0,0,"250643",13.0000,,"S",,"149","Southampton"
+2,0,"Hold, Mr. Stephen","male",44,1,0,"26707",26.0000,,"S",,,"England / Sacramento, CA"
+2,1,"Hold, Mrs. Stephen (Annie Margaret Hill)","female",29,1,0,"26707",26.0000,,"S","10",,"England / Sacramento, CA"
+2,0,"Hood, Mr. Ambrose Jr","male",21,0,0,"S.O.C. 14879",73.5000,,"S",,,"New Forest, England"
+2,1,"Hosono, Mr. Masabumi","male",42,0,0,"237798",13.0000,,"S","10",,"Tokyo, Japan"
+2,0,"Howard, Mr. Benjamin","male",63,1,0,"24065",26.0000,,"S",,,"Swindon, England"
+2,0,"Howard, Mrs. Benjamin (Ellen Truelove Arman)","female",60,1,0,"24065",26.0000,,"S",,,"Swindon, England"
+2,0,"Hunt, Mr. George Henry","male",33,0,0,"SCO/W 1585",12.2750,,"S",,,"Philadelphia, PA"
+2,1,"Ilett, Miss. Bertha","female",17,0,0,"SO/C 14885",10.5000,,"S",,,"Guernsey"
+2,0,"Jacobsohn, Mr. Sidney Samuel","male",42,1,0,"243847",27.0000,,"S",,,"London"
+2,1,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)","female",24,2,1,"243847",27.0000,,"S","12",,"London"
+2,0,"Jarvis, Mr. John Denzil","male",47,0,0,"237565",15.0000,,"S",,,"North Evington, England"
+2,0,"Jefferys, Mr. Clifford Thomas","male",24,2,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
+2,0,"Jefferys, Mr. Ernest Wilfred","male",22,2,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
+2,0,"Jenkin, Mr. Stephen Curnow","male",32,0,0,"C.A. 33111",10.5000,,"S",,,"St Ives, Cornwall / Houghton, MI"
+2,1,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)","female",23,0,0,"SC/AH Basle 541",13.7917,"D","C","11",,"New York, NY"
+2,0,"Kantor, Mr. Sinai","male",34,1,0,"244367",26.0000,,"S",,"283","Moscow / Bronx, NY"
+2,1,"Kantor, Mrs. Sinai (Miriam Sternin)","female",24,1,0,"244367",26.0000,,"S","12",,"Moscow / Bronx, NY"
+2,0,"Karnes, Mrs. J Frank (Claire Bennett)","female",22,0,0,"F.C.C. 13534",21.0000,,"S",,,"India / Pittsburgh, PA"
+2,1,"Keane, Miss. Nora A","female",,0,0,"226593",12.3500,"E101","Q","10",,"Harrisburg, PA"
+2,0,"Keane, Mr. Daniel","male",35,0,0,"233734",12.3500,,"Q",,,
+2,1,"Kelly, Mrs. Florence ""Fannie""","female",45,0,0,"223596",13.5000,,"S","9",,"London / New York, NY"
+2,0,"Kirkland, Rev. Charles Leonard","male",57,0,0,"219533",12.3500,,"Q",,,"Glasgow / Bangor, ME"
+2,0,"Knight, Mr. Robert J","male",,0,0,"239855",0.0000,,"S",,,"Belfast"
+2,0,"Kvillner, Mr. Johan Henrik Johannesson","male",31,0,0,"C.A. 18723",10.5000,,"S",,"165","Sweden / Arlington, NJ"
+2,0,"Lahtinen, Mrs. William (Anna Sylfven)","female",26,1,1,"250651",26.0000,,"S",,,"Minneapolis, MN"
+2,0,"Lahtinen, Rev. William","male",30,1,1,"250651",26.0000,,"S",,,"Minneapolis, MN"
+2,0,"Lamb, Mr. John Joseph","male",,0,0,"240261",10.7083,,"Q",,,
+2,1,"Laroche, Miss. Louise","female",1,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
+2,1,"Laroche, Miss. Simonne Marie Anne Andree","female",3,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
+2,0,"Laroche, Mr. Joseph Philippe Lemercier","male",25,1,2,"SC/Paris 2123",41.5792,,"C",,,"Paris / Haiti"
+2,1,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)","female",22,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
+2,1,"Lehmann, Miss. Bertha","female",17,0,0,"SC 1748",12.0000,,"C","12",,"Berne, Switzerland / Central City, IA"
+2,1,"Leitch, Miss. Jessie Wills","female",,0,0,"248727",33.0000,,"S","11",,"London / Chicago, IL"
+2,1,"Lemore, Mrs. (Amelia Milley)","female",34,0,0,"C.A. 34260",10.5000,"F33","S","14",,"Chicago, IL"
+2,0,"Levy, Mr. Rene Jacques","male",36,0,0,"SC/Paris 2163",12.8750,"D","C",,,"Montreal, PQ"
+2,0,"Leyson, Mr. Robert William Norman","male",24,0,0,"C.A. 29566",10.5000,,"S",,"108",
+2,0,"Lingane, Mr. John","male",61,0,0,"235509",12.3500,,"Q",,,
+2,0,"Louch, Mr. Charles Alexander","male",50,1,0,"SC/AH 3085",26.0000,,"S",,"121","Weston-Super-Mare, Somerset"
+2,1,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)","female",42,1,0,"SC/AH 3085",26.0000,,"S",,,"Weston-Super-Mare, Somerset"
+2,0,"Mack, Mrs. (Mary)","female",57,0,0,"S.O./P.P. 3",10.5000,"E77","S",,"52","Southampton / New York, NY"
+2,0,"Malachard, Mr. Noel","male",,0,0,"237735",15.0458,"D","C",,,"Paris"
+2,1,"Mallet, Master. Andre","male",1,0,2,"S.C./PARIS 2079",37.0042,,"C","10",,"Paris / Montreal, PQ"
+2,0,"Mallet, Mr. Albert","male",31,1,1,"S.C./PARIS 2079",37.0042,,"C",,,"Paris / Montreal, PQ"
+2,1,"Mallet, Mrs. Albert (Antoinette Magnin)","female",24,1,1,"S.C./PARIS 2079",37.0042,,"C","10",,"Paris / Montreal, PQ"
+2,0,"Mangiavacchi, Mr. Serafino Emilio","male",,0,0,"SC/A.3 2861",15.5792,,"C",,,"New York, NY"
+2,0,"Matthews, Mr. William John","male",30,0,0,"28228",13.0000,,"S",,,"St Austall, Cornwall"
+2,0,"Maybery, Mr. Frank Hubert","male",40,0,0,"239059",16.0000,,"S",,,"Weston-Super-Mare / Moose Jaw, SK"
+2,0,"McCrae, Mr. Arthur Gordon","male",32,0,0,"237216",13.5000,,"S",,"209","Sydney, Australia"
+2,0,"McCrie, Mr. James Matthew","male",30,0,0,"233478",13.0000,,"S",,,"Sarnia, ON"
+2,0,"McKane, Mr. Peter David","male",46,0,0,"28403",26.0000,,"S",,,"Rochester, NY"
+2,1,"Mellinger, Miss. Madeleine Violet","female",13,0,1,"250644",19.5000,,"S","14",,"England / Bennington, VT"
+2,1,"Mellinger, Mrs. (Elizabeth Anne Maidment)","female",41,0,1,"250644",19.5000,,"S","14",,"England / Bennington, VT"
+2,1,"Mellors, Mr. William John","male",19,0,0,"SW/PP 751",10.5000,,"S","B",,"Chelsea, London"
+2,0,"Meyer, Mr. August","male",39,0,0,"248723",13.0000,,"S",,,"Harrow-on-the-Hill, Middlesex"
+2,0,"Milling, Mr. Jacob Christian","male",48,0,0,"234360",13.0000,,"S",,"271","Copenhagen, Denmark"
+2,0,"Mitchell, Mr. Henry Michael","male",70,0,0,"C.A. 24580",10.5000,,"S",,,"Guernsey / Montclair, NJ and/or Toledo, Ohio"
+2,0,"Montvila, Rev. Juozas","male",27,0,0,"211536",13.0000,,"S",,,"Worcester, MA"
+2,0,"Moraweck, Dr. Ernest","male",54,0,0,"29011",14.0000,,"S",,,"Frankfort, KY"
+2,0,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")","male",39,0,0,"250655",26.0000,,"S",,,
+2,0,"Mudd, Mr. Thomas Charles","male",16,0,0,"S.O./P.P. 3",10.5000,,"S",,,"Halesworth, England"
+2,0,"Myles, Mr. Thomas Francis","male",62,0,0,"240276",9.6875,,"Q",,,"Cambridge, MA"
+2,0,"Nasser, Mr. Nicholas","male",32.5,1,0,"237736",30.0708,,"C",,"43","New York, NY"
+2,1,"Nasser, Mrs. Nicholas (Adele Achem)","female",14,1,0,"237736",30.0708,,"C",,,"New York, NY"
+2,1,"Navratil, Master. Edmond Roger","male",2,1,1,"230080",26.0000,"F2","S","D",,"Nice, France"
+2,1,"Navratil, Master. Michel M","male",3,1,1,"230080",26.0000,"F2","S","D",,"Nice, France"
+2,0,"Navratil, Mr. Michel (""Louis M Hoffman"")","male",36.5,0,2,"230080",26.0000,"F2","S",,"15","Nice, France"
+2,0,"Nesson, Mr. Israel","male",26,0,0,"244368",13.0000,"F2","S",,,"Boston, MA"
+2,0,"Nicholls, Mr. Joseph Charles","male",19,1,1,"C.A. 33112",36.7500,,"S",,"101","Cornwall / Hancock, MI"
+2,0,"Norman, Mr. Robert Douglas","male",28,0,0,"218629",13.5000,,"S",,"287","Glasgow"
+2,1,"Nourney, Mr. Alfred (""Baron von Drachstedt"")","male",20,0,0,"SC/PARIS 2166",13.8625,"D38","C","7",,"Cologne, Germany"
+2,1,"Nye, Mrs. (Elizabeth Ramell)","female",29,0,0,"C.A. 29395",10.5000,"F33","S","11",,"Folkstone, Kent / New York, NY"
+2,0,"Otter, Mr. Richard","male",39,0,0,"28213",13.0000,,"S",,,"Middleburg Heights, OH"
+2,1,"Oxenham, Mr. Percy Thomas","male",22,0,0,"W./C. 14260",10.5000,,"S","13",,"Pondersend, England / New Durham, NJ"
+2,1,"Padro y Manent, Mr. Julian","male",,0,0,"SC/PARIS 2146",13.8625,,"C","9",,"Spain / Havana, Cuba"
+2,0,"Pain, Dr. Alfred","male",23,0,0,"244278",10.5000,,"S",,,"Hamilton, ON"
+2,1,"Pallas y Castello, Mr. Emilio","male",29,0,0,"SC/PARIS 2147",13.8583,,"C","9",,"Spain / Havana, Cuba"
+2,0,"Parker, Mr. Clifford Richard","male",28,0,0,"SC 14888",10.5000,,"S",,,"St Andrews, Guernsey"
+2,0,"Parkes, Mr. Francis ""Frank""","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
+2,1,"Parrish, Mrs. (Lutie Davis)","female",50,0,1,"230433",26.0000,,"S","12",,"Woodford County, KY"
+2,0,"Pengelly, Mr. Frederick William","male",19,0,0,"28665",10.5000,,"S",,,"Gunnislake, England / Butte, MT"
+2,0,"Pernot, Mr. Rene","male",,0,0,"SC/PARIS 2131",15.0500,,"C",,,
+2,0,"Peruschitz, Rev. Joseph Maria","male",41,0,0,"237393",13.0000,,"S",,,
+2,1,"Phillips, Miss. Alice Frances Louisa","female",21,0,1,"S.O./P.P. 2",21.0000,,"S","12",,"Ilfracombe, Devon"
+2,1,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")","female",19,0,0,"250655",26.0000,,"S","11",,"Worcester, England"
+2,0,"Phillips, Mr. Escott Robert","male",43,0,1,"S.O./P.P. 2",21.0000,,"S",,,"Ilfracombe, Devon"
+2,1,"Pinsky, Mrs. (Rosa)","female",32,0,0,"234604",13.0000,,"S","9",,"Russia"
+2,0,"Ponesell, Mr. Martin","male",34,0,0,"250647",13.0000,,"S",,,"Denmark / New York, NY"
+2,1,"Portaluppi, Mr. Emilio Ilario Giuseppe","male",30,0,0,"C.A. 34644",12.7375,,"C","14",,"Milford, NH"
+2,0,"Pulbaum, Mr. Franz","male",27,0,0,"SC/PARIS 2168",15.0333,,"C",,,"Paris"
+2,1,"Quick, Miss. Phyllis May","female",2,1,1,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
+2,1,"Quick, Miss. Winifred Vera","female",8,1,1,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
+2,1,"Quick, Mrs. Frederick Charles (Jane Richards)","female",33,0,2,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
+2,0,"Reeves, Mr. David","male",36,0,0,"C.A. 17248",10.5000,,"S",,,"Brighton, Sussex"
+2,0,"Renouf, Mr. Peter Henry","male",34,1,0,"31027",21.0000,,"S","12",,"Elizabeth, NJ"
+2,1,"Renouf, Mrs. Peter Henry (Lillian Jefferys)","female",30,3,0,"31027",21.0000,,"S",,,"Elizabeth, NJ"
+2,1,"Reynaldo, Ms. Encarnacion","female",28,0,0,"230434",13.0000,,"S","9",,"Spain"
+2,0,"Richard, Mr. Emile","male",23,0,0,"SC/PARIS 2133",15.0458,,"C",,,"Paris / Montreal, PQ"
+2,1,"Richards, Master. George Sibley","male",0.83,1,1,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
+2,1,"Richards, Master. William Rowe","male",3,1,1,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
+2,1,"Richards, Mrs. Sidney (Emily Hocking)","female",24,2,3,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
+2,1,"Ridsdale, Miss. Lucy","female",50,0,0,"W./C. 14258",10.5000,,"S","13",,"London, England / Marietta, Ohio and Milwaukee, WI"
+2,0,"Rogers, Mr. Reginald Harry","male",19,0,0,"28004",10.5000,,"S",,,
+2,1,"Rugg, Miss. Emily","female",21,0,0,"C.A. 31026",10.5000,,"S","12",,"Guernsey / Wilmington, DE"
+2,0,"Schmidt, Mr. August","male",26,0,0,"248659",13.0000,,"S",,,"Newark, NJ"
+2,0,"Sedgwick, Mr. Charles Frederick Waddington","male",25,0,0,"244361",13.0000,,"S",,,"Liverpool"
+2,0,"Sharp, Mr. Percival James R","male",27,0,0,"244358",26.0000,,"S",,,"Hornsey, England"
+2,1,"Shelley, Mrs. William (Imanita Parrish Hall)","female",25,0,1,"230433",26.0000,,"S","12",,"Deer Lodge, MT"
+2,1,"Silven, Miss. Lyyli Karoliina","female",18,0,2,"250652",13.0000,,"S","16",,"Finland / Minneapolis, MN"
+2,1,"Sincock, Miss. Maude","female",20,0,0,"C.A. 33112",36.7500,,"S","11",,"Cornwall / Hancock, MI"
+2,1,"Sinkkonen, Miss. Anna","female",30,0,0,"250648",13.0000,,"S","10",,"Finland / Washington, DC"
+2,0,"Sjostedt, Mr. Ernst Adolf","male",59,0,0,"237442",13.5000,,"S",,,"Sault St Marie, ON"
+2,1,"Slayter, Miss. Hilda Mary","female",30,0,0,"234818",12.3500,,"Q","13",,"Halifax, NS"
+2,0,"Slemen, Mr. Richard James","male",35,0,0,"28206",10.5000,,"S",,,"Cornwall"
+2,1,"Smith, Miss. Marion Elsie","female",40,0,0,"31418",13.0000,,"S","9",,
+2,0,"Sobey, Mr. Samuel James Hayden","male",25,0,0,"C.A. 29178",13.0000,,"S",,,"Cornwall / Houghton, MI"
+2,0,"Stanton, Mr. Samuel Ward","male",41,0,0,"237734",15.0458,,"C",,,"New York, NY"
+2,0,"Stokes, Mr. Philip Joseph","male",25,0,0,"F.C.C. 13540",10.5000,,"S",,"81","Catford, Kent / Detroit, MI"
+2,0,"Swane, Mr. George","male",18.5,0,0,"248734",13.0000,"F","S",,"294",
+2,0,"Sweet, Mr. George Frederick","male",14,0,0,"220845",65.0000,,"S",,,"Somerset / Bernardsville, NJ"
+2,1,"Toomey, Miss. Ellen","female",50,0,0,"F.C.C. 13531",10.5000,,"S","9",,"Indianapolis, IN"
+2,0,"Troupiansky, Mr. Moses Aaron","male",23,0,0,"233639",13.0000,,"S",,,
+2,1,"Trout, Mrs. William H (Jessie L)","female",28,0,0,"240929",12.6500,,"S",,,"Columbus, OH"
+2,1,"Troutt, Miss. Edwina Celia ""Winnie""","female",27,0,0,"34218",10.5000,"E101","S","16",,"Bath, England / Massachusetts"
+2,0,"Turpin, Mr. William John Robert","male",29,1,0,"11668",21.0000,,"S",,,"Plymouth, England"
+2,0,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)","female",27,1,0,"11668",21.0000,,"S",,,"Plymouth, England"
+2,0,"Veal, Mr. James","male",40,0,0,"28221",13.0000,,"S",,,"Barre, Co Washington, VT"
+2,1,"Walcroft, Miss. Nellie","female",31,0,0,"F.C.C. 13528",21.0000,,"S","14",,"Mamaroneck, NY"
+2,0,"Ware, Mr. John James","male",30,1,0,"CA 31352",21.0000,,"S",,,"Bristol, England / New Britain, CT"
+2,0,"Ware, Mr. William Jeffery","male",23,1,0,"28666",10.5000,,"S",,,
+2,1,"Ware, Mrs. John James (Florence Louise Long)","female",31,0,0,"CA 31352",21.0000,,"S","10",,"Bristol, England / New Britain, CT"
+2,0,"Watson, Mr. Ennis Hastings","male",,0,0,"239856",0.0000,,"S",,,"Belfast"
+2,1,"Watt, Miss. Bertha J","female",12,0,0,"C.A. 33595",15.7500,,"S","9",,"Aberdeen / Portland, OR"
+2,1,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)","female",40,0,0,"C.A. 33595",15.7500,,"S","9",,"Aberdeen / Portland, OR"
+2,1,"Webber, Miss. Susan","female",32.5,0,0,"27267",13.0000,"E101","S","12",,"England / Hartford, CT"
+2,0,"Weisz, Mr. Leopold","male",27,1,0,"228414",26.0000,,"S",,"293","Bromsgrove, England / Montreal, PQ"
+2,1,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)","female",29,1,0,"228414",26.0000,,"S","10",,"Bromsgrove, England / Montreal, PQ"
+2,1,"Wells, Master. Ralph Lester","male",2,1,1,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
+2,1,"Wells, Miss. Joan","female",4,1,1,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
+2,1,"Wells, Mrs. Arthur Henry (""Addie"" Dart Trevaskis)","female",29,0,2,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
+2,1,"West, Miss. Barbara J","female",0.92,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
+2,1,"West, Miss. Constance Mirium","female",5,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
+2,0,"West, Mr. Edwy Arthur","male",36,1,2,"C.A. 34651",27.7500,,"S",,,"Bournmouth, England"
+2,1,"West, Mrs. Edwy Arthur (Ada Mary Worth)","female",33,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
+2,0,"Wheadon, Mr. Edward H","male",66,0,0,"C.A. 24579",10.5000,,"S",,,"Guernsey, England / Edgewood, RI"
+2,0,"Wheeler, Mr. Edwin ""Frederick""","male",,0,0,"SC/PARIS 2159",12.8750,,"S",,,
+2,1,"Wilhelms, Mr. Charles","male",31,0,0,"244270",13.0000,,"S","9",,"London, England"
+2,1,"Williams, Mr. Charles Eugene","male",,0,0,"244373",13.0000,,"S","14",,"Harrow, England"
+2,1,"Wright, Miss. Marion","female",26,0,0,"220844",13.5000,,"S","9",,"Yoevil, England / Cottage Grove, OR"
+2,0,"Yrois, Miss. Henriette (""Mrs Harbeck"")","female",24,0,0,"248747",13.0000,,"S",,,"Paris"
+3,0,"Abbing, Mr. Anthony","male",42,0,0,"C.A. 5547",7.5500,,"S",,,
+3,0,"Abbott, Master. Eugene Joseph","male",13,0,2,"C.A. 2673",20.2500,,"S",,,"East Providence, RI"
+3,0,"Abbott, Mr. Rossmore Edward","male",16,1,1,"C.A. 2673",20.2500,,"S",,"190","East Providence, RI"
+3,1,"Abbott, Mrs. Stanton (Rosa Hunt)","female",35,1,1,"C.A. 2673",20.2500,,"S","A",,"East Providence, RI"
+3,1,"Abelseth, Miss. Karen Marie","female",16,0,0,"348125",7.6500,,"S","16",,"Norway Los Angeles, CA"
+3,1,"Abelseth, Mr. Olaus Jorgensen","male",25,0,0,"348122",7.6500,"F G63","S","A",,"Perkins County, SD"
+3,1,"Abrahamsson, Mr. Abraham August Johannes","male",20,0,0,"SOTON/O2 3101284",7.9250,,"S","15",,"Taalintehdas, Finland Hoboken, NJ"
+3,1,"Abrahim, Mrs. Joseph (Sophie Halaut Easu)","female",18,0,0,"2657",7.2292,,"C","C",,"Greensburg, PA"
+3,0,"Adahl, Mr. Mauritz Nils Martin","male",30,0,0,"C 7076",7.2500,,"S",,"72","Asarum, Sweden Brooklyn, NY"
+3,0,"Adams, Mr. John","male",26,0,0,"341826",8.0500,,"S",,"103","Bournemouth, England"
+3,0,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)","female",40,1,0,"7546",9.4750,,"S",,,"Sweden Akeley, MN"
+3,1,"Aks, Master. Philip Frank","male",0.83,0,1,"392091",9.3500,,"S","11",,"London, England Norfolk, VA"
+3,1,"Aks, Mrs. Sam (Leah Rosen)","female",18,0,1,"392091",9.3500,,"S","13",,"London, England Norfolk, VA"
+3,1,"Albimona, Mr. Nassef Cassem","male",26,0,0,"2699",18.7875,,"C","15",,"Syria Fredericksburg, VA"
+3,0,"Alexander, Mr. William","male",26,0,0,"3474",7.8875,,"S",,,"England Albion, NY"
+3,0,"Alhomaki, Mr. Ilmari Rudolf","male",20,0,0,"SOTON/O2 3101287",7.9250,,"S",,,"Salo, Finland Astoria, OR"
+3,0,"Ali, Mr. Ahmed","male",24,0,0,"SOTON/O.Q. 3101311",7.0500,,"S",,,
+3,0,"Ali, Mr. William","male",25,0,0,"SOTON/O.Q. 3101312",7.0500,,"S",,"79","Argentina"
+3,0,"Allen, Mr. William Henry","male",35,0,0,"373450",8.0500,,"S",,,"Lower Clapton, Middlesex or Erdington, Birmingham"
+3,0,"Allum, Mr. Owen George","male",18,0,0,"2223",8.3000,,"S",,"259","Windsor, England New York, NY"
+3,0,"Andersen, Mr. Albert Karvin","male",32,0,0,"C 4001",22.5250,,"S",,"260","Bergen, Norway"
+3,1,"Andersen-Jensen, Miss. Carla Christine Nielsine","female",19,1,0,"350046",7.8542,,"S","16",,
+3,0,"Andersson, Master. Sigvard Harald Elias","male",4,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andersson, Miss. Ebba Iris Alfrida","female",6,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andersson, Miss. Ellis Anna Maria","female",2,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,1,"Andersson, Miss. Erna Alexandra","female",17,4,2,"3101281",7.9250,,"S","D",,"Ruotsinphyhtaa, Finland New York, NY"
+3,0,"Andersson, Miss. Ida Augusta Margareta","female",38,4,2,"347091",7.7750,,"S",,,"Vadsbro, Sweden Ministee, MI"
+3,0,"Andersson, Miss. Ingeborg Constanzia","female",9,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andersson, Miss. Sigrid Elisabeth","female",11,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andersson, Mr. Anders Johan","male",39,1,5,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,1,"Andersson, Mr. August Edvard (""Wennerstrom"")","male",27,0,0,"350043",7.7958,,"S","A",,
+3,0,"Andersson, Mr. Johan Samuel","male",26,0,0,"347075",7.7750,,"S",,,"Hartford, CT"
+3,0,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)","female",39,1,5,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
+3,0,"Andreasson, Mr. Paul Edvin","male",20,0,0,"347466",7.8542,,"S",,,"Sweden Chicago, IL"
+3,0,"Angheloff, Mr. Minko","male",26,0,0,"349202",7.8958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Arnold-Franchi, Mr. Josef","male",25,1,0,"349237",17.8000,,"S",,,"Altdorf, Switzerland"
+3,0,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)","female",18,1,0,"349237",17.8000,,"S",,,"Altdorf, Switzerland"
+3,0,"Aronsson, Mr. Ernst Axel Algot","male",24,0,0,"349911",7.7750,,"S",,,"Sweden Joliet, IL"
+3,0,"Asim, Mr. Adola","male",35,0,0,"SOTON/O.Q. 3101310",7.0500,,"S",,,
+3,0,"Asplund, Master. Carl Edgar","male",5,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
+3,0,"Asplund, Master. Clarence Gustaf Hugo","male",9,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
+3,1,"Asplund, Master. Edvin Rojj Felix","male",3,4,2,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
+3,0,"Asplund, Master. Filip Oscar","male",13,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
+3,1,"Asplund, Miss. Lillian Gertrud","female",5,4,2,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
+3,0,"Asplund, Mr. Carl Oscar Vilhelm Gustafsson","male",40,1,5,"347077",31.3875,,"S",,"142","Sweden Worcester, MA"
+3,1,"Asplund, Mr. Johan Charles","male",23,0,0,"350054",7.7958,,"S","13",,"Oskarshamn, Sweden Minneapolis, MN"
+3,1,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)","female",38,1,5,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
+3,1,"Assaf Khalil, Mrs. Mariana (""Miriam"")","female",45,0,0,"2696",7.2250,,"C","C",,"Ottawa, ON"
+3,0,"Assaf, Mr. Gerios","male",21,0,0,"2692",7.2250,,"C",,,"Ottawa, ON"
+3,0,"Assam, Mr. Ali","male",23,0,0,"SOTON/O.Q. 3101309",7.0500,,"S",,,
+3,0,"Attalah, Miss. Malake","female",17,0,0,"2627",14.4583,,"C",,,
+3,0,"Attalah, Mr. Sleiman","male",30,0,0,"2694",7.2250,,"C",,,"Ottawa, ON"
+3,0,"Augustsson, Mr. Albert","male",23,0,0,"347468",7.8542,,"S",,,"Krakoryd, Sweden Bloomington, IL"
+3,1,"Ayoub, Miss. Banoura","female",13,0,0,"2687",7.2292,,"C","C",,"Syria Youngstown, OH"
+3,0,"Baccos, Mr. Raffull","male",20,0,0,"2679",7.2250,,"C",,,
+3,0,"Backstrom, Mr. Karl Alfred","male",32,1,0,"3101278",15.8500,,"S","D",,"Ruotsinphytaa, Finland New York, NY"
+3,1,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)","female",33,3,0,"3101278",15.8500,,"S",,,"Ruotsinphytaa, Finland New York, NY"
+3,1,"Baclini, Miss. Eugenie","female",0.75,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
+3,1,"Baclini, Miss. Helene Barbara","female",0.75,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
+3,1,"Baclini, Miss. Marie Catherine","female",5,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
+3,1,"Baclini, Mrs. Solomon (Latifa Qurban)","female",24,0,3,"2666",19.2583,,"C","C",,"Syria New York, NY"
+3,1,"Badman, Miss. Emily Louisa","female",18,0,0,"A/4 31416",8.0500,,"S","C",,"London Skanteales, NY"
+3,0,"Badt, Mr. Mohamed","male",40,0,0,"2623",7.2250,,"C",,,
+3,0,"Balkic, Mr. Cerin","male",26,0,0,"349248",7.8958,,"S",,,
+3,1,"Barah, Mr. Hanna Assi","male",20,0,0,"2663",7.2292,,"C","15",,
+3,0,"Barbara, Miss. Saiide","female",18,0,1,"2691",14.4542,,"C",,,"Syria Ottawa, ON"
+3,0,"Barbara, Mrs. (Catherine David)","female",45,0,1,"2691",14.4542,,"C",,,"Syria Ottawa, ON"
+3,0,"Barry, Miss. Julia","female",27,0,0,"330844",7.8792,,"Q",,,"New York, NY"
+3,0,"Barton, Mr. David John","male",22,0,0,"324669",8.0500,,"S",,,"England New York, NY"
+3,0,"Beavan, Mr. William Thomas","male",19,0,0,"323951",8.0500,,"S",,,"England"
+3,0,"Bengtsson, Mr. John Viktor","male",26,0,0,"347068",7.7750,,"S",,,"Krakudden, Sweden Moune, IL"
+3,0,"Berglund, Mr. Karl Ivar Sven","male",22,0,0,"PP 4348",9.3500,,"S",,,"Tranvik, Finland New York"
+3,0,"Betros, Master. Seman","male",,0,0,"2622",7.2292,,"C",,,
+3,0,"Betros, Mr. Tannous","male",20,0,0,"2648",4.0125,,"C",,,"Syria"
+3,1,"Bing, Mr. Lee","male",32,0,0,"1601",56.4958,,"S","C",,"Hong Kong New York, NY"
+3,0,"Birkeland, Mr. Hans Martin Monsen","male",21,0,0,"312992",7.7750,,"S",,,"Brennes, Norway New York"
+3,0,"Bjorklund, Mr. Ernst Herbert","male",18,0,0,"347090",7.7500,,"S",,,"Stockholm, Sweden New York"
+3,0,"Bostandyeff, Mr. Guentcho","male",26,0,0,"349224",7.8958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Boulos, Master. Akar","male",6,1,1,"2678",15.2458,,"C",,,"Syria Kent, ON"
+3,0,"Boulos, Miss. Nourelain","female",9,1,1,"2678",15.2458,,"C",,,"Syria Kent, ON"
+3,0,"Boulos, Mr. Hanna","male",,0,0,"2664",7.2250,,"C",,,"Syria"
+3,0,"Boulos, Mrs. Joseph (Sultana)","female",,0,2,"2678",15.2458,,"C",,,"Syria Kent, ON"
+3,0,"Bourke, Miss. Mary","female",,0,2,"364848",7.7500,,"Q",,,"Ireland Chicago, IL"
+3,0,"Bourke, Mr. John","male",40,1,1,"364849",15.5000,,"Q",,,"Ireland Chicago, IL"
+3,0,"Bourke, Mrs. John (Catherine)","female",32,1,1,"364849",15.5000,,"Q",,,"Ireland Chicago, IL"
+3,0,"Bowen, Mr. David John ""Dai""","male",21,0,0,"54636",16.1000,,"S",,,"Treherbert, Cardiff, Wales"
+3,1,"Bradley, Miss. Bridget Delia","female",22,0,0,"334914",7.7250,,"Q","13",,"Kingwilliamstown, Co Cork, Ireland Glens Falls, NY"
+3,0,"Braf, Miss. Elin Ester Maria","female",20,0,0,"347471",7.8542,,"S",,,"Medeltorp, Sweden Chicago, IL"
+3,0,"Braund, Mr. Lewis Richard","male",29,1,0,"3460",7.0458,,"S",,,"Bridgerule, Devon"
+3,0,"Braund, Mr. Owen Harris","male",22,1,0,"A/5 21171",7.2500,,"S",,,"Bridgerule, Devon"
+3,0,"Brobeck, Mr. Karl Rudolf","male",22,0,0,"350045",7.7958,,"S",,,"Sweden Worcester, MA"
+3,0,"Brocklebank, Mr. William Alfred","male",35,0,0,"364512",8.0500,,"S",,,"Broomfield, Chelmsford, England"
+3,0,"Buckley, Miss. Katherine","female",18.5,0,0,"329944",7.2833,,"Q",,"299","Co Cork, Ireland Roxbury, MA"
+3,1,"Buckley, Mr. Daniel","male",21,0,0,"330920",7.8208,,"Q","13",,"Kingwilliamstown, Co Cork, Ireland New York, NY"
+3,0,"Burke, Mr. Jeremiah","male",19,0,0,"365222",6.7500,,"Q",,,"Co Cork, Ireland Charlestown, MA"
+3,0,"Burns, Miss. Mary Delia","female",18,0,0,"330963",7.8792,,"Q",,,"Co Sligo, Ireland New York, NY"
+3,0,"Cacic, Miss. Manda","female",21,0,0,"315087",8.6625,,"S",,,
+3,0,"Cacic, Miss. Marija","female",30,0,0,"315084",8.6625,,"S",,,
+3,0,"Cacic, Mr. Jego Grga","male",18,0,0,"315091",8.6625,,"S",,,
+3,0,"Cacic, Mr. Luka","male",38,0,0,"315089",8.6625,,"S",,,"Croatia"
+3,0,"Calic, Mr. Jovo","male",17,0,0,"315093",8.6625,,"S",,,
+3,0,"Calic, Mr. Petar","male",17,0,0,"315086",8.6625,,"S",,,
+3,0,"Canavan, Miss. Mary","female",21,0,0,"364846",7.7500,,"Q",,,
+3,0,"Canavan, Mr. Patrick","male",21,0,0,"364858",7.7500,,"Q",,,"Ireland Philadelphia, PA"
+3,0,"Cann, Mr. Ernest Charles","male",21,0,0,"A./5. 2152",8.0500,,"S",,,
+3,0,"Caram, Mr. Joseph","male",,1,0,"2689",14.4583,,"C",,,"Ottawa, ON"
+3,0,"Caram, Mrs. Joseph (Maria Elias)","female",,1,0,"2689",14.4583,,"C",,,"Ottawa, ON"
+3,0,"Carlsson, Mr. August Sigfrid","male",28,0,0,"350042",7.7958,,"S",,,"Dagsas, Sweden Fower, MN"
+3,0,"Carlsson, Mr. Carl Robert","male",24,0,0,"350409",7.8542,,"S",,,"Goteborg, Sweden Huntley, IL"
+3,1,"Carr, Miss. Helen ""Ellen""","female",16,0,0,"367231",7.7500,,"Q","16",,"Co Longford, Ireland New York, NY"
+3,0,"Carr, Miss. Jeannie","female",37,0,0,"368364",7.7500,,"Q",,,"Co Sligo, Ireland Hartford, CT"
+3,0,"Carver, Mr. Alfred John","male",28,0,0,"392095",7.2500,,"S",,,"St Denys, Southampton, Hants"
+3,0,"Celotti, Mr. Francesco","male",24,0,0,"343275",8.0500,,"S",,,"London"
+3,0,"Charters, Mr. David","male",21,0,0,"A/5. 13032",7.7333,,"Q",,,"Ireland New York, NY"
+3,1,"Chip, Mr. Chang","male",32,0,0,"1601",56.4958,,"S","C",,"Hong Kong New York, NY"
+3,0,"Christmann, Mr. Emil","male",29,0,0,"343276",8.0500,,"S",,,
+3,0,"Chronopoulos, Mr. Apostolos","male",26,1,0,"2680",14.4542,,"C",,,"Greece"
+3,0,"Chronopoulos, Mr. Demetrios","male",18,1,0,"2680",14.4542,,"C",,,"Greece"
+3,0,"Coelho, Mr. Domingos Fernandeo","male",20,0,0,"SOTON/O.Q. 3101307",7.0500,,"S",,,"Portugal"
+3,1,"Cohen, Mr. Gurshon ""Gus""","male",18,0,0,"A/5 3540",8.0500,,"S","12",,"London Brooklyn, NY"
+3,0,"Colbert, Mr. Patrick","male",24,0,0,"371109",7.2500,,"Q",,,"Co Limerick, Ireland Sherbrooke, PQ"
+3,0,"Coleff, Mr. Peju","male",36,0,0,"349210",7.4958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Coleff, Mr. Satio","male",24,0,0,"349209",7.4958,,"S",,,
+3,0,"Conlon, Mr. Thomas Henry","male",31,0,0,"21332",7.7333,,"Q",,,"Philadelphia, PA"
+3,0,"Connaghton, Mr. Michael","male",31,0,0,"335097",7.7500,,"Q",,,"Ireland Brooklyn, NY"
+3,1,"Connolly, Miss. Kate","female",22,0,0,"370373",7.7500,,"Q","13",,"Ireland"
+3,0,"Connolly, Miss. Kate","female",30,0,0,"330972",7.6292,,"Q",,,"Ireland"
+3,0,"Connors, Mr. Patrick","male",70.5,0,0,"370369",7.7500,,"Q",,"171",
+3,0,"Cook, Mr. Jacob","male",43,0,0,"A/5 3536",8.0500,,"S",,,
+3,0,"Cor, Mr. Bartol","male",35,0,0,"349230",7.8958,,"S",,,"Austria"
+3,0,"Cor, Mr. Ivan","male",27,0,0,"349229",7.8958,,"S",,,"Austria"
+3,0,"Cor, Mr. Liudevit","male",19,0,0,"349231",7.8958,,"S",,,"Austria"
+3,0,"Corn, Mr. Harry","male",30,0,0,"SOTON/OQ 392090",8.0500,,"S",,,"London"
+3,1,"Coutts, Master. Eden Leslie ""Neville""","male",9,1,1,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
+3,1,"Coutts, Master. William Loch ""William""","male",3,1,1,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
+3,1,"Coutts, Mrs. William (Winnie ""Minnie"" Treanor)","female",36,0,2,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
+3,0,"Coxon, Mr. Daniel","male",59,0,0,"364500",7.2500,,"S",,,"Merrill, WI"
+3,0,"Crease, Mr. Ernest James","male",19,0,0,"S.P. 3464",8.1583,,"S",,,"Bristol, England Cleveland, OH"
+3,1,"Cribb, Miss. Laura Alice","female",17,0,1,"371362",16.1000,,"S","12",,"Bournemouth, England Newark, NJ"
+3,0,"Cribb, Mr. John Hatfield","male",44,0,1,"371362",16.1000,,"S",,,"Bournemouth, England Newark, NJ"
+3,0,"Culumovic, Mr. Jeso","male",17,0,0,"315090",8.6625,,"S",,,"Austria-Hungary"
+3,0,"Daher, Mr. Shedid","male",22.5,0,0,"2698",7.2250,,"C",,"9",
+3,1,"Dahl, Mr. Karl Edwart","male",45,0,0,"7598",8.0500,,"S","15",,"Australia Fingal, ND"
+3,0,"Dahlberg, Miss. Gerda Ulrika","female",22,0,0,"7552",10.5167,,"S",,,"Norrlot, Sweden Chicago, IL"
+3,0,"Dakic, Mr. Branko","male",19,0,0,"349228",10.1708,,"S",,,"Austria"
+3,1,"Daly, Miss. Margaret Marcella ""Maggie""","female",30,0,0,"382650",6.9500,,"Q","15",,"Co Athlone, Ireland New York, NY"
+3,1,"Daly, Mr. Eugene Patrick","male",29,0,0,"382651",7.7500,,"Q","13 15 B",,"Co Athlone, Ireland New York, NY"
+3,0,"Danbom, Master. Gilbert Sigvard Emanuel","male",0.33,0,2,"347080",14.4000,,"S",,,"Stanton, IA"
+3,0,"Danbom, Mr. Ernst Gilbert","male",34,1,1,"347080",14.4000,,"S",,"197","Stanton, IA"
+3,0,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)","female",28,1,1,"347080",14.4000,,"S",,,"Stanton, IA"
+3,0,"Danoff, Mr. Yoto","male",27,0,0,"349219",7.8958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Dantcheff, Mr. Ristiu","male",25,0,0,"349203",7.8958,,"S",,,"Bulgaria Chicago, IL"
+3,0,"Davies, Mr. Alfred J","male",24,2,0,"A/4 48871",24.1500,,"S",,,"West Bromwich, England Pontiac, MI"
+3,0,"Davies, Mr. Evan","male",22,0,0,"SC/A4 23568",8.0500,,"S",,,
+3,0,"Davies, Mr. John Samuel","male",21,2,0,"A/4 48871",24.1500,,"S",,,"West Bromwich, England Pontiac, MI"
+3,0,"Davies, Mr. Joseph","male",17,2,0,"A/4 48873",8.0500,,"S",,,"West Bromwich, England Pontiac, MI"
+3,0,"Davison, Mr. Thomas Henry","male",,1,0,"386525",16.1000,,"S",,,"Liverpool, England Bedford, OH"
+3,1,"Davison, Mrs. Thomas Henry (Mary E Finck)","female",,1,0,"386525",16.1000,,"S","16",,"Liverpool, England Bedford, OH"
+3,1,"de Messemaeker, Mr. Guillaume Joseph","male",36.5,1,0,"345572",17.4000,,"S","15",,"Tampico, MT"
+3,1,"de Messemaeker, Mrs. Guillaume Joseph (Emma)","female",36,1,0,"345572",17.4000,,"S","13",,"Tampico, MT"
+3,1,"de Mulder, Mr. Theodore","male",30,0,0,"345774",9.5000,,"S","11",,"Belgium Detroit, MI"
+3,0,"de Pelsmaeker, Mr. Alfons","male",16,0,0,"345778",9.5000,,"S",,,
+3,1,"Dean, Master. Bertram Vere","male",1,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
+3,1,"Dean, Miss. Elizabeth Gladys ""Millvina""","female",0.17,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
+3,0,"Dean, Mr. Bertram Frank","male",26,1,2,"C.A. 2315",20.5750,,"S",,,"Devon, England Wichita, KS"
+3,1,"Dean, Mrs. Bertram (Eva Georgetta Light)","female",33,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
+3,0,"Delalic, Mr. Redjo","male",25,0,0,"349250",7.8958,,"S",,,
+3,0,"Demetri, Mr. Marinko","male",,0,0,"349238",7.8958,,"S",,,
+3,0,"Denkoff, Mr. Mitto","male",,0,0,"349225",7.8958,,"S",,,"Bulgaria Coon Rapids, IA"
+3,0,"Dennis, Mr. Samuel","male",22,0,0,"A/5 21172",7.2500,,"S",,,
+3,0,"Dennis, Mr. William","male",36,0,0,"A/5 21175",7.2500,,"S",,,
+3,1,"Devaney, Miss. Margaret Delia","female",19,0,0,"330958",7.8792,,"Q","C",,"Kilmacowen, Co Sligo, Ireland New York, NY"
+3,0,"Dika, Mr. Mirko","male",17,0,0,"349232",7.8958,,"S",,,
+3,0,"Dimic, Mr. Jovan","male",42,0,0,"315088",8.6625,,"S",,,
+3,0,"Dintcheff, Mr. Valtcho","male",43,0,0,"349226",7.8958,,"S",,,
+3,0,"Doharr, Mr. Tannous","male",,0,0,"2686",7.2292,,"C",,,
+3,0,"Dooley, Mr. Patrick","male",32,0,0,"370376",7.7500,,"Q",,,"Ireland New York, NY"
+3,1,"Dorking, Mr. Edward Arthur","male",19,0,0,"A/5. 10482",8.0500,,"S","B",,"England Oglesby, IL"
+3,1,"Dowdell, Miss. Elizabeth","female",30,0,0,"364516",12.4750,,"S","13",,"Union Hill, NJ"
+3,0,"Doyle, Miss. Elizabeth","female",24,0,0,"368702",7.7500,,"Q",,,"Ireland New York, NY"
+3,1,"Drapkin, Miss. Jennie","female",23,0,0,"SOTON/OQ 392083",8.0500,,"S",,,"London New York, NY"
+3,0,"Drazenoic, Mr. Jozef","male",33,0,0,"349241",7.8958,,"C",,"51","Austria Niagara Falls, NY"
+3,0,"Duane, Mr. Frank","male",65,0,0,"336439",7.7500,,"Q",,,
+3,1,"Duquemin, Mr. Joseph","male",24,0,0,"S.O./P.P. 752",7.5500,,"S","D",,"England Albion, NY"
+3,0,"Dyker, Mr. Adolf Fredrik","male",23,1,0,"347072",13.9000,,"S",,,"West Haven, CT"
+3,1,"Dyker, Mrs. Adolf Fredrik (Anna Elisabeth Judith Andersson)","female",22,1,0,"347072",13.9000,,"S","16",,"West Haven, CT"
+3,0,"Edvardsson, Mr. Gustaf Hjalmar","male",18,0,0,"349912",7.7750,,"S",,,"Tofta, Sweden Joliet, IL"
+3,0,"Eklund, Mr. Hans Linus","male",16,0,0,"347074",7.7750,,"S",,,"Karberg, Sweden Jerome Junction, AZ"
+3,0,"Ekstrom, Mr. Johan","male",45,0,0,"347061",6.9750,,"S",,,"Effington Rut, SD"
+3,0,"Elias, Mr. Dibo","male",,0,0,"2674",7.2250,,"C",,,
+3,0,"Elias, Mr. Joseph","male",39,0,2,"2675",7.2292,,"C",,,"Syria Ottawa, ON"
+3,0,"Elias, Mr. Joseph Jr","male",17,1,1,"2690",7.2292,,"C",,,
+3,0,"Elias, Mr. Tannous","male",15,1,1,"2695",7.2292,,"C",,,"Syria"
+3,0,"Elsbury, Mr. William James","male",47,0,0,"A/5 3902",7.2500,,"S",,,"Illinois, USA"
+3,1,"Emanuel, Miss. Virginia Ethel","female",5,0,0,"364516",12.4750,,"S","13",,"New York, NY"
+3,0,"Emir, Mr. Farred Chehab","male",,0,0,"2631",7.2250,,"C",,,
+3,0,"Everett, Mr. Thomas James","male",40.5,0,0,"C.A. 6212",15.1000,,"S",,"187",
+3,0,"Farrell, Mr. James","male",40.5,0,0,"367232",7.7500,,"Q",,"68","Aughnacliff, Co Longford, Ireland New York, NY"
+3,1,"Finoli, Mr. Luigi","male",,0,0,"SOTON/O.Q. 3101308",7.0500,,"S","15",,"Italy Philadelphia, PA"
+3,0,"Fischer, Mr. Eberhard Thelander","male",18,0,0,"350036",7.7958,,"S",,,
+3,0,"Fleming, Miss. Honora","female",,0,0,"364859",7.7500,,"Q",,,
+3,0,"Flynn, Mr. James","male",,0,0,"364851",7.7500,,"Q",,,
+3,0,"Flynn, Mr. John","male",,0,0,"368323",6.9500,,"Q",,,
+3,0,"Foley, Mr. Joseph","male",26,0,0,"330910",7.8792,,"Q",,,"Ireland Chicago, IL"
+3,0,"Foley, Mr. William","male",,0,0,"365235",7.7500,,"Q",,,"Ireland"
+3,1,"Foo, Mr. Choong","male",,0,0,"1601",56.4958,,"S","13",,"Hong Kong New York, NY"
+3,0,"Ford, Miss. Doolina Margaret ""Daisy""","female",21,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Ford, Miss. Robina Maggie ""Ruby""","female",9,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Ford, Mr. Arthur","male",,0,0,"A/5 1478",8.0500,,"S",,,"Bridgwater, Somerset, England"
+3,0,"Ford, Mr. Edward Watson","male",18,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Ford, Mr. William Neal","male",16,1,3,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Ford, Mrs. Edward (Margaret Ann Watson)","female",48,1,3,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
+3,0,"Fox, Mr. Patrick","male",,0,0,"368573",7.7500,,"Q",,,"Ireland New York, NY"
+3,0,"Franklin, Mr. Charles (Charles Fardon)","male",,0,0,"SOTON/O.Q. 3101314",7.2500,,"S",,,
+3,0,"Gallagher, Mr. Martin","male",25,0,0,"36864",7.7417,,"Q",,,"New York, NY"
+3,0,"Garfirth, Mr. John","male",,0,0,"358585",14.5000,,"S",,,
+3,0,"Gheorgheff, Mr. Stanio","male",,0,0,"349254",7.8958,,"C",,,
+3,0,"Gilinski, Mr. Eliezer","male",22,0,0,"14973",8.0500,,"S",,"47",
+3,1,"Gilnagh, Miss. Katherine ""Katie""","female",16,0,0,"35851",7.7333,,"Q","16",,"Co Longford, Ireland New York, NY"
+3,1,"Glynn, Miss. Mary Agatha","female",,0,0,"335677",7.7500,,"Q","13",,"Co Clare, Ireland Washington, DC"
+3,1,"Goldsmith, Master. Frank John William ""Frankie""","male",9,0,2,"363291",20.5250,,"S","C D",,"Strood, Kent, England Detroit, MI"
+3,0,"Goldsmith, Mr. Frank John","male",33,1,1,"363291",20.5250,,"S",,,"Strood, Kent, England Detroit, MI"
+3,0,"Goldsmith, Mr. Nathan","male",41,0,0,"SOTON/O.Q. 3101263",7.8500,,"S",,,"Philadelphia, PA"
+3,1,"Goldsmith, Mrs. Frank John (Emily Alice Brown)","female",31,1,1,"363291",20.5250,,"S","C D",,"Strood, Kent, England Detroit, MI"
+3,0,"Goncalves, Mr. Manuel Estanslas","male",38,0,0,"SOTON/O.Q. 3101306",7.0500,,"S",,,"Portugal"
+3,0,"Goodwin, Master. Harold Victor","male",9,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Master. Sidney Leonard","male",1,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Master. William Frederick","male",11,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Miss. Jessie Allis","female",10,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Miss. Lillian Amy","female",16,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Mr. Charles Edward","male",14,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Mr. Charles Frederick","male",40,1,6,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Goodwin, Mrs. Frederick (Augusta Tyler)","female",43,1,6,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
+3,0,"Green, Mr. George Henry","male",51,0,0,"21440",8.0500,,"S",,,"Dorking, Surrey, England"
+3,0,"Gronnestad, Mr. Daniel Danielsen","male",32,0,0,"8471",8.3625,,"S",,,"Foresvik, Norway Portland, ND"
+3,0,"Guest, Mr. Robert","male",,0,0,"376563",8.0500,,"S",,,
+3,0,"Gustafsson, Mr. Alfred Ossian","male",20,0,0,"7534",9.8458,,"S",,,"Waukegan, Chicago, IL"
+3,0,"Gustafsson, Mr. Anders Vilhelm","male",37,2,0,"3101276",7.9250,,"S",,"98","Ruotsinphytaa, Finland New York, NY"
+3,0,"Gustafsson, Mr. Johan Birger","male",28,2,0,"3101277",7.9250,,"S",,,"Ruotsinphytaa, Finland New York, NY"
+3,0,"Gustafsson, Mr. Karl Gideon","male",19,0,0,"347069",7.7750,,"S",,,"Myren, Sweden New York, NY"
+3,0,"Haas, Miss. Aloisia","female",24,0,0,"349236",8.8500,,"S",,,
+3,0,"Hagardon, Miss. Kate","female",17,0,0,"AQ/3. 30631",7.7333,,"Q",,,
+3,0,"Hagland, Mr. Ingvald Olai Olsen","male",,1,0,"65303",19.9667,,"S",,,
+3,0,"Hagland, Mr. Konrad Mathias Reiersen","male",,1,0,"65304",19.9667,,"S",,,
+3,0,"Hakkarainen, Mr. Pekka Pietari","male",28,1,0,"STON/O2. 3101279",15.8500,,"S",,,
+3,1,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)","female",24,1,0,"STON/O2. 3101279",15.8500,,"S","15",,
+3,0,"Hampe, Mr. Leon","male",20,0,0,"345769",9.5000,,"S",,,
+3,0,"Hanna, Mr. Mansour","male",23.5,0,0,"2693",7.2292,,"C",,"188",
+3,0,"Hansen, Mr. Claus Peter","male",41,2,0,"350026",14.1083,,"S",,,
+3,0,"Hansen, Mr. Henrik Juul","male",26,1,0,"350025",7.8542,,"S",,,
+3,0,"Hansen, Mr. Henry Damsgaard","male",21,0,0,"350029",7.8542,,"S",,"69",
+3,1,"Hansen, Mrs. Claus Peter (Jennie L Howard)","female",45,1,0,"350026",14.1083,,"S","11",,
+3,0,"Harknett, Miss. Alice Phoebe","female",,0,0,"W./C. 6609",7.5500,,"S",,,
+3,0,"Harmer, Mr. Abraham (David Lishin)","male",25,0,0,"374887",7.2500,,"S","B",,
+3,0,"Hart, Mr. Henry","male",,0,0,"394140",6.8583,,"Q",,,
+3,0,"Hassan, Mr. Houssein G N","male",11,0,0,"2699",18.7875,,"C",,,
+3,1,"Healy, Miss. Hanora ""Nora""","female",,0,0,"370375",7.7500,,"Q","16",,
+3,1,"Hedman, Mr. Oskar Arvid","male",27,0,0,"347089",6.9750,,"S","15",,
+3,1,"Hee, Mr. Ling","male",,0,0,"1601",56.4958,,"S","C",,
+3,0,"Hegarty, Miss. Hanora ""Nora""","female",18,0,0,"365226",6.7500,,"Q",,,
+3,1,"Heikkinen, Miss. Laina","female",26,0,0,"STON/O2. 3101282",7.9250,,"S",,,
+3,0,"Heininen, Miss. Wendla Maria","female",23,0,0,"STON/O2. 3101290",7.9250,,"S",,,
+3,1,"Hellstrom, Miss. Hilda Maria","female",22,0,0,"7548",8.9625,,"S","C",,
+3,0,"Hendekovic, Mr. Ignjac","male",28,0,0,"349243",7.8958,,"S",,"306",
+3,0,"Henriksson, Miss. Jenny Lovisa","female",28,0,0,"347086",7.7750,,"S",,,
+3,0,"Henry, Miss. Delia","female",,0,0,"382649",7.7500,,"Q",,,
+3,1,"Hirvonen, Miss. Hildur E","female",2,0,1,"3101298",12.2875,,"S","15",,
+3,1,"Hirvonen, Mrs. Alexander (Helga E Lindqvist)","female",22,1,1,"3101298",12.2875,,"S","15",,
+3,0,"Holm, Mr. John Fredrik Alexander","male",43,0,0,"C 7075",6.4500,,"S",,,
+3,0,"Holthen, Mr. Johan Martin","male",28,0,0,"C 4001",22.5250,,"S",,,
+3,1,"Honkanen, Miss. Eliina","female",27,0,0,"STON/O2. 3101283",7.9250,,"S",,,
+3,0,"Horgan, Mr. John","male",,0,0,"370377",7.7500,,"Q",,,
+3,1,"Howard, Miss. May Elizabeth","female",,0,0,"A. 2. 39186",8.0500,,"S","C",,
+3,0,"Humblen, Mr. Adolf Mathias Nicolai Olsen","male",42,0,0,"348121",7.6500,"F G63","S",,"120",
+3,1,"Hyman, Mr. Abraham","male",,0,0,"3470",7.8875,,"S","C",,
+3,0,"Ibrahim Shawah, Mr. Yousseff","male",30,0,0,"2685",7.2292,,"C",,,
+3,0,"Ilieff, Mr. Ylio","male",,0,0,"349220",7.8958,,"S",,,
+3,0,"Ilmakangas, Miss. Ida Livija","female",27,1,0,"STON/O2. 3101270",7.9250,,"S",,,
+3,0,"Ilmakangas, Miss. Pieta Sofia","female",25,1,0,"STON/O2. 3101271",7.9250,,"S",,,
+3,0,"Ivanoff, Mr. Kanio","male",,0,0,"349201",7.8958,,"S",,,
+3,1,"Jalsevac, Mr. Ivan","male",29,0,0,"349240",7.8958,,"C","15",,
+3,1,"Jansson, Mr. Carl Olof","male",21,0,0,"350034",7.7958,,"S","A",,
+3,0,"Jardin, Mr. Jose Neto","male",,0,0,"SOTON/O.Q. 3101305",7.0500,,"S",,,
+3,0,"Jensen, Mr. Hans Peder","male",20,0,0,"350050",7.8542,,"S",,,
+3,0,"Jensen, Mr. Niels Peder","male",48,0,0,"350047",7.8542,,"S",,,
+3,0,"Jensen, Mr. Svend Lauritz","male",17,1,0,"350048",7.0542,,"S",,,
+3,1,"Jermyn, Miss. Annie","female",,0,0,"14313",7.7500,,"Q","D",,
+3,1,"Johannesen-Bratthammer, Mr. Bernt","male",,0,0,"65306",8.1125,,"S","13",,
+3,0,"Johanson, Mr. Jakob Alfred","male",34,0,0,"3101264",6.4958,,"S",,"143",
+3,1,"Johansson Palmquist, Mr. Oskar Leander","male",26,0,0,"347070",7.7750,,"S","15",,
+3,0,"Johansson, Mr. Erik","male",22,0,0,"350052",7.7958,,"S",,"156",
+3,0,"Johansson, Mr. Gustaf Joel","male",33,0,0,"7540",8.6542,,"S",,"285",
+3,0,"Johansson, Mr. Karl Johan","male",31,0,0,"347063",7.7750,,"S",,,
+3,0,"Johansson, Mr. Nils","male",29,0,0,"347467",7.8542,,"S",,,
+3,1,"Johnson, Master. Harold Theodor","male",4,1,1,"347742",11.1333,,"S","15",,
+3,1,"Johnson, Miss. Eleanor Ileen","female",1,1,1,"347742",11.1333,,"S","15",,
+3,0,"Johnson, Mr. Alfred","male",49,0,0,"LINE",0.0000,,"S",,,
+3,0,"Johnson, Mr. Malkolm Joackim","male",33,0,0,"347062",7.7750,,"S",,"37",
+3,0,"Johnson, Mr. William Cahoone Jr","male",19,0,0,"LINE",0.0000,,"S",,,
+3,1,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)","female",27,0,2,"347742",11.1333,,"S","15",,
+3,0,"Johnston, Master. William Arthur ""Willie""","male",,1,2,"W./C. 6607",23.4500,,"S",,,
+3,0,"Johnston, Miss. Catherine Helen ""Carrie""","female",,1,2,"W./C. 6607",23.4500,,"S",,,
+3,0,"Johnston, Mr. Andrew G","male",,1,2,"W./C. 6607",23.4500,,"S",,,
+3,0,"Johnston, Mrs. Andrew G (Elizabeth ""Lily"" Watson)","female",,1,2,"W./C. 6607",23.4500,,"S",,,
+3,0,"Jonkoff, Mr. Lalio","male",23,0,0,"349204",7.8958,,"S",,,
+3,1,"Jonsson, Mr. Carl","male",32,0,0,"350417",7.8542,,"S","15",,
+3,0,"Jonsson, Mr. Nils Hilding","male",27,0,0,"350408",7.8542,,"S",,,
+3,0,"Jussila, Miss. Katriina","female",20,1,0,"4136",9.8250,,"S",,,
+3,0,"Jussila, Miss. Mari Aina","female",21,1,0,"4137",9.8250,,"S",,,
+3,1,"Jussila, Mr. Eiriik","male",32,0,0,"STON/O 2. 3101286",7.9250,,"S","15",,
+3,0,"Kallio, Mr. Nikolai Erland","male",17,0,0,"STON/O 2. 3101274",7.1250,,"S",,,
+3,0,"Kalvik, Mr. Johannes Halvorsen","male",21,0,0,"8475",8.4333,,"S",,,
+3,0,"Karaic, Mr. Milan","male",30,0,0,"349246",7.8958,,"S",,,
+3,1,"Karlsson, Mr. Einar Gervasius","male",21,0,0,"350053",7.7958,,"S","13",,
+3,0,"Karlsson, Mr. Julius Konrad Eugen","male",33,0,0,"347465",7.8542,,"S",,,
+3,0,"Karlsson, Mr. Nils August","male",22,0,0,"350060",7.5208,,"S",,,
+3,1,"Karun, Miss. Manca","female",4,0,1,"349256",13.4167,,"C","15",,
+3,1,"Karun, Mr. Franz","male",39,0,1,"349256",13.4167,,"C","15",,
+3,0,"Kassem, Mr. Fared","male",,0,0,"2700",7.2292,,"C",,,
+3,0,"Katavelas, Mr. Vassilios (""Catavelas Vassilios"")","male",18.5,0,0,"2682",7.2292,,"C",,"58",
+3,0,"Keane, Mr. Andrew ""Andy""","male",,0,0,"12460",7.7500,,"Q",,,
+3,0,"Keefe, Mr. Arthur","male",,0,0,"323592",7.2500,,"S","A",,
+3,1,"Kelly, Miss. Anna Katherine ""Annie Kate""","female",,0,0,"9234",7.7500,,"Q","16",,
+3,1,"Kelly, Miss. Mary","female",,0,0,"14312",7.7500,,"Q","D",,
+3,0,"Kelly, Mr. James","male",34.5,0,0,"330911",7.8292,,"Q",,"70",
+3,0,"Kelly, Mr. James","male",44,0,0,"363592",8.0500,,"S",,,
+3,1,"Kennedy, Mr. John","male",,0,0,"368783",7.7500,,"Q",,,
+3,0,"Khalil, Mr. Betros","male",,1,0,"2660",14.4542,,"C",,,
+3,0,"Khalil, Mrs. Betros (Zahie ""Maria"" Elias)","female",,1,0,"2660",14.4542,,"C",,,
+3,0,"Kiernan, Mr. John","male",,1,0,"367227",7.7500,,"Q",,,
+3,0,"Kiernan, Mr. Philip","male",,1,0,"367229",7.7500,,"Q",,,
+3,0,"Kilgannon, Mr. Thomas J","male",,0,0,"36865",7.7375,,"Q",,,
+3,0,"Kink, Miss. Maria","female",22,2,0,"315152",8.6625,,"S",,,
+3,0,"Kink, Mr. Vincenz","male",26,2,0,"315151",8.6625,,"S",,,
+3,1,"Kink-Heilmann, Miss. Luise Gretchen","female",4,0,2,"315153",22.0250,,"S","2",,
+3,1,"Kink-Heilmann, Mr. Anton","male",29,3,1,"315153",22.0250,,"S","2",,
+3,1,"Kink-Heilmann, Mrs. Anton (Luise Heilmann)","female",26,1,1,"315153",22.0250,,"S","2",,
+3,0,"Klasen, Miss. Gertrud Emilia","female",1,1,1,"350405",12.1833,,"S",,,
+3,0,"Klasen, Mr. Klas Albin","male",18,1,1,"350404",7.8542,,"S",,,
+3,0,"Klasen, Mrs. (Hulda Kristina Eugenia Lofqvist)","female",36,0,2,"350405",12.1833,,"S",,,
+3,0,"Kraeff, Mr. Theodor","male",,0,0,"349253",7.8958,,"C",,,
+3,1,"Krekorian, Mr. Neshan","male",25,0,0,"2654",7.2292,"F E57","C","10",,
+3,0,"Lahoud, Mr. Sarkis","male",,0,0,"2624",7.2250,,"C",,,
+3,0,"Laitinen, Miss. Kristina Sofia","female",37,0,0,"4135",9.5875,,"S",,,
+3,0,"Laleff, Mr. Kristo","male",,0,0,"349217",7.8958,,"S",,,
+3,1,"Lam, Mr. Ali","male",,0,0,"1601",56.4958,,"S","C",,
+3,0,"Lam, Mr. Len","male",,0,0,"1601",56.4958,,"S",,,
+3,1,"Landergren, Miss. Aurora Adelia","female",22,0,0,"C 7077",7.2500,,"S","13",,
+3,0,"Lane, Mr. Patrick","male",,0,0,"7935",7.7500,,"Q",,,
+3,1,"Lang, Mr. Fang","male",26,0,0,"1601",56.4958,,"S","14",,
+3,0,"Larsson, Mr. August Viktor","male",29,0,0,"7545",9.4833,,"S",,,
+3,0,"Larsson, Mr. Bengt Edvin","male",29,0,0,"347067",7.7750,,"S",,,
+3,0,"Larsson-Rondberg, Mr. Edvard A","male",22,0,0,"347065",7.7750,,"S",,,
+3,1,"Leeni, Mr. Fahim (""Philip Zenni"")","male",22,0,0,"2620",7.2250,,"C","6",,
+3,0,"Lefebre, Master. Henry Forbes","male",,3,1,"4133",25.4667,,"S",,,
+3,0,"Lefebre, Miss. Ida","female",,3,1,"4133",25.4667,,"S",,,
+3,0,"Lefebre, Miss. Jeannie","female",,3,1,"4133",25.4667,,"S",,,
+3,0,"Lefebre, Miss. Mathilde","female",,3,1,"4133",25.4667,,"S",,,
+3,0,"Lefebre, Mrs. Frank (Frances)","female",,0,4,"4133",25.4667,,"S",,,
+3,0,"Leinonen, Mr. Antti Gustaf","male",32,0,0,"STON/O 2. 3101292",7.9250,,"S",,,
+3,0,"Lemberopolous, Mr. Peter L","male",34.5,0,0,"2683",6.4375,,"C",,"196",
+3,0,"Lennon, Miss. Mary","female",,1,0,"370371",15.5000,,"Q",,,
+3,0,"Lennon, Mr. Denis","male",,1,0,"370371",15.5000,,"Q",,,
+3,0,"Leonard, Mr. Lionel","male",36,0,0,"LINE",0.0000,,"S",,,
+3,0,"Lester, Mr. James","male",39,0,0,"A/4 48871",24.1500,,"S",,,
+3,0,"Lievens, Mr. Rene Aime","male",24,0,0,"345781",9.5000,,"S",,,
+3,0,"Lindahl, Miss. Agda Thorilda Viktoria","female",25,0,0,"347071",7.7750,,"S",,,
+3,0,"Lindblom, Miss. Augusta Charlotta","female",45,0,0,"347073",7.7500,,"S",,,
+3,0,"Lindell, Mr. Edvard Bengtsson","male",36,1,0,"349910",15.5500,,"S","A",,
+3,0,"Lindell, Mrs. Edvard Bengtsson (Elin Gerda Persson)","female",30,1,0,"349910",15.5500,,"S","A",,
+3,1,"Lindqvist, Mr. Eino William","male",20,1,0,"STON/O 2. 3101285",7.9250,,"S","15",,
+3,0,"Linehan, Mr. Michael","male",,0,0,"330971",7.8792,,"Q",,,
+3,0,"Ling, Mr. Lee","male",28,0,0,"1601",56.4958,,"S",,,
+3,0,"Lithman, Mr. Simon","male",,0,0,"S.O./P.P. 251",7.5500,,"S",,,
+3,0,"Lobb, Mr. William Arthur","male",30,1,0,"A/5. 3336",16.1000,,"S",,,
+3,0,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)","female",26,1,0,"A/5. 3336",16.1000,,"S",,,
+3,0,"Lockyer, Mr. Edward","male",,0,0,"1222",7.8792,,"S",,"153",
+3,0,"Lovell, Mr. John Hall (""Henry"")","male",20.5,0,0,"A/5 21173",7.2500,,"S",,,
+3,1,"Lulic, Mr. Nikola","male",27,0,0,"315098",8.6625,,"S","15",,
+3,0,"Lundahl, Mr. Johan Svensson","male",51,0,0,"347743",7.0542,,"S",,,
+3,1,"Lundin, Miss. Olga Elida","female",23,0,0,"347469",7.8542,,"S","10",,
+3,1,"Lundstrom, Mr. Thure Edvin","male",32,0,0,"350403",7.5792,,"S","15",,
+3,0,"Lyntakoff, Mr. Stanko","male",,0,0,"349235",7.8958,,"S",,,
+3,0,"MacKay, Mr. George William","male",,0,0,"C.A. 42795",7.5500,,"S",,,
+3,1,"Madigan, Miss. Margaret ""Maggie""","female",,0,0,"370370",7.7500,,"Q","15",,
+3,1,"Madsen, Mr. Fridtjof Arne","male",24,0,0,"C 17369",7.1417,,"S","13",,
+3,0,"Maenpaa, Mr. Matti Alexanteri","male",22,0,0,"STON/O 2. 3101275",7.1250,,"S",,,
+3,0,"Mahon, Miss. Bridget Delia","female",,0,0,"330924",7.8792,,"Q",,,
+3,0,"Mahon, Mr. John","male",,0,0,"AQ/4 3130",7.7500,,"Q",,,
+3,0,"Maisner, Mr. Simon","male",,0,0,"A/S 2816",8.0500,,"S",,,
+3,0,"Makinen, Mr. Kalle Edvard","male",29,0,0,"STON/O 2. 3101268",7.9250,,"S",,,
+3,1,"Mamee, Mr. Hanna","male",,0,0,"2677",7.2292,,"C","15",,
+3,0,"Mangan, Miss. Mary","female",30.5,0,0,"364850",7.7500,,"Q",,"61",
+3,1,"Mannion, Miss. Margareth","female",,0,0,"36866",7.7375,,"Q","16",,
+3,0,"Mardirosian, Mr. Sarkis","male",,0,0,"2655",7.2292,"F E46","C",,,
+3,0,"Markoff, Mr. Marin","male",35,0,0,"349213",7.8958,,"C",,,
+3,0,"Markun, Mr. Johann","male",33,0,0,"349257",7.8958,,"S",,,
+3,1,"Masselmani, Mrs. Fatima","female",,0,0,"2649",7.2250,,"C","C",,
+3,0,"Matinoff, Mr. Nicola","male",,0,0,"349255",7.8958,,"C",,,
+3,1,"McCarthy, Miss. Catherine ""Katie""","female",,0,0,"383123",7.7500,,"Q","15 16",,
+3,1,"McCormack, Mr. Thomas Joseph","male",,0,0,"367228",7.7500,,"Q",,,
+3,1,"McCoy, Miss. Agnes","female",,2,0,"367226",23.2500,,"Q","16",,
+3,1,"McCoy, Miss. Alicia","female",,2,0,"367226",23.2500,,"Q","16",,
+3,1,"McCoy, Mr. Bernard","male",,2,0,"367226",23.2500,,"Q","16",,
+3,1,"McDermott, Miss. Brigdet Delia","female",,0,0,"330932",7.7875,,"Q","13",,
+3,0,"McEvoy, Mr. Michael","male",,0,0,"36568",15.5000,,"Q",,,
+3,1,"McGovern, Miss. Mary","female",,0,0,"330931",7.8792,,"Q","13",,
+3,1,"McGowan, Miss. Anna ""Annie""","female",15,0,0,"330923",8.0292,,"Q",,,
+3,0,"McGowan, Miss. Katherine","female",35,0,0,"9232",7.7500,,"Q",,,
+3,0,"McMahon, Mr. Martin","male",,0,0,"370372",7.7500,,"Q",,,
+3,0,"McNamee, Mr. Neal","male",24,1,0,"376566",16.1000,,"S",,,
+3,0,"McNamee, Mrs. Neal (Eileen O'Leary)","female",19,1,0,"376566",16.1000,,"S",,"53",
+3,0,"McNeill, Miss. Bridget","female",,0,0,"370368",7.7500,,"Q",,,
+3,0,"Meanwell, Miss. (Marion Ogden)","female",,0,0,"SOTON/O.Q. 392087",8.0500,,"S",,,
+3,0,"Meek, Mrs. Thomas (Annie Louise Rowley)","female",,0,0,"343095",8.0500,,"S",,,
+3,0,"Meo, Mr. Alfonzo","male",55.5,0,0,"A.5. 11206",8.0500,,"S",,"201",
+3,0,"Mernagh, Mr. Robert","male",,0,0,"368703",7.7500,,"Q",,,
+3,1,"Midtsjo, Mr. Karl Albert","male",21,0,0,"345501",7.7750,,"S","15",,
+3,0,"Miles, Mr. Frank","male",,0,0,"359306",8.0500,,"S",,,
+3,0,"Mineff, Mr. Ivan","male",24,0,0,"349233",7.8958,,"S",,,
+3,0,"Minkoff, Mr. Lazar","male",21,0,0,"349211",7.8958,,"S",,,
+3,0,"Mionoff, Mr. Stoytcho","male",28,0,0,"349207",7.8958,,"S",,,
+3,0,"Mitkoff, Mr. Mito","male",,0,0,"349221",7.8958,,"S",,,
+3,1,"Mockler, Miss. Helen Mary ""Ellie""","female",,0,0,"330980",7.8792,,"Q","16",,
+3,0,"Moen, Mr. Sigurd Hansen","male",25,0,0,"348123",7.6500,"F G73","S",,"309",
+3,1,"Moor, Master. Meier","male",6,0,1,"392096",12.4750,"E121","S","14",,
+3,1,"Moor, Mrs. (Beila)","female",27,0,1,"392096",12.4750,"E121","S","14",,
+3,0,"Moore, Mr. Leonard Charles","male",,0,0,"A4. 54510",8.0500,,"S",,,
+3,1,"Moran, Miss. Bertha","female",,1,0,"371110",24.1500,,"Q","16",,
+3,0,"Moran, Mr. Daniel J","male",,1,0,"371110",24.1500,,"Q",,,
+3,0,"Moran, Mr. James","male",,0,0,"330877",8.4583,,"Q",,,
+3,0,"Morley, Mr. William","male",34,0,0,"364506",8.0500,,"S",,,
+3,0,"Morrow, Mr. Thomas Rowan","male",,0,0,"372622",7.7500,,"Q",,,
+3,1,"Moss, Mr. Albert Johan","male",,0,0,"312991",7.7750,,"S","B",,
+3,1,"Moubarek, Master. Gerios","male",,1,1,"2661",15.2458,,"C","C",,
+3,1,"Moubarek, Master. Halim Gonios (""William George"")","male",,1,1,"2661",15.2458,,"C","C",,
+3,1,"Moubarek, Mrs. George (Omine ""Amenia"" Alexander)","female",,0,2,"2661",15.2458,,"C","C",,
+3,1,"Moussa, Mrs. (Mantoura Boulos)","female",,0,0,"2626",7.2292,,"C",,,
+3,0,"Moutal, Mr. Rahamin Haim","male",,0,0,"374746",8.0500,,"S",,,
+3,1,"Mullens, Miss. Katherine ""Katie""","female",,0,0,"35852",7.7333,,"Q","16",,
+3,1,"Mulvihill, Miss. Bertha E","female",24,0,0,"382653",7.7500,,"Q","15",,
+3,0,"Murdlin, Mr. Joseph","male",,0,0,"A./5. 3235",8.0500,,"S",,,
+3,1,"Murphy, Miss. Katherine ""Kate""","female",,1,0,"367230",15.5000,,"Q","16",,
+3,1,"Murphy, Miss. Margaret Jane","female",,1,0,"367230",15.5000,,"Q","16",,
+3,1,"Murphy, Miss. Nora","female",,0,0,"36568",15.5000,,"Q","16",,
+3,0,"Myhrman, Mr. Pehr Fabian Oliver Malkolm","male",18,0,0,"347078",7.7500,,"S",,,
+3,0,"Naidenoff, Mr. Penko","male",22,0,0,"349206",7.8958,,"S",,,
+3,1,"Najib, Miss. Adele Kiamie ""Jane""","female",15,0,0,"2667",7.2250,,"C","C",,
+3,1,"Nakid, Miss. Maria (""Mary"")","female",1,0,2,"2653",15.7417,,"C","C",,
+3,1,"Nakid, Mr. Sahid","male",20,1,1,"2653",15.7417,,"C","C",,
+3,1,"Nakid, Mrs. Said (Waika ""Mary"" Mowad)","female",19,1,1,"2653",15.7417,,"C","C",,
+3,0,"Nancarrow, Mr. William Henry","male",33,0,0,"A./5. 3338",8.0500,,"S",,,
+3,0,"Nankoff, Mr. Minko","male",,0,0,"349218",7.8958,,"S",,,
+3,0,"Nasr, Mr. Mustafa","male",,0,0,"2652",7.2292,,"C",,,
+3,0,"Naughton, Miss. Hannah","female",,0,0,"365237",7.7500,,"Q",,,
+3,0,"Nenkoff, Mr. Christo","male",,0,0,"349234",7.8958,,"S",,,
+3,1,"Nicola-Yarred, Master. Elias","male",12,1,0,"2651",11.2417,,"C","C",,
+3,1,"Nicola-Yarred, Miss. Jamila","female",14,1,0,"2651",11.2417,,"C","C",,
+3,0,"Nieminen, Miss. Manta Josefina","female",29,0,0,"3101297",7.9250,,"S",,,
+3,0,"Niklasson, Mr. Samuel","male",28,0,0,"363611",8.0500,,"S",,,
+3,1,"Nilsson, Miss. Berta Olivia","female",18,0,0,"347066",7.7750,,"S","D",,
+3,1,"Nilsson, Miss. Helmina Josefina","female",26,0,0,"347470",7.8542,,"S","13",,
+3,0,"Nilsson, Mr. August Ferdinand","male",21,0,0,"350410",7.8542,,"S",,,
+3,0,"Nirva, Mr. Iisakki Antino Aijo","male",41,0,0,"SOTON/O2 3101272",7.1250,,"S",,,"Finland Sudbury, ON"
+3,1,"Niskanen, Mr. Juha","male",39,0,0,"STON/O 2. 3101289",7.9250,,"S","9",,
+3,0,"Nosworthy, Mr. Richard Cater","male",21,0,0,"A/4. 39886",7.8000,,"S",,,
+3,0,"Novel, Mr. Mansouer","male",28.5,0,0,"2697",7.2292,,"C",,"181",
+3,1,"Nysten, Miss. Anna Sofia","female",22,0,0,"347081",7.7500,,"S","13",,
+3,0,"Nysveen, Mr. Johan Hansen","male",61,0,0,"345364",6.2375,,"S",,,
+3,0,"O'Brien, Mr. Thomas","male",,1,0,"370365",15.5000,,"Q",,,
+3,0,"O'Brien, Mr. Timothy","male",,0,0,"330979",7.8292,,"Q",,,
+3,1,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)","female",,1,0,"370365",15.5000,,"Q",,,
+3,0,"O'Connell, Mr. Patrick D","male",,0,0,"334912",7.7333,,"Q",,,
+3,0,"O'Connor, Mr. Maurice","male",,0,0,"371060",7.7500,,"Q",,,
+3,0,"O'Connor, Mr. Patrick","male",,0,0,"366713",7.7500,,"Q",,,
+3,0,"Odahl, Mr. Nils Martin","male",23,0,0,"7267",9.2250,,"S",,,
+3,0,"O'Donoghue, Ms. Bridget","female",,0,0,"364856",7.7500,,"Q",,,
+3,1,"O'Driscoll, Miss. Bridget","female",,0,0,"14311",7.7500,,"Q","D",,
+3,1,"O'Dwyer, Miss. Ellen ""Nellie""","female",,0,0,"330959",7.8792,,"Q",,,
+3,1,"Ohman, Miss. Velin","female",22,0,0,"347085",7.7750,,"S","C",,
+3,1,"O'Keefe, Mr. Patrick","male",,0,0,"368402",7.7500,,"Q","B",,
+3,1,"O'Leary, Miss. Hanora ""Norah""","female",,0,0,"330919",7.8292,,"Q","13",,
+3,1,"Olsen, Master. Artur Karl","male",9,0,1,"C 17368",3.1708,,"S","13",,
+3,0,"Olsen, Mr. Henry Margido","male",28,0,0,"C 4001",22.5250,,"S",,"173",
+3,0,"Olsen, Mr. Karl Siegwart Andreas","male",42,0,1,"4579",8.4042,,"S",,,
+3,0,"Olsen, Mr. Ole Martin","male",,0,0,"Fa 265302",7.3125,,"S",,,
+3,0,"Olsson, Miss. Elina","female",31,0,0,"350407",7.8542,,"S",,,
+3,0,"Olsson, Mr. Nils Johan Goransson","male",28,0,0,"347464",7.8542,,"S",,,
+3,1,"Olsson, Mr. Oscar Wilhelm","male",32,0,0,"347079",7.7750,,"S","A",,
+3,0,"Olsvigen, Mr. Thor Anderson","male",20,0,0,"6563",9.2250,,"S",,"89","Oslo, Norway Cameron, WI"
+3,0,"Oreskovic, Miss. Jelka","female",23,0,0,"315085",8.6625,,"S",,,
+3,0,"Oreskovic, Miss. Marija","female",20,0,0,"315096",8.6625,,"S",,,
+3,0,"Oreskovic, Mr. Luka","male",20,0,0,"315094",8.6625,,"S",,,
+3,0,"Osen, Mr. Olaf Elon","male",16,0,0,"7534",9.2167,,"S",,,
+3,1,"Osman, Mrs. Mara","female",31,0,0,"349244",8.6833,,"S",,,
+3,0,"O'Sullivan, Miss. Bridget Mary","female",,0,0,"330909",7.6292,,"Q",,,
+3,0,"Palsson, Master. Gosta Leonard","male",2,3,1,"349909",21.0750,,"S",,"4",
+3,0,"Palsson, Master. Paul Folke","male",6,3,1,"349909",21.0750,,"S",,,
+3,0,"Palsson, Miss. Stina Viola","female",3,3,1,"349909",21.0750,,"S",,,
+3,0,"Palsson, Miss. Torborg Danira","female",8,3,1,"349909",21.0750,,"S",,,
+3,0,"Palsson, Mrs. Nils (Alma Cornelia Berglund)","female",29,0,4,"349909",21.0750,,"S",,"206",
+3,0,"Panula, Master. Eino Viljami","male",1,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Master. Juha Niilo","male",7,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Master. Urho Abraham","male",2,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Mr. Ernesti Arvid","male",16,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Mr. Jaako Arnold","male",14,4,1,"3101295",39.6875,,"S",,,
+3,0,"Panula, Mrs. Juha (Maria Emilia Ojala)","female",41,0,5,"3101295",39.6875,,"S",,,
+3,0,"Pasic, Mr. Jakob","male",21,0,0,"315097",8.6625,,"S",,,
+3,0,"Patchett, Mr. George","male",19,0,0,"358585",14.5000,,"S",,,
+3,0,"Paulner, Mr. Uscher","male",,0,0,"3411",8.7125,,"C",,,
+3,0,"Pavlovic, Mr. Stefo","male",32,0,0,"349242",7.8958,,"S",,,
+3,0,"Peacock, Master. Alfred Edward","male",0.75,1,1,"SOTON/O.Q. 3101315",13.7750,,"S",,,
+3,0,"Peacock, Miss. Treasteall","female",3,1,1,"SOTON/O.Q. 3101315",13.7750,,"S",,,
+3,0,"Peacock, Mrs. Benjamin (Edith Nile)","female",26,0,2,"SOTON/O.Q. 3101315",13.7750,,"S",,,
+3,0,"Pearce, Mr. Ernest","male",,0,0,"343271",7.0000,,"S",,,
+3,0,"Pedersen, Mr. Olaf","male",,0,0,"345498",7.7750,,"S",,,
+3,0,"Peduzzi, Mr. Joseph","male",,0,0,"A/5 2817",8.0500,,"S",,,
+3,0,"Pekoniemi, Mr. Edvard","male",21,0,0,"STON/O 2. 3101294",7.9250,,"S",,,
+3,0,"Peltomaki, Mr. Nikolai Johannes","male",25,0,0,"STON/O 2. 3101291",7.9250,,"S",,,
+3,0,"Perkin, Mr. John Henry","male",22,0,0,"A/5 21174",7.2500,,"S",,,
+3,1,"Persson, Mr. Ernst Ulrik","male",25,1,0,"347083",7.7750,,"S","15",,
+3,1,"Peter, Master. Michael J","male",,1,1,"2668",22.3583,,"C","C",,
+3,1,"Peter, Miss. Anna","female",,1,1,"2668",22.3583,"F E69","C","D",,
+3,1,"Peter, Mrs. Catherine (Catherine Rizk)","female",,0,2,"2668",22.3583,,"C","D",,
+3,0,"Peters, Miss. Katie","female",,0,0,"330935",8.1375,,"Q",,,
+3,0,"Petersen, Mr. Marius","male",24,0,0,"342441",8.0500,,"S",,,
+3,0,"Petranec, Miss. Matilda","female",28,0,0,"349245",7.8958,,"S",,,
+3,0,"Petroff, Mr. Nedelio","male",19,0,0,"349212",7.8958,,"S",,,
+3,0,"Petroff, Mr. Pastcho (""Pentcho"")","male",,0,0,"349215",7.8958,,"S",,,
+3,0,"Petterson, Mr. Johan Emil","male",25,1,0,"347076",7.7750,,"S",,,
+3,0,"Pettersson, Miss. Ellen Natalia","female",18,0,0,"347087",7.7750,,"S",,,
+3,1,"Pickard, Mr. Berk (Berk Trembisky)","male",32,0,0,"SOTON/O.Q. 392078",8.0500,"E10","S","9",,
+3,0,"Plotcharsky, Mr. Vasil","male",,0,0,"349227",7.8958,,"S",,,
+3,0,"Pokrnic, Mr. Mate","male",17,0,0,"315095",8.6625,,"S",,,
+3,0,"Pokrnic, Mr. Tome","male",24,0,0,"315092",8.6625,,"S",,,
+3,0,"Radeff, Mr. Alexander","male",,0,0,"349223",7.8958,,"S",,,
+3,0,"Rasmussen, Mrs. (Lena Jacobsen Solvang)","female",,0,0,"65305",8.1125,,"S",,,
+3,0,"Razi, Mr. Raihed","male",,0,0,"2629",7.2292,,"C",,,
+3,0,"Reed, Mr. James George","male",,0,0,"362316",7.2500,,"S",,,
+3,0,"Rekic, Mr. Tido","male",38,0,0,"349249",7.8958,,"S",,,
+3,0,"Reynolds, Mr. Harold J","male",21,0,0,"342684",8.0500,,"S",,,
+3,0,"Rice, Master. Albert","male",10,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Master. Arthur","male",4,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Master. Eric","male",7,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Master. Eugene","male",2,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Master. George Hugh","male",8,4,1,"382652",29.1250,,"Q",,,
+3,0,"Rice, Mrs. William (Margaret Norton)","female",39,0,5,"382652",29.1250,,"Q",,"327",
+3,0,"Riihivouri, Miss. Susanna Juhantytar ""Sanni""","female",22,0,0,"3101295",39.6875,,"S",,,
+3,0,"Rintamaki, Mr. Matti","male",35,0,0,"STON/O 2. 3101273",7.1250,,"S",,,
+3,1,"Riordan, Miss. Johanna ""Hannah""","female",,0,0,"334915",7.7208,,"Q","13",,
+3,0,"Risien, Mr. Samuel Beard","male",,0,0,"364498",14.5000,,"S",,,
+3,0,"Risien, Mrs. Samuel (Emma)","female",,0,0,"364498",14.5000,,"S",,,
+3,0,"Robins, Mr. Alexander A","male",50,1,0,"A/5. 3337",14.5000,,"S",,"119",
+3,0,"Robins, Mrs. Alexander A (Grace Charity Laury)","female",47,1,0,"A/5. 3337",14.5000,,"S",,"7",
+3,0,"Rogers, Mr. William John","male",,0,0,"S.C./A.4. 23567",8.0500,,"S",,,
+3,0,"Rommetvedt, Mr. Knud Paust","male",,0,0,"312993",7.7750,,"S",,,
+3,0,"Rosblom, Miss. Salli Helena","female",2,1,1,"370129",20.2125,,"S",,,
+3,0,"Rosblom, Mr. Viktor Richard","male",18,1,1,"370129",20.2125,,"S",,,
+3,0,"Rosblom, Mrs. Viktor (Helena Wilhelmina)","female",41,0,2,"370129",20.2125,,"S",,,
+3,1,"Roth, Miss. Sarah A","female",,0,0,"342712",8.0500,,"S","C",,
+3,0,"Rouse, Mr. Richard Henry","male",50,0,0,"A/5 3594",8.0500,,"S",,,
+3,0,"Rush, Mr. Alfred George John","male",16,0,0,"A/4. 20589",8.0500,,"S",,,
+3,1,"Ryan, Mr. Edward","male",,0,0,"383162",7.7500,,"Q","14",,
+3,0,"Ryan, Mr. Patrick","male",,0,0,"371110",24.1500,,"Q",,,
+3,0,"Saad, Mr. Amin","male",,0,0,"2671",7.2292,,"C",,,
+3,0,"Saad, Mr. Khalil","male",25,0,0,"2672",7.2250,,"C",,,
+3,0,"Saade, Mr. Jean Nassr","male",,0,0,"2676",7.2250,,"C",,,
+3,0,"Sadlier, Mr. Matthew","male",,0,0,"367655",7.7292,,"Q",,,
+3,0,"Sadowitz, Mr. Harry","male",,0,0,"LP 1588",7.5750,,"S",,,
+3,0,"Saether, Mr. Simon Sivertsen","male",38.5,0,0,"SOTON/O.Q. 3101262",7.2500,,"S",,"32",
+3,0,"Sage, Master. Thomas Henry","male",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Master. William Henry","male",14.5,8,2,"CA. 2343",69.5500,,"S",,"67",
+3,0,"Sage, Miss. Ada","female",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Miss. Constance Gladys","female",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Miss. Dorothy Edith ""Dolly""","female",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Miss. Stella Anna","female",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mr. Douglas Bullen","male",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mr. Frederick","male",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mr. George John Jr","male",,8,2,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mr. John George","male",,1,9,"CA. 2343",69.5500,,"S",,,
+3,0,"Sage, Mrs. John (Annie Bullen)","female",,1,9,"CA. 2343",69.5500,,"S",,,
+3,0,"Salander, Mr. Karl Johan","male",24,0,0,"7266",9.3250,,"S",,,
+3,1,"Salkjelsvik, Miss. Anna Kristine","female",21,0,0,"343120",7.6500,,"S","C",,
+3,0,"Salonen, Mr. Johan Werner","male",39,0,0,"3101296",7.9250,,"S",,,
+3,0,"Samaan, Mr. Elias","male",,2,0,"2662",21.6792,,"C",,,
+3,0,"Samaan, Mr. Hanna","male",,2,0,"2662",21.6792,,"C",,,
+3,0,"Samaan, Mr. Youssef","male",,2,0,"2662",21.6792,,"C",,,
+3,1,"Sandstrom, Miss. Beatrice Irene","female",1,1,1,"PP 9549",16.7000,"G6","S","13",,
+3,1,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)","female",24,0,2,"PP 9549",16.7000,"G6","S","13",,
+3,1,"Sandstrom, Miss. Marguerite Rut","female",4,1,1,"PP 9549",16.7000,"G6","S","13",,
+3,1,"Sap, Mr. Julius","male",25,0,0,"345768",9.5000,,"S","11",,
+3,0,"Saundercock, Mr. William Henry","male",20,0,0,"A/5. 2151",8.0500,,"S",,,
+3,0,"Sawyer, Mr. Frederick Charles","male",24.5,0,0,"342826",8.0500,,"S",,"284",
+3,0,"Scanlan, Mr. James","male",,0,0,"36209",7.7250,,"Q",,,
+3,0,"Sdycoff, Mr. Todor","male",,0,0,"349222",7.8958,,"S",,,
+3,0,"Shaughnessy, Mr. Patrick","male",,0,0,"370374",7.7500,,"Q",,,
+3,1,"Sheerlinck, Mr. Jan Baptist","male",29,0,0,"345779",9.5000,,"S","11",,
+3,0,"Shellard, Mr. Frederick William","male",,0,0,"C.A. 6212",15.1000,,"S",,,
+3,1,"Shine, Miss. Ellen Natalia","female",,0,0,"330968",7.7792,,"Q",,,
+3,0,"Shorney, Mr. Charles Joseph","male",,0,0,"374910",8.0500,,"S",,,
+3,0,"Simmons, Mr. John","male",,0,0,"SOTON/OQ 392082",8.0500,,"S",,,
+3,0,"Sirayanian, Mr. Orsen","male",22,0,0,"2669",7.2292,,"C",,,
+3,0,"Sirota, Mr. Maurice","male",,0,0,"392092",8.0500,,"S",,,
+3,0,"Sivic, Mr. Husein","male",40,0,0,"349251",7.8958,,"S",,,
+3,0,"Sivola, Mr. Antti Wilhelm","male",21,0,0,"STON/O 2. 3101280",7.9250,,"S",,,
+3,1,"Sjoblom, Miss. Anna Sofia","female",18,0,0,"3101265",7.4958,,"S","16",,
+3,0,"Skoog, Master. Harald","male",4,3,2,"347088",27.9000,,"S",,,
+3,0,"Skoog, Master. Karl Thorsten","male",10,3,2,"347088",27.9000,,"S",,,
+3,0,"Skoog, Miss. Mabel","female",9,3,2,"347088",27.9000,,"S",,,
+3,0,"Skoog, Miss. Margit Elizabeth","female",2,3,2,"347088",27.9000,,"S",,,
+3,0,"Skoog, Mr. Wilhelm","male",40,1,4,"347088",27.9000,,"S",,,
+3,0,"Skoog, Mrs. William (Anna Bernhardina Karlsson)","female",45,1,4,"347088",27.9000,,"S",,,
+3,0,"Slabenoff, Mr. Petco","male",,0,0,"349214",7.8958,,"S",,,
+3,0,"Slocovski, Mr. Selman Francis","male",,0,0,"SOTON/OQ 392086",8.0500,,"S",,,
+3,0,"Smiljanic, Mr. Mile","male",,0,0,"315037",8.6625,,"S",,,
+3,0,"Smith, Mr. Thomas","male",,0,0,"384461",7.7500,,"Q",,,
+3,1,"Smyth, Miss. Julia","female",,0,0,"335432",7.7333,,"Q","13",,
+3,0,"Soholt, Mr. Peter Andreas Lauritz Andersen","male",19,0,0,"348124",7.6500,"F G73","S",,,
+3,0,"Somerton, Mr. Francis William","male",30,0,0,"A.5. 18509",8.0500,,"S",,,
+3,0,"Spector, Mr. Woolf","male",,0,0,"A.5. 3236",8.0500,,"S",,,
+3,0,"Spinner, Mr. Henry John","male",32,0,0,"STON/OQ. 369943",8.0500,,"S",,,
+3,0,"Staneff, Mr. Ivan","male",,0,0,"349208",7.8958,,"S",,,
+3,0,"Stankovic, Mr. Ivan","male",33,0,0,"349239",8.6625,,"C",,,
+3,1,"Stanley, Miss. Amy Zillah Elsie","female",23,0,0,"CA. 2314",7.5500,,"S","C",,
+3,0,"Stanley, Mr. Edward Roland","male",21,0,0,"A/4 45380",8.0500,,"S",,,
+3,0,"Storey, Mr. Thomas","male",60.5,0,0,"3701",,,"S",,"261",
+3,0,"Stoytcheff, Mr. Ilia","male",19,0,0,"349205",7.8958,,"S",,,
+3,0,"Strandberg, Miss. Ida Sofia","female",22,0,0,"7553",9.8375,,"S",,,
+3,1,"Stranden, Mr. Juho","male",31,0,0,"STON/O 2. 3101288",7.9250,,"S","9",,
+3,0,"Strilic, Mr. Ivan","male",27,0,0,"315083",8.6625,,"S",,,
+3,0,"Strom, Miss. Telma Matilda","female",2,0,1,"347054",10.4625,"G6","S",,,
+3,0,"Strom, Mrs. Wilhelm (Elna Matilda Persson)","female",29,1,1,"347054",10.4625,"G6","S",,,
+3,1,"Sunderland, Mr. Victor Francis","male",16,0,0,"SOTON/OQ 392089",8.0500,,"S","B",,
+3,1,"Sundman, Mr. Johan Julian","male",44,0,0,"STON/O 2. 3101269",7.9250,,"S","15",,
+3,0,"Sutehall, Mr. Henry Jr","male",25,0,0,"SOTON/OQ 392076",7.0500,,"S",,,
+3,0,"Svensson, Mr. Johan","male",74,0,0,"347060",7.7750,,"S",,,
+3,1,"Svensson, Mr. Johan Cervin","male",14,0,0,"7538",9.2250,,"S","13",,
+3,0,"Svensson, Mr. Olof","male",24,0,0,"350035",7.7958,,"S",,,
+3,1,"Tenglin, Mr. Gunnar Isidor","male",25,0,0,"350033",7.7958,,"S","13 15",,
+3,0,"Theobald, Mr. Thomas Leonard","male",34,0,0,"363294",8.0500,,"S",,"176",
+3,1,"Thomas, Master. Assad Alexander","male",0.42,0,1,"2625",8.5167,,"C","16",,
+3,0,"Thomas, Mr. Charles P","male",,1,0,"2621",6.4375,,"C",,,
+3,0,"Thomas, Mr. John","male",,0,0,"2681",6.4375,,"C",,,
+3,0,"Thomas, Mr. Tannous","male",,0,0,"2684",7.2250,,"C",,,
+3,1,"Thomas, Mrs. Alexander (Thamine ""Thelma"")","female",16,1,1,"2625",8.5167,,"C","14",,
+3,0,"Thomson, Mr. Alexander Morrison","male",,0,0,"32302",8.0500,,"S",,,
+3,0,"Thorneycroft, Mr. Percival","male",,1,0,"376564",16.1000,,"S",,,
+3,1,"Thorneycroft, Mrs. Percival (Florence Kate White)","female",,1,0,"376564",16.1000,,"S","10",,
+3,0,"Tikkanen, Mr. Juho","male",32,0,0,"STON/O 2. 3101293",7.9250,,"S",,,
+3,0,"Tobin, Mr. Roger","male",,0,0,"383121",7.7500,"F38","Q",,,
+3,0,"Todoroff, Mr. Lalio","male",,0,0,"349216",7.8958,,"S",,,
+3,0,"Tomlin, Mr. Ernest Portage","male",30.5,0,0,"364499",8.0500,,"S",,"50",
+3,0,"Torber, Mr. Ernst William","male",44,0,0,"364511",8.0500,,"S",,,
+3,0,"Torfa, Mr. Assad","male",,0,0,"2673",7.2292,,"C",,,
+3,1,"Tornquist, Mr. William Henry","male",25,0,0,"LINE",0.0000,,"S","15",,
+3,0,"Toufik, Mr. Nakli","male",,0,0,"2641",7.2292,,"C",,,
+3,1,"Touma, Master. Georges Youssef","male",7,1,1,"2650",15.2458,,"C","C",,
+3,1,"Touma, Miss. Maria Youssef","female",9,1,1,"2650",15.2458,,"C","C",,
+3,1,"Touma, Mrs. Darwis (Hanne Youssef Razi)","female",29,0,2,"2650",15.2458,,"C","C",,
+3,0,"Turcin, Mr. Stjepan","male",36,0,0,"349247",7.8958,,"S",,,
+3,1,"Turja, Miss. Anna Sofia","female",18,0,0,"4138",9.8417,,"S","15",,
+3,1,"Turkula, Mrs. (Hedwig)","female",63,0,0,"4134",9.5875,,"S","15",,
+3,0,"van Billiard, Master. James William","male",,1,1,"A/5. 851",14.5000,,"S",,,
+3,0,"van Billiard, Master. Walter John","male",11.5,1,1,"A/5. 851",14.5000,,"S",,"1",
+3,0,"van Billiard, Mr. Austin Blyler","male",40.5,0,2,"A/5. 851",14.5000,,"S",,"255",
+3,0,"Van Impe, Miss. Catharina","female",10,0,2,"345773",24.1500,,"S",,,
+3,0,"Van Impe, Mr. Jean Baptiste","male",36,1,1,"345773",24.1500,,"S",,,
+3,0,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)","female",30,1,1,"345773",24.1500,,"S",,,
+3,0,"van Melkebeke, Mr. Philemon","male",,0,0,"345777",9.5000,,"S",,,
+3,0,"Vande Velde, Mr. Johannes Joseph","male",33,0,0,"345780",9.5000,,"S",,,
+3,0,"Vande Walle, Mr. Nestor Cyriel","male",28,0,0,"345770",9.5000,,"S",,,
+3,0,"Vanden Steen, Mr. Leo Peter","male",28,0,0,"345783",9.5000,,"S",,,
+3,0,"Vander Cruyssen, Mr. Victor","male",47,0,0,"345765",9.0000,,"S",,,
+3,0,"Vander Planke, Miss. Augusta Maria","female",18,2,0,"345764",18.0000,,"S",,,
+3,0,"Vander Planke, Mr. Julius","male",31,3,0,"345763",18.0000,,"S",,,
+3,0,"Vander Planke, Mr. Leo Edmondus","male",16,2,0,"345764",18.0000,,"S",,,
+3,0,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)","female",31,1,0,"345763",18.0000,,"S",,,
+3,1,"Vartanian, Mr. David","male",22,0,0,"2658",7.2250,,"C","13 15",,
+3,0,"Vendel, Mr. Olof Edvin","male",20,0,0,"350416",7.8542,,"S",,,
+3,0,"Vestrom, Miss. Hulda Amanda Adolfina","female",14,0,0,"350406",7.8542,,"S",,,
+3,0,"Vovk, Mr. Janko","male",22,0,0,"349252",7.8958,,"S",,,
+3,0,"Waelens, Mr. Achille","male",22,0,0,"345767",9.0000,,"S",,,"Antwerp, Belgium / Stanton, OH"
+3,0,"Ware, Mr. Frederick","male",,0,0,"359309",8.0500,,"S",,,
+3,0,"Warren, Mr. Charles William","male",,0,0,"C.A. 49867",7.5500,,"S",,,
+3,0,"Webber, Mr. James","male",,0,0,"SOTON/OQ 3101316",8.0500,,"S",,,
+3,0,"Wenzel, Mr. Linhart","male",32.5,0,0,"345775",9.5000,,"S",,"298",
+3,1,"Whabee, Mrs. George Joseph (Shawneene Abi-Saab)","female",38,0,0,"2688",7.2292,,"C","C",,
+3,0,"Widegren, Mr. Carl/Charles Peter","male",51,0,0,"347064",7.7500,,"S",,,
+3,0,"Wiklund, Mr. Jakob Alfred","male",18,1,0,"3101267",6.4958,,"S",,"314",
+3,0,"Wiklund, Mr. Karl Johan","male",21,1,0,"3101266",6.4958,,"S",,,
+3,1,"Wilkes, Mrs. James (Ellen Needs)","female",47,1,0,"363272",7.0000,,"S",,,
+3,0,"Willer, Mr. Aaron (""Abi Weller"")","male",,0,0,"3410",8.7125,,"S",,,
+3,0,"Willey, Mr. Edward","male",,0,0,"S.O./P.P. 751",7.5500,,"S",,,
+3,0,"Williams, Mr. Howard Hugh ""Harry""","male",,0,0,"A/5 2466",8.0500,,"S",,,
+3,0,"Williams, Mr. Leslie","male",28.5,0,0,"54636",16.1000,,"S",,"14",
+3,0,"Windelov, Mr. Einar","male",21,0,0,"SOTON/OQ 3101317",7.2500,,"S",,,
+3,0,"Wirz, Mr. Albert","male",27,0,0,"315154",8.6625,,"S",,"131",
+3,0,"Wiseman, Mr. Phillippe","male",,0,0,"A/4. 34244",7.2500,,"S",,,
+3,0,"Wittevrongel, Mr. Camille","male",36,0,0,"345771",9.5000,,"S",,,
+3,0,"Yasbeck, Mr. Antoni","male",27,1,0,"2659",14.4542,,"C","C",,
+3,1,"Yasbeck, Mrs. Antoni (Selini Alexander)","female",15,1,0,"2659",14.4542,,"C",,,
+3,0,"Youseff, Mr. Gerious","male",45.5,0,0,"2628",7.2250,,"C",,"312",
+3,0,"Yousif, Mr. Wazli","male",,0,0,"2647",7.2250,,"C",,,
+3,0,"Yousseff, Mr. Gerious","male",,0,0,"2627",14.4583,,"C",,,
+3,0,"Zabour, Miss. Hileni","female",14.5,1,0,"2665",14.4542,,"C",,"328",
+3,0,"Zabour, Miss. Thamine","female",,1,0,"2665",14.4542,,"C",,,
+3,0,"Zakarian, Mr. Mapriededer","male",26.5,0,0,"2656",7.2250,,"C",,"304",
+3,0,"Zakarian, Mr. Ortin","male",27,0,0,"2670",7.2250,,"C",,,
+3,0,"Zimmerman, Mr. Leo","male",29,0,0,"315082",7.8750,,"S",,,
From f4b24fdfd85416c3fdceec43d5425a94a4cf3bc3 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 25 May 2024 08:24:05 +0530
Subject: [PATCH 25/72] Add files via upload
---
.../Importing_and_Exporting_Data_in_Pandas.md | 103 ++++++++++++++++++
1 file changed, 103 insertions(+)
create mode 100644 contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
diff --git a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
new file mode 100644
index 0000000..bb490b9
--- /dev/null
+++ b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
@@ -0,0 +1,103 @@
+# Importing_and_Exporting_Data_in_Pandas
+
+>Created by Krishna Kaushik
+
+- **Now we're able to create `Series` and `DataFrames` in pandas, but we usually do not do this , in practice we import the data which is in the form of .csv (Comma Seperated Values) , a spreadsheet file or something similar.**
+
+- *Good news is that pandas allows for easy importing of data like this through functions such as ``pd.read_csv()`` and ``pd.read_excel()`` for Microsoft Excel files.*
+
+## 1. Importing from a Google sheet to a pandas dataframe
+
+*Let's say that you wanted to get the information from Google Sheet document into a pandas DataFrame.*.
+
+*You could export it as a .csv file and then import it using ``pd.read_csv()``.*
+
+*In this case, the exported .csv file is called `Titanic.csv`*
+
+
+```python
+## Importing Titanic Data set
+import pandas as pd
+
+titanic_df= pd.read_csv("https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Datasets/Titanic.csv")
+print(titanic_df)
+```
+
+ pclass survived name \
+ 0 1 1 Allen, Miss. Elisabeth Walton
+ 1 1 1 Allison, Master. Hudson Trevor
+ 2 1 0 Allison, Miss. Helen Loraine
+ 3 1 0 Allison, Mr. Hudson Joshua Creighton
+ 4 1 0 Allison, Mrs. Hudson J C (Bessie Waldo Daniels)
+ ... ... ... ...
+ 1304 3 0 Zabour, Miss. Hileni
+ 1305 3 0 Zabour, Miss. Thamine
+ 1306 3 0 Zakarian, Mr. Mapriededer
+ 1307 3 0 Zakarian, Mr. Ortin
+ 1308 3 0 Zimmerman, Mr. Leo
+
+ sex age sibsp parch ticket fare cabin embarked boat \
+ 0 female 29.00 0 0 24160 211.3375 B5 S 2
+ 1 male 0.92 1 2 113781 151.5500 C22 C26 S 11
+ 2 female 2.00 1 2 113781 151.5500 C22 C26 S NaN
+ 3 male 30.00 1 2 113781 151.5500 C22 C26 S NaN
+ 4 female 25.00 1 2 113781 151.5500 C22 C26 S NaN
+ ... ... ... ... ... ... ... ... ... ...
+ 1304 female 14.50 1 0 2665 14.4542 NaN C NaN
+ 1305 female NaN 1 0 2665 14.4542 NaN C NaN
+ 1306 male 26.50 0 0 2656 7.2250 NaN C NaN
+ 1307 male 27.00 0 0 2670 7.2250 NaN C NaN
+ 1308 male 29.00 0 0 315082 7.8750 NaN S NaN
+
+ body home.dest
+ 0 NaN St Louis, MO
+ 1 NaN Montreal, PQ / Chesterville, ON
+ 2 NaN Montreal, PQ / Chesterville, ON
+ 3 135.0 Montreal, PQ / Chesterville, ON
+ 4 NaN Montreal, PQ / Chesterville, ON
+ ... ... ...
+ 1304 328.0 NaN
+ 1305 NaN NaN
+ 1306 304.0 NaN
+ 1307 NaN NaN
+ 1308 NaN NaN
+
+ [1309 rows x 14 columns]
+
+
+The dataset I am using here for your reference is taken from the same repository i.e ``learn-python`` (https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Datasets/Titanic.csv) I uploaded it in the Datasets folder,you can use it from there.
+
+You can also place the filename with its path in `pd.read_csv()`.
+
+**Now we've got the same data from the Google Spreadsheet , but now available as ``pandas DataFrame`` which means we can now apply all pandas functionality over it.**
+
+#### Note: The quiet important thing i am telling is that ``pd.read_csv()`` takes the location of the file (which is in your current working directory) or the hyperlink of the dataset from the other source.
+
+#### But if you want to import the data from Github you can't directly use its link , you have to first convert it to raw by clicking on the raw button present in the repo .
+
+#### Also you can't use the data directly from `Kaggle` you have to use ``kaggle API``
+
+## 2. The Anatomy of DataFrame
+
+**Different functions use different labels for different things, and can get a little confusing.**
+
+- Rows are refer as ``axis=0``
+- columns are refer as ``axis=1``
+
+## 3. Exporting Data
+
+**OK, so after you've made a few changes to your data, you might want to export it and save it so someone else can access the changes.**
+
+**pandas allows you to export ``DataFrame's`` to ``.csv`` format using ``.to_csv()``, or to a spreadsheet format using .to_excel().**
+
+### Exporting a dataframe to a CSV
+
+**We haven't made any changes yet to the ``titanic_df`` DataFrame but let's try to export it.**
+
+
+```python
+#Export the titanic_df DataFrame to csv
+titanic_df.to_csv("exported_titanic.csv")
+```
+
+Running this will save a file called ``exported_titanic.csv`` to the current folder.
From 43a1b5a652b74852b2a17cd169d1412cf5114fb0 Mon Sep 17 00:00:00 2001
From: rohit
Date: Sat, 25 May 2024 12:12:28 +0530
Subject: [PATCH 26/72] Added PyTorch.md
---
contrib/machine-learning/PyTorch.md | 113 ++++++++++++++++++++++++++++
contrib/machine-learning/index.md | 1 +
2 files changed, 114 insertions(+)
create mode 100644 contrib/machine-learning/PyTorch.md
diff --git a/contrib/machine-learning/PyTorch.md b/contrib/machine-learning/PyTorch.md
new file mode 100644
index 0000000..7de853b
--- /dev/null
+++ b/contrib/machine-learning/PyTorch.md
@@ -0,0 +1,113 @@
+# PyTorch: A Comprehensive Overview
+
+## Introduction
+PyTorch is an open-source deep learning framework developed by Facebook's AI Research lab. It provides a flexible and efficient platform for building and deploying machine learning models. PyTorch is known for its dynamic computational graph, ease of use, and strong support for GPU acceleration.
+
+## Key Features
+- **Dynamic Computational Graphs**: PyTorch's dynamic computation graph (or define-by-run) allows you to change the network architecture during runtime. This feature makes debugging and experimenting with different model architectures easier.
+- **GPU Acceleration**: PyTorch supports CUDA, enabling efficient computation on GPUs.
+- **Extensive Libraries and Tools**: PyTorch has a rich ecosystem of libraries and tools such as torchvision for computer vision, torchtext for natural language processing, and more.
+- **Community Support**: PyTorch has a large and active community, providing extensive resources, tutorials, and forums for support.
+
+## Installation
+To install PyTorch, you can use pip:
+
+```sh
+pip install torch torchvision
+```
+
+For detailed installation instructions, including GPU support, visit the [official PyTorch installation guide](https://pytorch.org/get-started/locally/).
+
+## Basic Usage
+
+### Tensors
+Tensors are the fundamental building blocks in PyTorch. They are similar to NumPy arrays but can run on GPUs.
+
+```python
+import torch
+
+# Creating a tensor
+x = torch.tensor([1.0, 2.0, 3.0])
+print(x)
+
+# Performing basic operations
+y = torch.tensor([4.0, 5.0, 6.0])
+z = x + y
+print(z)
+```
+
+### Autograd
+Autograd is PyTorch's automatic differentiation engine that powers neural network training. It tracks operations on tensors to automatically compute gradients.
+
+```python
+# Requires gradient
+x = torch.tensor([1.0, 2.0, 3.0], requires_grad=True)
+
+# Perform operations
+y = x ** 2
+z = y.sum()
+
+# Compute gradients
+z.backward()
+print(x.grad)
+```
+
+### Building Neural Networks
+PyTorch provides the `torch.nn` module to build neural networks.
+
+```python
+import torch
+import torch.nn as nn
+import torch.optim as optim
+
+# Define a simple neural network
+class SimpleNN(nn.Module):
+ def __init__(self):
+ super(SimpleNN, self).__init__()
+ self.fc1 = nn.Linear(3, 1)
+
+ def forward(self, x):
+ x = self.fc1(x)
+ return x
+
+# Create the network, define the criterion and optimizer
+model = SimpleNN()
+criterion = nn.MSELoss()
+optimizer = optim.SGD(model.parameters(), lr=0.01)
+
+# Dummy input and target
+inputs = torch.tensor([[1.0, 2.0, 3.0]])
+targets = torch.tensor([[0.5]])
+
+# Forward pass
+outputs = model(inputs)
+loss = criterion(outputs, targets)
+
+# Backward pass and optimization
+loss.backward()
+optimizer.step()
+
+print(f'Loss: {loss.item()}')
+```
+
+## When to Use PyTorch
+### Use PyTorch When:
+1. **Research and Development**: PyTorch's dynamic computation graph makes it ideal for experimentation and prototyping.
+2. **Computer Vision and NLP**: With extensive libraries like torchvision and torchtext, PyTorch is well-suited for these domains.
+3. **Custom Operations**: If your work involves custom layers or operations, PyTorch provides the flexibility to implement and integrate them easily.
+4. **Community and Ecosystem**: If you prefer a strong community support and extensive third-party resources, PyTorch is a good choice.
+
+### Consider Alternatives When:
+1. **Production Deployment**: While PyTorch has made strides in deployment (e.g., TorchServe), TensorFlow's TensorFlow Serving is more mature for large-scale deployment.
+2. **Static Graphs**: If your model architecture doesn't change frequently and you prefer static computation graphs, TensorFlow might be more suitable.
+3. **Multi-Language Support**: If you need integration with languages other than Python (e.g., Java, JavaScript), TensorFlow offers better support.
+
+## Conclusion
+PyTorch is a powerful and flexible deep learning framework that caters to both researchers and practitioners. Its ease of use, dynamic computation graph, and strong community support make it an excellent choice for many machine learning tasks. However, for certain production scenarios or specific requirements, alternatives like TensorFlow may be more appropriate.
+
+## Additional Resources
+- [PyTorch Official Documentation](https://pytorch.org/docs/stable/index.html)
+- [PyTorch Tutorials](https://pytorch.org/tutorials/)
+- [PyTorch Forum](https://discuss.pytorch.org/)
+
+Feel free to explore and experiment with PyTorch to harness the full potential of this versatile framework!
\ No newline at end of file
diff --git a/contrib/machine-learning/index.md b/contrib/machine-learning/index.md
index 45235e4..edb0860 100644
--- a/contrib/machine-learning/index.md
+++ b/contrib/machine-learning/index.md
@@ -7,3 +7,4 @@
- [Support Vector Machine Algorithm](support-vector-machine.md)
- [Artificial Neural Network from the Ground Up](ArtificialNeuralNetwork.md)
- [TensorFlow.md](tensorFlow.md)
+- [PyTorch.md](PyTorch.md)
From ce0fc1208d986f166487a35bfcbe8fcfd47c1f61 Mon Sep 17 00:00:00 2001
From: Ramya Korupolu <104009248+Ramya-korupolu@users.noreply.github.com>
Date: Sat, 25 May 2024 12:34:32 +0530
Subject: [PATCH 27/72] Update sorting-algorithms.md
---
contrib/ds-algorithms/sorting-algorithms.md | 159 ++++++++++++++++++++
1 file changed, 159 insertions(+)
diff --git a/contrib/ds-algorithms/sorting-algorithms.md b/contrib/ds-algorithms/sorting-algorithms.md
index 6423b4b..25bee49 100644
--- a/contrib/ds-algorithms/sorting-algorithms.md
+++ b/contrib/ds-algorithms/sorting-algorithms.md
@@ -327,3 +327,162 @@ print("Sorted array:", arr) # Output: [3, 9, 10, 27, 38, 43, 82]
+
+# 5. Insertion Sort
+
+Insertion sort is a straightforward and efficient sorting algorithm for small datasets. It builds the final sorted array one element at a time. It is much like sorting playing cards in your hands: you take one card at a time and insert it into its correct position among the already sorted cards.
+
+**Algorithm Overview:**
+- **Start from the Second Element:** Begin with the second element, assuming the first element is already sorted.
+- **Compare with Sorted Subarray:** Take the current element and compare it with elements in the sorted subarray (the part of the array before the current element).
+- **Insert in Correct Position:** Shift all elements in the sorted subarray that are greater than the current element to one position ahead. Insert the current element into its correct position.
+- **Repeat Until End:** Repeat this process for all elements in the array.
+
+## Example with Visualization
+Let's sort the list `[5, 3, 8, 1, 2]` using insertion sort.
+
+**Step-by-Step Visualization:**
+**Initial List:** `[5, 3, 8, 1, 2]`
+
+1. **Pass 1:**
+ - Current element: 3
+ - Compare 3 with 5, move 5 to the right: `[5, 5, 8, 1, 2]`
+ - Insert 3 in its correct position: `[3, 5, 8, 1, 2]`
+
+2. **Pass 2:**
+ - Current element: 8
+ - 8 is already in the correct position: `[3, 5, 8, 1, 2]`
+
+3. **Pass 3:**
+ - Current element: 1
+ - Compare 1 with 8, move 8 to the right: `[3, 5, 8, 8, 2]`
+ - Compare 1 with 5, move 5 to the right: `[3, 5, 5, 8, 2]`
+ - Compare 1 with 3, move 3 to the right: `[3, 3, 5, 8, 2]`
+ - Insert 1 in its correct position: `[1, 3, 5, 8, 2]`
+
+4. **Pass 4:**
+ - Current element: 2
+ - Compare 2 with 8, move 8 to the right: `[1, 3, 5, 8, 8]`
+ - Compare 2 with 5, move 5 to the right: `[1, 3, 5, 5, 8]`
+ - Compare 2 with 3, move 3 to the right: `[1, 3, 3, 5, 8]`
+ - Insert 2 in its correct position: `[1, 2, 3, 5, 8]`
+
+## Insertion Sort Code in Python
+
+
+```python
+
+def insertion_sort(arr):
+ # Traverse from 1 to len(arr)
+ for i in range(1, len(arr)):
+ key = arr[i]
+ # Move elements of arr[0..i-1], that are greater than key,
+ # to one position ahead of their current position
+ j = i - 1
+ while j >= 0 and key < arr[j]:
+ arr[j + 1] = arr[j]
+ j -= 1
+ arr[j + 1] = key
+
+# Example usage
+arr = [5, 3, 8, 1, 2]
+insertion_sort(arr)
+print("Sorted array:", arr) # Output: [1, 2, 3, 5, 8]
+```
+## Complexity Analysis
+ - **Worst Case:** `𝑂(𝑛^2)` comparisons and swaps. This occurs when the array is in reverse order.
+ - **Best Case:** `𝑂(𝑛)` comparisons and `𝑂(1)` swaps. This happens when the array is already sorted.
+ - **Average Case:** `𝑂(𝑛^2)` comparisons and swaps. This is the expected number of comparisons and swaps over all possible input sequences.
+
+
+
+
+
+
+# 6. Heap Sort
+
+Heap Sort is an efficient comparison-based sorting algorithm that uses a binary heap data structure. It divides its input into a sorted and an unsorted region and iteratively shrinks the unsorted region by extracting the largest (or smallest) element and moving it to the sorted region.
+
+**Algorithm Overview:**
+- **Build a Max Heap:** Convert the array into a max heap, a complete binary tree where the value of each node is greater than or equal to the values of its children.
+- **Heapify:** Ensure that the subtree rooted at each node satisfies the max heap property. This process is called heapify.
+- **Extract Maximum:** Swap the root (the maximum element) with the last element of the heap and reduce the heap size by one. Restore the max heap property by heapifying the root.
+- **Repeat:** Continue extracting the maximum element and heapifying until the entire array is sorted.
+
+## Example with Visualization
+
+Let's sort the list `[5, 3, 8, 1, 2]` using heap sort.
+
+1. **Build Max Heap:**
+ - Initial array: `[5, 3, 8, 1, 2]`
+ - Start heapifying from the last non-leaf node.
+ - Heapify at index 1: `[5, 3, 8, 1, 2]` (no change, children are already less than the parent)
+ - Heapify at index 0: `[8, 3, 5, 1, 2]` (swap 5 and 8 to make 8 the root)
+
+2. **Heapify Process:**
+ - Heapify at index 0: `[8, 3, 5, 1, 2]` (no change needed, already a max heap)
+
+3. **Extract Maximum:**
+ - Swap root with the last element: `[2, 3, 5, 1, 8]`
+ - Heapify at index 0: `[5, 3, 2, 1, 8]` (swap 2 and 5)
+
+4. **Repeat Extraction:**
+ - Swap root with the second last element: `[1, 3, 2, 5, 8]`
+ - Heapify at index 0: `[3, 1, 2, 5, 8]` (swap 1 and 3)
+ - Swap root with the third last element: `[2, 1, 3, 5, 8]`
+ - Heapify at index 0: `[2, 1, 3, 5, 8]` (no change needed)
+ - Swap root with the fourth last element: `[1, 2, 3, 5, 8]`
+
+After all extractions, the array is sorted: `[1, 2, 3, 5, 8]`.
+
+## Heap Sort Code in Python
+
+```python
+def heapify(arr, n, i):
+ largest = i # Initialize largest as root
+ left = 2 * i + 1 # left child index
+ right = 2 * i + 2 # right child index
+
+ # See if left child of root exists and is greater than root
+ if left < n and arr[largest] < arr[left]:
+ largest = left
+
+ # See if right child of root exists and is greater than root
+ if right < n and arr[largest] < arr[right]:
+ largest = right
+
+ # Change root, if needed
+ if largest != i:
+ arr[i], arr[largest] = arr[largest], arr[i] # swap
+
+ # Heapify the root.
+ heapify(arr, n, largest)
+
+def heap_sort(arr):
+ n = len(arr)
+
+ # Build a maxheap.
+ for i in range(n // 2 - 1, -1, -1):
+ heapify(arr, n, i)
+
+ # One by one extract elements
+ for i in range(n - 1, 0, -1):
+ arr[i], arr[0] = arr[0], arr[i] # swap
+ heapify(arr, i, 0)
+
+# Example usage
+arr = [5, 3, 8, 1, 2]
+heap_sort(arr)
+print("Sorted array:", arr) # Output: [1, 2, 3, 5, 8]
+```
+
+## Complexity Analysis
+ - **Worst Case:** `𝑂(𝑛log𝑛)`. Building the heap takes `𝑂(𝑛)` time, and each of the 𝑛 element extractions takes `𝑂(log𝑛)` time.
+ - **Best Case:** `𝑂(𝑛log𝑛)`. Even if the array is already sorted, heap sort will still build the heap and perform the extractions.
+ - **Average Case:** `𝑂(𝑛log𝑛)`. Similar to the worst-case, the overall complexity remains `𝑂(𝑛log𝑛)` because each insertion and deletion in a heap takes `𝑂(log𝑛)` time, and these operations are performed 𝑛 times.
+
+
+
+
+
+
From 7db982f3a3b94320c5638f7925cfa64054d1bd51 Mon Sep 17 00:00:00 2001
From: Labqari
Date: Sat, 25 May 2024 12:50:18 +0530
Subject: [PATCH 28/72] Adding Flask
---
contrib/web-scrapping/index.md | 1 +
...duction-to-flask-a-python-web-framework.md | 440 ++++++++++++++++++
2 files changed, 441 insertions(+)
create mode 100644 contrib/web-scrapping/introduction-to-flask-a-python-web-framework.md
diff --git a/contrib/web-scrapping/index.md b/contrib/web-scrapping/index.md
index 82596a2..a78be3d 100644
--- a/contrib/web-scrapping/index.md
+++ b/contrib/web-scrapping/index.md
@@ -1,3 +1,4 @@
# List of sections
- [Section title](filename.md)
+- [Introduction-to-flask-a-python-web-framework](introduction-to-flask-a-python-web-framework.md)
diff --git a/contrib/web-scrapping/introduction-to-flask-a-python-web-framework.md b/contrib/web-scrapping/introduction-to-flask-a-python-web-framework.md
new file mode 100644
index 0000000..957f39b
--- /dev/null
+++ b/contrib/web-scrapping/introduction-to-flask-a-python-web-framework.md
@@ -0,0 +1,440 @@
+Sure, here's the guide without Markdown formatting:
+
+---
+
+# Introduction to Flask: A Python Web Framework
+
+## Table of Contents
+1. Introduction
+2. Prerequisites
+3. Setting Up Your Environment
+4. Creating Your First Flask Application
+ - Project Structure
+ - Hello World Application
+5. Routing
+6. Templates and Static Files
+ - Jinja2 Templating Engine
+ - Serving Static Files
+7. Working with Forms
+ - Handling Form Data
+8. Database Integration
+ - Setting Up SQLAlchemy
+ - Performing CRUD Operations
+9. Error Handling
+10. Testing Your Application
+11. Deploying Your Flask Application
+ - Using Gunicorn
+ - Deploying to Render
+12. Conclusion
+13. Further Reading and Resources
+
+---
+
+## 1. Introduction
+Flask is a lightweight WSGI web application framework in Python. It is designed with simplicity and flexibility in mind, allowing developers to create web applications with minimal setup. Flask was created by Armin Ronacher as part of the Pocoo project and has gained popularity for its ease of use and extensive documentation.
+
+## 2. Prerequisites
+Before starting with Flask, ensure you have the following:
+- Basic knowledge of Python.
+- Understanding of web development concepts (HTML, CSS, JavaScript).
+- Python installed on your machine (version 3.6 or higher).
+- pip (Python package installer) installed.
+
+## 3. Setting Up Your Environment
+1. **Install Python**: Download and install Python from python.org.
+2. **Create a Virtual Environment**:
+ ```
+ python -m venv venv
+ ```
+3. **Activate the Virtual Environment**:
+ - On Windows:
+ ```
+ venv\Scripts\activate
+ ```
+ - On macOS/Linux:
+ ```
+ source venv/bin/activate
+ ```
+4. **Install Flask**:
+ ```
+ pip install Flask
+ ```
+
+## 4. Creating Your First Flask Application
+### Project Structure
+A typical Flask project structure might look like this:
+```
+my_flask_app/
+ app/
+ __init__.py
+ routes.py
+ templates/
+ static/
+ venv/
+ run.py
+```
+
+### Hello World Application
+1. **Create a Directory for Your Project**:
+ ```
+ mkdir my_flask_app
+ cd my_flask_app
+ ```
+2. **Initialize the Application**:
+ - Create `app/__init__.py`:
+ ```python
+ from flask import Flask
+
+ def create_app():
+ app = Flask(__name__)
+
+ with app.app_context():
+ from . import routes
+ return app
+ ```
+ - Create `run.py`:
+ ```python
+ from app import create_app
+
+ app = create_app()
+
+ if __name__ == "__main__":
+ app.run(debug=True)
+ ```
+ - Create `app/routes.py`:
+ ```python
+ from flask import current_app as app
+
+ @app.route('/')
+ def hello_world():
+ return 'Hello, World!'
+ ```
+
+3. **Run the Application**:
+ ```
+ python run.py
+ ```
+ Navigate to `http://127.0.0.1:5000` in your browser to see "Hello, World!".
+
+## 5. Routing
+In Flask, routes are defined using the `@app.route` decorator. Here's an example of different routes:
+
+```python
+from flask import Flask
+
+app = Flask(__name__)
+
+@app.route('/')
+def home():
+ return 'Home Page'
+
+@app.route('/about')
+def about():
+ return 'About Page'
+
+@app.route('/user/')
+def show_user_profile(username):
+ return f'User: {username}'
+```
+
+- **Explanation**:
+ - The `@app.route('/')` decorator binds the URL `'/'` to the `home` function, which returns 'Home Page'.
+ - The `@app.route('/about')` decorator binds the URL `/about` to the `about` function.
+ - The `@app.route('/user/')` decorator binds the URL `/user/` to the `show_user_profile` function, capturing the part of the URL as the `username` variable.
+
+## 6. Templates and Static Files
+### Jinja2 Templating Engine
+Jinja2 is Flask's templating engine. Templates are HTML files that can include dynamic content.
+
+- **Create a Template**:
+ - `app/templates/index.html`:
+ ```html
+
+
+
+ {{ title }}
+
+
+
{{ heading }}
+
{{ content }}
+
+
+ ```
+
+- **Render the Template**:
+ ```python
+ from flask import Flask, render_template
+
+ app = Flask(__name__)
+
+ @app.route('/')
+ def home():
+ return render_template('index.html', title='Home', heading='Welcome to Flask', content='This is a Flask application.')
+ ```
+
+### Serving Static Files
+Static files like CSS, JavaScript, and images are placed in the `static` directory.
+
+- **Create Static Files**:
+ - `app/static/style.css`:
+ ```css
+ body {
+ font-family: Arial, sans-serif;
+ }
+ ```
+
+- **Include Static Files in Templates**:
+ ```html
+
+
+
+ {{ title }}
+
+
+
+
{{ heading }}
+
{{ content }}
+
+
+ ```
+
+## 7. Working with Forms
+### Handling Form Data
+Forms are used to collect user input. Flask provides utilities to handle form submissions.
+
+- **Create a Form**:
+ - `app/templates/form.html`:
+ ```html
+
+
+
+ Form
+
+
+
+
+
+ ```
+
+- **Handle Form Submission**:
+ ```python
+ from flask import Flask, request, render_template
+
+ app = Flask(__name__)
+
+ @app.route('/form')
+ def form():
+ return render_template('form.html')
+
+ @app.route('/submit', methods=['POST'])
+ def submit():
+ name = request.form['name']
+ return f'Hello, {name}!'
+ ```
+
+- **Explanation**:
+ - The `@app.route('/form')` route renders the form.
+ - The `@app.route('/submit', methods=['POST'])` route handles the form submission and displays the input name.
+
+## 8. Database Integration
+### Setting Up SQLAlchemy
+SQLAlchemy is an ORM that allows you to interact with databases using Python objects.
+
+- **Install SQLAlchemy**:
+ ```
+ pip install flask_sqlalchemy
+ ```
+
+- **Configure SQLAlchemy**:
+ - `app/__init__.py`:
+ ```python
+ from flask import Flask
+ from flask_sqlalchemy import SQLAlchemy
+
+ db = SQLAlchemy()
+
+ def create_app():
+ app = Flask(__name__)
+ app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///site.db'
+ db.init_app(app)
+ return app
+ ```
+
+### Performing CRUD Operations
+Define models and perform CRUD operations.
+
+- **Define a Model**:
+ - `app/models.py`:
+ ```python
+ from app import db
+
+ class User(db.Model):
+ id = db.Column(db.Integer, primary key=True)
+ username = db.Column(db.String(80), unique=True, nullable=False)
+
+ def __repr__(self):
+ return f''
+ ```
+
+- **Create the Database**:
+ ```python
+ from app import create_app, db
+ from app.models import User
+
+ app = create_app()
+ with app.app_context():
+ db.create_all()
+ ```
+
+- **Perform CRUD Operations**:
+ ```python
+ from app import db
+ from app.models import User
+
+ # Create
+ new_user = User(username='new_user')
+ db.session.add(new_user)
+ db.session.commit()
+
+ # Read
+ user = User.query.first()
+
+ # Update
+ user.username = 'updated_user'
+ db.session.commit()
+
+ # Delete
+ db.session.delete(user)
+ db.session.commit()
+ ```
+
+## 9. Error Handling
+Error handling in Flask can be managed by defining error handlers for different HTTP status codes.
+
+- **Define an Error Handler**:
+ ```python
+ from flask import Flask, render_template
+
+ app = Flask(__name__)
+
+ @app.errorhandler(404)
+ def page_not_found(e):
+ return render_template('404.html'), 404
+
+ @app.errorhandler(500)
+ def internal_server_error(e):
+ return render_template('500.html'), 500
+ ```
+
+ - **Create Error Pages**:
+ `app/templates/404.html`:
+
+
+
+
+ Page Not Found
+
+
+
Something went wrong on our end. Please try again later.
+
+
+
+
+## 10. Testing Your Application
+Flask applications can be tested using Python's built-in `unittest` framework.
+
+- **Write a Test Case**:
+ - `tests/test_app.py`:
+ ```python
+ import unittest
+ from app import create_app
+
+ class BasicTestCase(unittest.TestCase):
+ def setUp(self):
+ self.app = create_app()
+ self.app.config['TESTING'] = True
+ self.client = self.app.test_client()
+
+ def test_home(self):
+ response = self.client.get('/')
+ self.assertEqual(response.status_code, 200)
+ self.assertIn(b'Hello, World!', response.data)
+
+ if __name__ == '__main__':
+ unittest.main()
+ ```
+
+ - **Run the Tests**:
+ ```
+ python -m unittest discover -s tests
+ ```
+
+## 11. Deploying Your Flask Application
+### Using Gunicorn
+Gunicorn is a Python WSGI HTTP Server for UNIX. It’s a pre-fork worker model, meaning that it forks multiple worker processes to handle requests.
+
+- **Install Gunicorn**:
+ ```
+ pip install gunicorn
+ ```
+
+- **Run Your Application with Gunicorn**:
+ ```
+ gunicorn -w 4 run:app
+ ```
+
+### Deploying to Render
+Render is a cloud platform for deploying web applications.
+
+- **Create a `requirements.txt` File**:
+ ```
+ Flask
+ gunicorn
+ flask_sqlalchemy
+ ```
+
+- **Create a `render.yaml` File**:
+ ```yaml
+ services:
+ - type: web
+ name: my-flask-app
+ env: python
+ plan: free
+ buildCommand: pip install -r requirements.txt
+ startCommand: gunicorn -w 4 run:app
+ ```
+
+- **Deploy Your Application**:
+ 1. Push your code to a Git repository.
+ 2. Sign in to Render and create a new Web Service.
+ 3. Connect your repository and select the branch to deploy.
+ 4. Render will automatically use the `render.yaml` file to configure and deploy your application.
+
+## 12. Conclusion
+Flask is a powerful and flexible framework for building web applications in Python. It offers simplicity and ease of use, making it a great choice for both beginners and experienced developers. This guide covered the basics of setting up a Flask application, routing, templating, working with forms, integrating databases, error handling, testing, and deployment.
+
+## 13. Further Reading and Resources
+- Flask Documentation: https://flask.palletsprojects.com/en/latest/
+- Jinja2 Documentation: https://jinja.palletsprojects.com/en/latest/
+- SQLAlchemy Documentation: https://docs.sqlalchemy.org/en/latest/
+- Render Documentation: https://render.com/docs
\ No newline at end of file
From 365cc3a62f07d3b013529bca18590f0041524fee Mon Sep 17 00:00:00 2001
From: Labqari
Date: Sat, 25 May 2024 13:04:32 +0530
Subject: [PATCH 29/72] flask commit
---
contrib/advanced-python/index.md | 1 -
...duction-to-flask-a-python-web-framework.md | 440 ------------------
2 files changed, 441 deletions(-)
delete mode 100644 contrib/advanced-python/introduction-to-flask-a-python-web-framework.md
diff --git a/contrib/advanced-python/index.md b/contrib/advanced-python/index.md
index 027f989..5ea5081 100644
--- a/contrib/advanced-python/index.md
+++ b/contrib/advanced-python/index.md
@@ -1,4 +1,3 @@
# List of sections
- [Decorators/\*args/**kwargs](decorator-kwargs-args.md)
-- [Decorators/\*args/**kwargs](introduction-to-flask-a-python-web-framework.md)
diff --git a/contrib/advanced-python/introduction-to-flask-a-python-web-framework.md b/contrib/advanced-python/introduction-to-flask-a-python-web-framework.md
deleted file mode 100644
index 957f39b..0000000
--- a/contrib/advanced-python/introduction-to-flask-a-python-web-framework.md
+++ /dev/null
@@ -1,440 +0,0 @@
-Sure, here's the guide without Markdown formatting:
-
----
-
-# Introduction to Flask: A Python Web Framework
-
-## Table of Contents
-1. Introduction
-2. Prerequisites
-3. Setting Up Your Environment
-4. Creating Your First Flask Application
- - Project Structure
- - Hello World Application
-5. Routing
-6. Templates and Static Files
- - Jinja2 Templating Engine
- - Serving Static Files
-7. Working with Forms
- - Handling Form Data
-8. Database Integration
- - Setting Up SQLAlchemy
- - Performing CRUD Operations
-9. Error Handling
-10. Testing Your Application
-11. Deploying Your Flask Application
- - Using Gunicorn
- - Deploying to Render
-12. Conclusion
-13. Further Reading and Resources
-
----
-
-## 1. Introduction
-Flask is a lightweight WSGI web application framework in Python. It is designed with simplicity and flexibility in mind, allowing developers to create web applications with minimal setup. Flask was created by Armin Ronacher as part of the Pocoo project and has gained popularity for its ease of use and extensive documentation.
-
-## 2. Prerequisites
-Before starting with Flask, ensure you have the following:
-- Basic knowledge of Python.
-- Understanding of web development concepts (HTML, CSS, JavaScript).
-- Python installed on your machine (version 3.6 or higher).
-- pip (Python package installer) installed.
-
-## 3. Setting Up Your Environment
-1. **Install Python**: Download and install Python from python.org.
-2. **Create a Virtual Environment**:
- ```
- python -m venv venv
- ```
-3. **Activate the Virtual Environment**:
- - On Windows:
- ```
- venv\Scripts\activate
- ```
- - On macOS/Linux:
- ```
- source venv/bin/activate
- ```
-4. **Install Flask**:
- ```
- pip install Flask
- ```
-
-## 4. Creating Your First Flask Application
-### Project Structure
-A typical Flask project structure might look like this:
-```
-my_flask_app/
- app/
- __init__.py
- routes.py
- templates/
- static/
- venv/
- run.py
-```
-
-### Hello World Application
-1. **Create a Directory for Your Project**:
- ```
- mkdir my_flask_app
- cd my_flask_app
- ```
-2. **Initialize the Application**:
- - Create `app/__init__.py`:
- ```python
- from flask import Flask
-
- def create_app():
- app = Flask(__name__)
-
- with app.app_context():
- from . import routes
- return app
- ```
- - Create `run.py`:
- ```python
- from app import create_app
-
- app = create_app()
-
- if __name__ == "__main__":
- app.run(debug=True)
- ```
- - Create `app/routes.py`:
- ```python
- from flask import current_app as app
-
- @app.route('/')
- def hello_world():
- return 'Hello, World!'
- ```
-
-3. **Run the Application**:
- ```
- python run.py
- ```
- Navigate to `http://127.0.0.1:5000` in your browser to see "Hello, World!".
-
-## 5. Routing
-In Flask, routes are defined using the `@app.route` decorator. Here's an example of different routes:
-
-```python
-from flask import Flask
-
-app = Flask(__name__)
-
-@app.route('/')
-def home():
- return 'Home Page'
-
-@app.route('/about')
-def about():
- return 'About Page'
-
-@app.route('/user/')
-def show_user_profile(username):
- return f'User: {username}'
-```
-
-- **Explanation**:
- - The `@app.route('/')` decorator binds the URL `'/'` to the `home` function, which returns 'Home Page'.
- - The `@app.route('/about')` decorator binds the URL `/about` to the `about` function.
- - The `@app.route('/user/')` decorator binds the URL `/user/` to the `show_user_profile` function, capturing the part of the URL as the `username` variable.
-
-## 6. Templates and Static Files
-### Jinja2 Templating Engine
-Jinja2 is Flask's templating engine. Templates are HTML files that can include dynamic content.
-
-- **Create a Template**:
- - `app/templates/index.html`:
- ```html
-
-
-
- {{ title }}
-
-
-
{{ heading }}
-
{{ content }}
-
-
- ```
-
-- **Render the Template**:
- ```python
- from flask import Flask, render_template
-
- app = Flask(__name__)
-
- @app.route('/')
- def home():
- return render_template('index.html', title='Home', heading='Welcome to Flask', content='This is a Flask application.')
- ```
-
-### Serving Static Files
-Static files like CSS, JavaScript, and images are placed in the `static` directory.
-
-- **Create Static Files**:
- - `app/static/style.css`:
- ```css
- body {
- font-family: Arial, sans-serif;
- }
- ```
-
-- **Include Static Files in Templates**:
- ```html
-
-
-
- {{ title }}
-
-
-
-
{{ heading }}
-
{{ content }}
-
-
- ```
-
-## 7. Working with Forms
-### Handling Form Data
-Forms are used to collect user input. Flask provides utilities to handle form submissions.
-
-- **Create a Form**:
- - `app/templates/form.html`:
- ```html
-
-
-
- Form
-
-
-
-
-
- ```
-
-- **Handle Form Submission**:
- ```python
- from flask import Flask, request, render_template
-
- app = Flask(__name__)
-
- @app.route('/form')
- def form():
- return render_template('form.html')
-
- @app.route('/submit', methods=['POST'])
- def submit():
- name = request.form['name']
- return f'Hello, {name}!'
- ```
-
-- **Explanation**:
- - The `@app.route('/form')` route renders the form.
- - The `@app.route('/submit', methods=['POST'])` route handles the form submission and displays the input name.
-
-## 8. Database Integration
-### Setting Up SQLAlchemy
-SQLAlchemy is an ORM that allows you to interact with databases using Python objects.
-
-- **Install SQLAlchemy**:
- ```
- pip install flask_sqlalchemy
- ```
-
-- **Configure SQLAlchemy**:
- - `app/__init__.py`:
- ```python
- from flask import Flask
- from flask_sqlalchemy import SQLAlchemy
-
- db = SQLAlchemy()
-
- def create_app():
- app = Flask(__name__)
- app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///site.db'
- db.init_app(app)
- return app
- ```
-
-### Performing CRUD Operations
-Define models and perform CRUD operations.
-
-- **Define a Model**:
- - `app/models.py`:
- ```python
- from app import db
-
- class User(db.Model):
- id = db.Column(db.Integer, primary key=True)
- username = db.Column(db.String(80), unique=True, nullable=False)
-
- def __repr__(self):
- return f''
- ```
-
-- **Create the Database**:
- ```python
- from app import create_app, db
- from app.models import User
-
- app = create_app()
- with app.app_context():
- db.create_all()
- ```
-
-- **Perform CRUD Operations**:
- ```python
- from app import db
- from app.models import User
-
- # Create
- new_user = User(username='new_user')
- db.session.add(new_user)
- db.session.commit()
-
- # Read
- user = User.query.first()
-
- # Update
- user.username = 'updated_user'
- db.session.commit()
-
- # Delete
- db.session.delete(user)
- db.session.commit()
- ```
-
-## 9. Error Handling
-Error handling in Flask can be managed by defining error handlers for different HTTP status codes.
-
-- **Define an Error Handler**:
- ```python
- from flask import Flask, render_template
-
- app = Flask(__name__)
-
- @app.errorhandler(404)
- def page_not_found(e):
- return render_template('404.html'), 404
-
- @app.errorhandler(500)
- def internal_server_error(e):
- return render_template('500.html'), 500
- ```
-
- - **Create Error Pages**:
- `app/templates/404.html`:
-
-
-
-
- Page Not Found
-
-
-
Something went wrong on our end. Please try again later.
-
-
-
-
-## 10. Testing Your Application
-Flask applications can be tested using Python's built-in `unittest` framework.
-
-- **Write a Test Case**:
- - `tests/test_app.py`:
- ```python
- import unittest
- from app import create_app
-
- class BasicTestCase(unittest.TestCase):
- def setUp(self):
- self.app = create_app()
- self.app.config['TESTING'] = True
- self.client = self.app.test_client()
-
- def test_home(self):
- response = self.client.get('/')
- self.assertEqual(response.status_code, 200)
- self.assertIn(b'Hello, World!', response.data)
-
- if __name__ == '__main__':
- unittest.main()
- ```
-
- - **Run the Tests**:
- ```
- python -m unittest discover -s tests
- ```
-
-## 11. Deploying Your Flask Application
-### Using Gunicorn
-Gunicorn is a Python WSGI HTTP Server for UNIX. It’s a pre-fork worker model, meaning that it forks multiple worker processes to handle requests.
-
-- **Install Gunicorn**:
- ```
- pip install gunicorn
- ```
-
-- **Run Your Application with Gunicorn**:
- ```
- gunicorn -w 4 run:app
- ```
-
-### Deploying to Render
-Render is a cloud platform for deploying web applications.
-
-- **Create a `requirements.txt` File**:
- ```
- Flask
- gunicorn
- flask_sqlalchemy
- ```
-
-- **Create a `render.yaml` File**:
- ```yaml
- services:
- - type: web
- name: my-flask-app
- env: python
- plan: free
- buildCommand: pip install -r requirements.txt
- startCommand: gunicorn -w 4 run:app
- ```
-
-- **Deploy Your Application**:
- 1. Push your code to a Git repository.
- 2. Sign in to Render and create a new Web Service.
- 3. Connect your repository and select the branch to deploy.
- 4. Render will automatically use the `render.yaml` file to configure and deploy your application.
-
-## 12. Conclusion
-Flask is a powerful and flexible framework for building web applications in Python. It offers simplicity and ease of use, making it a great choice for both beginners and experienced developers. This guide covered the basics of setting up a Flask application, routing, templating, working with forms, integrating databases, error handling, testing, and deployment.
-
-## 13. Further Reading and Resources
-- Flask Documentation: https://flask.palletsprojects.com/en/latest/
-- Jinja2 Documentation: https://jinja.palletsprojects.com/en/latest/
-- SQLAlchemy Documentation: https://docs.sqlalchemy.org/en/latest/
-- Render Documentation: https://render.com/docs
\ No newline at end of file
From 1496dac821b26a46cd5bd2432af95b052cc43494 Mon Sep 17 00:00:00 2001
From: Manish kumar gupta <97523900+manishh12@users.noreply.github.com>
Date: Sat, 25 May 2024 16:10:18 +0530
Subject: [PATCH 30/72] Updated maths formulas
---
.../machine-learning/Types_of_optimizers.md | 74 ++++++++++---------
1 file changed, 38 insertions(+), 36 deletions(-)
diff --git a/contrib/machine-learning/Types_of_optimizers.md b/contrib/machine-learning/Types_of_optimizers.md
index e941597..ae2759d 100644
--- a/contrib/machine-learning/Types_of_optimizers.md
+++ b/contrib/machine-learning/Types_of_optimizers.md
@@ -6,6 +6,8 @@ Optimizers are algorithms or methods used to change the attributes of your neura
## Types of Optimizers
+
+
### 1. Gradient Descent
**Explanation:**
@@ -15,19 +17,20 @@ Gradient Descent is the simplest and most commonly used optimization algorithm.
The update rule for the parameter vector θ in gradient descent is represented by the equation:
-- \(theta_new = theta_old - alpha * gradient/)
+- $$\theta_{\text{new}} = \theta_{\text{old}} - \alpha \cdot \nabla J(\theta)$$
Where:
-- theta_old is the old parameter vector.
-- theta_new is the updated parameter vector.
-- alpha is the learning rate.
-- gradient is the gradient of the objective function with respect to the parameters.
+- θold is the old parameter vector.
+- θnew is the updated parameter vector.
+- alpha(α) is the learning rate.
+- ∇J(θ) is the gradient of the objective function with respect to the parameters.
+
**Intuition:**
- At each iteration, we calculate the gradient of the cost function.
- The parameters are updated in the opposite direction of the gradient.
-- The size of the step is controlled by the learning rate \( \alpha \).
+- The size of the step is controlled by the learning rate α.
**Advantages:**
- Simple to implement.
@@ -58,9 +61,10 @@ SGD is a variation of gradient descent where we use only one training example to
**Mathematical Formulation:**
-- \(theta = theta - alpha * dJ(theta; x_i, y_i) / d(theta)/)
+- $$θ = θ - α \cdot \frac{∂J (θ; xᵢ, yᵢ)}{∂θ}$$
-\( x_i, y_i \) are a single training example and its target.
+
+- xᵢ, yᵢ are a single training example and its target.
**Intuition:**
- At each iteration, a random training example is selected.
@@ -98,7 +102,8 @@ Mini-Batch Gradient Descent is a variation where instead of a single training ex
**Mathematical Formulation:**
-- theta = theta - alpha * (1/k) * sum(dJ(theta; x_i, y_i) / d(theta))
+- $$θ = θ - α \cdot \frac{1}{k} \sum_{i=1}^{k} \frac{∂J (θ; xᵢ, yᵢ)}{∂θ}$$
+
Where:
- \( k \) is the batch size.
@@ -141,14 +146,13 @@ Momentum helps accelerate gradient vectors in the right directions, thus leading
**Mathematical Formulation:**
-- v_t = gamma * v_{t-1} + alpha * dJ(theta) / d(theta)
-
-- theta = theta - v_t
+- $$v_t = γ \cdot v_{t-1} + α \cdot ∇J(θ)$$
+- $$θ = θ - v_t$$
where:
- \( v_t \) is the velocity.
-- \( \gamma \) is the momentum term, typically set between 0.9 and 0.99.
+- γ is the momentum term, typically set between 0.9 and 0.99.
**Intuition:**
- At each iteration, the gradient is calculated.
@@ -182,9 +186,11 @@ NAG is a variant of the gradient descent with momentum. It looks ahead by a step
**Mathematical Formulation:**
-- v_t = gamma * v_{t-1} + alpha * dJ(theta - gamma * v_{t-1}) / d(theta)
+- $$v_t = γv_{t-1} + α \cdot ∇J(θ - γ \cdot v_{t-1})$$
+
+- $$θ = θ - v_t$$
+
-- theta = theta - v_t
**Intuition:**
@@ -220,13 +226,13 @@ AdaGrad adapts the learning rate to the parameters, performing larger updates fo
**Mathematical Formulation:**
-- G_t = G_{t-1} + (dJ(theta) / d(theta)) ⊙ (dJ(theta) / d(theta))
+- $$G_t = G_{t-1} + (∂J(θ)/∂θ)^2$$
-- theta = theta - (alpha / sqrt(G_t + epsilon)) * (dJ(theta) / d(theta))
+- $$θ = θ - \frac{α}{\sqrt{G_t + ε}} \cdot ∇J(θ)$$
Where:
-- \( G_t \) is the sum of squares of the gradients up to time step \( t \).
-- \( \epsilon \) is a small constant to avoid division by zero.
+- \(G_t\) is the sum of squares of the gradients up to time step \( t \).
+- ε is a small constant to avoid division by zero.
**Intuition:**
- Accumulates the sum of the squares of the gradients for each parameter.
@@ -263,13 +269,13 @@ RMSprop modifies AdaGrad to perform well in non-convex settings by using a movin
**Mathematical Formulation:**
-E[g^2]_t = beta * E[g^2]_{t-1} + (1 - beta) * (dJ(theta) / d(theta)) ⊙ (dJ(theta) / d(theta))
+- E[g²]ₜ = βE[g²]ₜ₋₁ + (1 - β)(∂J(θ) / ∂θ)²
-theta = theta - (alpha / sqrt(E[g^2]_t + epsilon)) * (dJ(theta) / d(theta))
+- $$θ = θ - \frac{α}{\sqrt{E[g^2]_t + ε}} \cdot ∇J(θ)$$
Where:
-- \( E[g^2]_t \) is the exponentially decaying average of past squared gradients.
-- \( \beta \) is the decay rate.
+- \( E[g^2]_t \) is the exponentially decaying average of past squared gradients.
+- β is the decay rate.
**Intuition:**
- Keeps a running average of the squared gradients.
@@ -304,20 +310,16 @@ Adam (Adaptive Moment Estimation) combines the advantages of both RMSprop and Ad
**Mathematical Formulation:**
-- m_t = beta1 * m_{t-1} + (1 - beta1) * (dJ(theta) / d(theta))
-
-- v_t = beta2 * v_{t-1} + (1 - beta2) * ((dJ(theta) / d(theta))^2)
-
-- hat_m_t = m_t / (1 - beta1^t)
-
-- hat_v_t = v_t / (1 - beta2^t)
-
-- theta = theta - (alpha * hat_m_t) / (sqrt(hat_v_t) + epsilon)
+- $$m_t = β_1m_{t-1} + (1 - β_1)(∂J(θ)/∂θ)$$
+- $$v_t = β_2v_{t-1} + (1 - β_2)(∂J(θ)/∂θ)^2$$
+- $$\hat{m}_t = \frac{m_t}{1 - β_1^t}$$
+- $$\hat{v}_t = \frac{v_t}{1 - β_2^t}$$
+- $$θ = θ - \frac{α\hat{m}_t}{\sqrt{\hat{v}_t} + ε}$$
Where:
-- \( m_t \) is the first moment (mean) of the gradient.
-- \( v_t \) is the second moment (uncentered variance) of the gradient.
-- \( \beta_1, \beta_2 \) are the decay rates for the moment estimates.
+- \( mt \) is the first moment (mean) of the gradient.
+- \( vt \) is the second moment (uncentered variance) of the gradient.
+- β_1.β_2 are the decay rates for the moment estimates.
**Intuition:**
- Keeps track of both the mean and the variance of the gradients.
@@ -352,4 +354,4 @@ def adam(X, y, lr=0.01, epochs=1000, beta1=0.9, beta2=0.999, epsilon=1e-8):
These implementations are basic examples of how these optimizers can be implemented in Python using NumPy. In practice, libraries like TensorFlow and PyTorch provide highly optimized and more sophisticated implementations of these and other optimization algorithms.
----
\ No newline at end of file
+---
From 534eaca30dce735f3be6034aea0b2e9376f2643e Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 25 May 2024 19:39:50 +0530
Subject: [PATCH 31/72] Add files via upload
---
contrib/pandas/Datasets/car-sales.csv | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 contrib/pandas/Datasets/car-sales.csv
diff --git a/contrib/pandas/Datasets/car-sales.csv b/contrib/pandas/Datasets/car-sales.csv
new file mode 100644
index 0000000..63a63bf
--- /dev/null
+++ b/contrib/pandas/Datasets/car-sales.csv
@@ -0,0 +1,11 @@
+Make,Colour,Odometer (KM),Doors,Price
+Toyota,White,150043,4,"$4,000.00"
+Honda,Red,87899,4,"$5,000.00"
+Toyota,Blue,32549,3,"$7,000.00"
+BMW,Black,11179,5,"$22,000.00"
+Nissan,White,213095,4,"$3,500.00"
+Toyota,Green,99213,4,"$4,500.00"
+Honda,Blue,45698,4,"$7,500.00"
+Honda,Blue,54738,4,"$7,000.00"
+Toyota,White,60000,4,"$6,250.00"
+Nissan,White,31600,4,"$9,700.00"
\ No newline at end of file
From 5fd2169b54ec03e88b3d4d645cef209c8feab85e Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 25 May 2024 19:40:22 +0530
Subject: [PATCH 32/72] Delete contrib/pandas/Datasets/Titanic.csv
---
contrib/pandas/Datasets/Titanic.csv | 1310 ---------------------------
1 file changed, 1310 deletions(-)
delete mode 100644 contrib/pandas/Datasets/Titanic.csv
diff --git a/contrib/pandas/Datasets/Titanic.csv b/contrib/pandas/Datasets/Titanic.csv
deleted file mode 100644
index f8d49dc..0000000
--- a/contrib/pandas/Datasets/Titanic.csv
+++ /dev/null
@@ -1,1310 +0,0 @@
-"pclass","survived","name","sex","age","sibsp","parch","ticket","fare","cabin","embarked","boat","body","home.dest"
-1,1,"Allen, Miss. Elisabeth Walton","female",29,0,0,"24160",211.3375,"B5","S","2",,"St Louis, MO"
-1,1,"Allison, Master. Hudson Trevor","male",0.92,1,2,"113781",151.5500,"C22 C26","S","11",,"Montreal, PQ / Chesterville, ON"
-1,0,"Allison, Miss. Helen Loraine","female",2,1,2,"113781",151.5500,"C22 C26","S",,,"Montreal, PQ / Chesterville, ON"
-1,0,"Allison, Mr. Hudson Joshua Creighton","male",30,1,2,"113781",151.5500,"C22 C26","S",,"135","Montreal, PQ / Chesterville, ON"
-1,0,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)","female",25,1,2,"113781",151.5500,"C22 C26","S",,,"Montreal, PQ / Chesterville, ON"
-1,1,"Anderson, Mr. Harry","male",48,0,0,"19952",26.5500,"E12","S","3",,"New York, NY"
-1,1,"Andrews, Miss. Kornelia Theodosia","female",63,1,0,"13502",77.9583,"D7","S","10",,"Hudson, NY"
-1,0,"Andrews, Mr. Thomas Jr","male",39,0,0,"112050",0.0000,"A36","S",,,"Belfast, NI"
-1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)","female",53,2,0,"11769",51.4792,"C101","S","D",,"Bayside, Queens, NY"
-1,0,"Artagaveytia, Mr. Ramon","male",71,0,0,"PC 17609",49.5042,,"C",,"22","Montevideo, Uruguay"
-1,0,"Astor, Col. John Jacob","male",47,1,0,"PC 17757",227.5250,"C62 C64","C",,"124","New York, NY"
-1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)","female",18,1,0,"PC 17757",227.5250,"C62 C64","C","4",,"New York, NY"
-1,1,"Aubart, Mme. Leontine Pauline","female",24,0,0,"PC 17477",69.3000,"B35","C","9",,"Paris, France"
-1,1,"Barber, Miss. Ellen ""Nellie""","female",26,0,0,"19877",78.8500,,"S","6",,
-1,1,"Barkworth, Mr. Algernon Henry Wilson","male",80,0,0,"27042",30.0000,"A23","S","B",,"Hessle, Yorks"
-1,0,"Baumann, Mr. John D","male",,0,0,"PC 17318",25.9250,,"S",,,"New York, NY"
-1,0,"Baxter, Mr. Quigg Edmond","male",24,0,1,"PC 17558",247.5208,"B58 B60","C",,,"Montreal, PQ"
-1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)","female",50,0,1,"PC 17558",247.5208,"B58 B60","C","6",,"Montreal, PQ"
-1,1,"Bazzani, Miss. Albina","female",32,0,0,"11813",76.2917,"D15","C","8",,
-1,0,"Beattie, Mr. Thomson","male",36,0,0,"13050",75.2417,"C6","C","A",,"Winnipeg, MN"
-1,1,"Beckwith, Mr. Richard Leonard","male",37,1,1,"11751",52.5542,"D35","S","5",,"New York, NY"
-1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)","female",47,1,1,"11751",52.5542,"D35","S","5",,"New York, NY"
-1,1,"Behr, Mr. Karl Howell","male",26,0,0,"111369",30.0000,"C148","C","5",,"New York, NY"
-1,1,"Bidois, Miss. Rosalie","female",42,0,0,"PC 17757",227.5250,,"C","4",,
-1,1,"Bird, Miss. Ellen","female",29,0,0,"PC 17483",221.7792,"C97","S","8",,
-1,0,"Birnbaum, Mr. Jakob","male",25,0,0,"13905",26.0000,,"C",,"148","San Francisco, CA"
-1,1,"Bishop, Mr. Dickinson H","male",25,1,0,"11967",91.0792,"B49","C","7",,"Dowagiac, MI"
-1,1,"Bishop, Mrs. Dickinson H (Helen Walton)","female",19,1,0,"11967",91.0792,"B49","C","7",,"Dowagiac, MI"
-1,1,"Bissette, Miss. Amelia","female",35,0,0,"PC 17760",135.6333,"C99","S","8",,
-1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan","male",28,0,0,"110564",26.5500,"C52","S","D",,"Stockholm, Sweden / Washington, DC"
-1,0,"Blackwell, Mr. Stephen Weart","male",45,0,0,"113784",35.5000,"T","S",,,"Trenton, NJ"
-1,1,"Blank, Mr. Henry","male",40,0,0,"112277",31.0000,"A31","C","7",,"Glen Ridge, NJ"
-1,1,"Bonnell, Miss. Caroline","female",30,0,0,"36928",164.8667,"C7","S","8",,"Youngstown, OH"
-1,1,"Bonnell, Miss. Elizabeth","female",58,0,0,"113783",26.5500,"C103","S","8",,"Birkdale, England Cleveland, Ohio"
-1,0,"Borebank, Mr. John James","male",42,0,0,"110489",26.5500,"D22","S",,,"London / Winnipeg, MB"
-1,1,"Bowen, Miss. Grace Scott","female",45,0,0,"PC 17608",262.3750,,"C","4",,"Cooperstown, NY"
-1,1,"Bowerman, Miss. Elsie Edith","female",22,0,1,"113505",55.0000,"E33","S","6",,"St Leonards-on-Sea, England Ohio"
-1,1,"Bradley, Mr. George (""George Arthur Brayton"")","male",,0,0,"111427",26.5500,,"S","9",,"Los Angeles, CA"
-1,0,"Brady, Mr. John Bertram","male",41,0,0,"113054",30.5000,"A21","S",,,"Pomeroy, WA"
-1,0,"Brandeis, Mr. Emil","male",48,0,0,"PC 17591",50.4958,"B10","C",,"208","Omaha, NE"
-1,0,"Brewe, Dr. Arthur Jackson","male",,0,0,"112379",39.6000,,"C",,,"Philadelphia, PA"
-1,1,"Brown, Mrs. James Joseph (Margaret Tobin)","female",44,0,0,"PC 17610",27.7208,"B4","C","6",,"Denver, CO"
-1,1,"Brown, Mrs. John Murray (Caroline Lane Lamson)","female",59,2,0,"11769",51.4792,"C101","S","D",,"Belmont, MA"
-1,1,"Bucknell, Mrs. William Robert (Emma Eliza Ward)","female",60,0,0,"11813",76.2917,"D15","C","8",,"Philadelphia, PA"
-1,1,"Burns, Miss. Elizabeth Margaret","female",41,0,0,"16966",134.5000,"E40","C","3",,
-1,0,"Butt, Major. Archibald Willingham","male",45,0,0,"113050",26.5500,"B38","S",,,"Washington, DC"
-1,0,"Cairns, Mr. Alexander","male",,0,0,"113798",31.0000,,"S",,,
-1,1,"Calderhead, Mr. Edward Pennington","male",42,0,0,"PC 17476",26.2875,"E24","S","5",,"New York, NY"
-1,1,"Candee, Mrs. Edward (Helen Churchill Hungerford)","female",53,0,0,"PC 17606",27.4458,,"C","6",,"Washington, DC"
-1,1,"Cardeza, Mr. Thomas Drake Martinez","male",36,0,1,"PC 17755",512.3292,"B51 B53 B55","C","3",,"Austria-Hungary / Germantown, Philadelphia, PA"
-1,1,"Cardeza, Mrs. James Warburton Martinez (Charlotte Wardle Drake)","female",58,0,1,"PC 17755",512.3292,"B51 B53 B55","C","3",,"Germantown, Philadelphia, PA"
-1,0,"Carlsson, Mr. Frans Olof","male",33,0,0,"695",5.0000,"B51 B53 B55","S",,,"New York, NY"
-1,0,"Carrau, Mr. Francisco M","male",28,0,0,"113059",47.1000,,"S",,,"Montevideo, Uruguay"
-1,0,"Carrau, Mr. Jose Pedro","male",17,0,0,"113059",47.1000,,"S",,,"Montevideo, Uruguay"
-1,1,"Carter, Master. William Thornton II","male",11,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
-1,1,"Carter, Miss. Lucile Polk","female",14,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
-1,1,"Carter, Mr. William Ernest","male",36,1,2,"113760",120.0000,"B96 B98","S","C",,"Bryn Mawr, PA"
-1,1,"Carter, Mrs. William Ernest (Lucile Polk)","female",36,1,2,"113760",120.0000,"B96 B98","S","4",,"Bryn Mawr, PA"
-1,0,"Case, Mr. Howard Brown","male",49,0,0,"19924",26.0000,,"S",,,"Ascot, Berkshire / Rochester, NY"
-1,1,"Cassebeer, Mrs. Henry Arthur Jr (Eleanor Genevieve Fosdick)","female",,0,0,"17770",27.7208,,"C","5",,"New York, NY"
-1,0,"Cavendish, Mr. Tyrell William","male",36,1,0,"19877",78.8500,"C46","S",,"172","Little Onn Hall, Staffs"
-1,1,"Cavendish, Mrs. Tyrell William (Julia Florence Siegel)","female",76,1,0,"19877",78.8500,"C46","S","6",,"Little Onn Hall, Staffs"
-1,0,"Chaffee, Mr. Herbert Fuller","male",46,1,0,"W.E.P. 5734",61.1750,"E31","S",,,"Amenia, ND"
-1,1,"Chaffee, Mrs. Herbert Fuller (Carrie Constance Toogood)","female",47,1,0,"W.E.P. 5734",61.1750,"E31","S","4",,"Amenia, ND"
-1,1,"Chambers, Mr. Norman Campbell","male",27,1,0,"113806",53.1000,"E8","S","5",,"New York, NY / Ithaca, NY"
-1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)","female",33,1,0,"113806",53.1000,"E8","S","5",,"New York, NY / Ithaca, NY"
-1,1,"Chaudanson, Miss. Victorine","female",36,0,0,"PC 17608",262.3750,"B61","C","4",,
-1,1,"Cherry, Miss. Gladys","female",30,0,0,"110152",86.5000,"B77","S","8",,"London, England"
-1,1,"Chevre, Mr. Paul Romaine","male",45,0,0,"PC 17594",29.7000,"A9","C","7",,"Paris, France"
-1,1,"Chibnall, Mrs. (Edith Martha Bowerman)","female",,0,1,"113505",55.0000,"E33","S","6",,"St Leonards-on-Sea, England Ohio"
-1,0,"Chisholm, Mr. Roderick Robert Crispin","male",,0,0,"112051",0.0000,,"S",,,"Liverpool, England / Belfast"
-1,0,"Clark, Mr. Walter Miller","male",27,1,0,"13508",136.7792,"C89","C",,,"Los Angeles, CA"
-1,1,"Clark, Mrs. Walter Miller (Virginia McDowell)","female",26,1,0,"13508",136.7792,"C89","C","4",,"Los Angeles, CA"
-1,1,"Cleaver, Miss. Alice","female",22,0,0,"113781",151.5500,,"S","11",,
-1,0,"Clifford, Mr. George Quincy","male",,0,0,"110465",52.0000,"A14","S",,,"Stoughton, MA"
-1,0,"Colley, Mr. Edward Pomeroy","male",47,0,0,"5727",25.5875,"E58","S",,,"Victoria, BC"
-1,1,"Compton, Miss. Sara Rebecca","female",39,1,1,"PC 17756",83.1583,"E49","C","14",,"Lakewood, NJ"
-1,0,"Compton, Mr. Alexander Taylor Jr","male",37,1,1,"PC 17756",83.1583,"E52","C",,,"Lakewood, NJ"
-1,1,"Compton, Mrs. Alexander Taylor (Mary Eliza Ingersoll)","female",64,0,2,"PC 17756",83.1583,"E45","C","14",,"Lakewood, NJ"
-1,1,"Cornell, Mrs. Robert Clifford (Malvina Helen Lamson)","female",55,2,0,"11770",25.7000,"C101","S","2",,"New York, NY"
-1,0,"Crafton, Mr. John Bertram","male",,0,0,"113791",26.5500,,"S",,,"Roachdale, IN"
-1,0,"Crosby, Capt. Edward Gifford","male",70,1,1,"WE/P 5735",71.0000,"B22","S",,"269","Milwaukee, WI"
-1,1,"Crosby, Miss. Harriet R","female",36,0,2,"WE/P 5735",71.0000,"B22","S","7",,"Milwaukee, WI"
-1,1,"Crosby, Mrs. Edward Gifford (Catherine Elizabeth Halstead)","female",64,1,1,"112901",26.5500,"B26","S","7",,"Milwaukee, WI"
-1,0,"Cumings, Mr. John Bradley","male",39,1,0,"PC 17599",71.2833,"C85","C",,,"New York, NY"
-1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)","female",38,1,0,"PC 17599",71.2833,"C85","C","4",,"New York, NY"
-1,1,"Daly, Mr. Peter Denis ","male",51,0,0,"113055",26.5500,"E17","S","5 9",,"Lima, Peru"
-1,1,"Daniel, Mr. Robert Williams","male",27,0,0,"113804",30.5000,,"S","3",,"Philadelphia, PA"
-1,1,"Daniels, Miss. Sarah","female",33,0,0,"113781",151.5500,,"S","8",,
-1,0,"Davidson, Mr. Thornton","male",31,1,0,"F.C. 12750",52.0000,"B71","S",,,"Montreal, PQ"
-1,1,"Davidson, Mrs. Thornton (Orian Hays)","female",27,1,2,"F.C. 12750",52.0000,"B71","S","3",,"Montreal, PQ"
-1,1,"Dick, Mr. Albert Adrian","male",31,1,0,"17474",57.0000,"B20","S","3",,"Calgary, AB"
-1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)","female",17,1,0,"17474",57.0000,"B20","S","3",,"Calgary, AB"
-1,1,"Dodge, Dr. Washington","male",53,1,1,"33638",81.8583,"A34","S","13",,"San Francisco, CA"
-1,1,"Dodge, Master. Washington","male",4,0,2,"33638",81.8583,"A34","S","5",,"San Francisco, CA"
-1,1,"Dodge, Mrs. Washington (Ruth Vidaver)","female",54,1,1,"33638",81.8583,"A34","S","5",,"San Francisco, CA"
-1,0,"Douglas, Mr. Walter Donald","male",50,1,0,"PC 17761",106.4250,"C86","C",,"62","Deephaven, MN / Cedar Rapids, IA"
-1,1,"Douglas, Mrs. Frederick Charles (Mary Helene Baxter)","female",27,1,1,"PC 17558",247.5208,"B58 B60","C","6",,"Montreal, PQ"
-1,1,"Douglas, Mrs. Walter Donald (Mahala Dutton)","female",48,1,0,"PC 17761",106.4250,"C86","C","2",,"Deephaven, MN / Cedar Rapids, IA"
-1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")","female",48,1,0,"11755",39.6000,"A16","C","1",,"London / Paris"
-1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")","male",49,1,0,"PC 17485",56.9292,"A20","C","1",,"London / Paris"
-1,0,"Dulles, Mr. William Crothers","male",39,0,0,"PC 17580",29.7000,"A18","C",,"133","Philadelphia, PA"
-1,1,"Earnshaw, Mrs. Boulton (Olive Potter)","female",23,0,1,"11767",83.1583,"C54","C","7",,"Mt Airy, Philadelphia, PA"
-1,1,"Endres, Miss. Caroline Louise","female",38,0,0,"PC 17757",227.5250,"C45","C","4",,"New York, NY"
-1,1,"Eustis, Miss. Elizabeth Mussey","female",54,1,0,"36947",78.2667,"D20","C","4",,"Brookline, MA"
-1,0,"Evans, Miss. Edith Corse","female",36,0,0,"PC 17531",31.6792,"A29","C",,,"New York, NY"
-1,0,"Farthing, Mr. John","male",,0,0,"PC 17483",221.7792,"C95","S",,,
-1,1,"Flegenheim, Mrs. Alfred (Antoinette)","female",,0,0,"PC 17598",31.6833,,"S","7",,"New York, NY"
-1,1,"Fleming, Miss. Margaret","female",,0,0,"17421",110.8833,,"C","4",,
-1,1,"Flynn, Mr. John Irwin (""Irving"")","male",36,0,0,"PC 17474",26.3875,"E25","S","5",,"Brooklyn, NY"
-1,0,"Foreman, Mr. Benjamin Laventall","male",30,0,0,"113051",27.7500,"C111","C",,,"New York, NY"
-1,1,"Fortune, Miss. Alice Elizabeth","female",24,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
-1,1,"Fortune, Miss. Ethel Flora","female",28,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
-1,1,"Fortune, Miss. Mabel Helen","female",23,3,2,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
-1,0,"Fortune, Mr. Charles Alexander","male",19,3,2,"19950",263.0000,"C23 C25 C27","S",,,"Winnipeg, MB"
-1,0,"Fortune, Mr. Mark","male",64,1,4,"19950",263.0000,"C23 C25 C27","S",,,"Winnipeg, MB"
-1,1,"Fortune, Mrs. Mark (Mary McDougald)","female",60,1,4,"19950",263.0000,"C23 C25 C27","S","10",,"Winnipeg, MB"
-1,1,"Francatelli, Miss. Laura Mabel","female",30,0,0,"PC 17485",56.9292,"E36","C","1",,
-1,0,"Franklin, Mr. Thomas Parham","male",,0,0,"113778",26.5500,"D34","S",,,"Westcliff-on-Sea, Essex"
-1,1,"Frauenthal, Dr. Henry William","male",50,2,0,"PC 17611",133.6500,,"S","5",,"New York, NY"
-1,1,"Frauenthal, Mr. Isaac Gerald","male",43,1,0,"17765",27.7208,"D40","C","5",,"New York, NY"
-1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)","female",,1,0,"PC 17611",133.6500,,"S","5",,"New York, NY"
-1,1,"Frolicher, Miss. Hedwig Margaritha","female",22,0,2,"13568",49.5000,"B39","C","5",,"Zurich, Switzerland"
-1,1,"Frolicher-Stehli, Mr. Maxmillian","male",60,1,1,"13567",79.2000,"B41","C","5",,"Zurich, Switzerland"
-1,1,"Frolicher-Stehli, Mrs. Maxmillian (Margaretha Emerentia Stehli)","female",48,1,1,"13567",79.2000,"B41","C","5",,"Zurich, Switzerland"
-1,0,"Fry, Mr. Richard","male",,0,0,"112058",0.0000,"B102","S",,,
-1,0,"Futrelle, Mr. Jacques Heath","male",37,1,0,"113803",53.1000,"C123","S",,,"Scituate, MA"
-1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)","female",35,1,0,"113803",53.1000,"C123","S","D",,"Scituate, MA"
-1,0,"Gee, Mr. Arthur H","male",47,0,0,"111320",38.5000,"E63","S",,"275","St Anne's-on-Sea, Lancashire"
-1,1,"Geiger, Miss. Amalie","female",35,0,0,"113503",211.5000,"C130","C","4",,
-1,1,"Gibson, Miss. Dorothy Winifred","female",22,0,1,"112378",59.4000,,"C","7",,"New York, NY"
-1,1,"Gibson, Mrs. Leonard (Pauline C Boeson)","female",45,0,1,"112378",59.4000,,"C","7",,"New York, NY"
-1,0,"Giglio, Mr. Victor","male",24,0,0,"PC 17593",79.2000,"B86","C",,,
-1,1,"Goldenberg, Mr. Samuel L","male",49,1,0,"17453",89.1042,"C92","C","5",,"Paris, France / New York, NY"
-1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)","female",,1,0,"17453",89.1042,"C92","C","5",,"Paris, France / New York, NY"
-1,0,"Goldschmidt, Mr. George B","male",71,0,0,"PC 17754",34.6542,"A5","C",,,"New York, NY"
-1,1,"Gracie, Col. Archibald IV","male",53,0,0,"113780",28.5000,"C51","C","B",,"Washington, DC"
-1,1,"Graham, Miss. Margaret Edith","female",19,0,0,"112053",30.0000,"B42","S","3",,"Greenwich, CT"
-1,0,"Graham, Mr. George Edward","male",38,0,1,"PC 17582",153.4625,"C91","S",,"147","Winnipeg, MB"
-1,1,"Graham, Mrs. William Thompson (Edith Junkins)","female",58,0,1,"PC 17582",153.4625,"C125","S","3",,"Greenwich, CT"
-1,1,"Greenfield, Mr. William Bertram","male",23,0,1,"PC 17759",63.3583,"D10 D12","C","7",,"New York, NY"
-1,1,"Greenfield, Mrs. Leo David (Blanche Strouse)","female",45,0,1,"PC 17759",63.3583,"D10 D12","C","7",,"New York, NY"
-1,0,"Guggenheim, Mr. Benjamin","male",46,0,0,"PC 17593",79.2000,"B82 B84","C",,,"New York, NY"
-1,1,"Harder, Mr. George Achilles","male",25,1,0,"11765",55.4417,"E50","C","5",,"Brooklyn, NY"
-1,1,"Harder, Mrs. George Achilles (Dorothy Annan)","female",25,1,0,"11765",55.4417,"E50","C","5",,"Brooklyn, NY"
-1,1,"Harper, Mr. Henry Sleeper","male",48,1,0,"PC 17572",76.7292,"D33","C","3",,"New York, NY"
-1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)","female",49,1,0,"PC 17572",76.7292,"D33","C","3",,"New York, NY"
-1,0,"Harrington, Mr. Charles H","male",,0,0,"113796",42.4000,,"S",,,
-1,0,"Harris, Mr. Henry Birkhardt","male",45,1,0,"36973",83.4750,"C83","S",,,"New York, NY"
-1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)","female",35,1,0,"36973",83.4750,"C83","S","D",,"New York, NY"
-1,0,"Harrison, Mr. William","male",40,0,0,"112059",0.0000,"B94","S",,"110",
-1,1,"Hassab, Mr. Hammad","male",27,0,0,"PC 17572",76.7292,"D49","C","3",,
-1,1,"Hawksford, Mr. Walter James","male",,0,0,"16988",30.0000,"D45","S","3",,"Kingston, Surrey"
-1,1,"Hays, Miss. Margaret Bechstein","female",24,0,0,"11767",83.1583,"C54","C","7",,"New York, NY"
-1,0,"Hays, Mr. Charles Melville","male",55,1,1,"12749",93.5000,"B69","S",,"307","Montreal, PQ"
-1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)","female",52,1,1,"12749",93.5000,"B69","S","3",,"Montreal, PQ"
-1,0,"Head, Mr. Christopher","male",42,0,0,"113038",42.5000,"B11","S",,,"London / Middlesex"
-1,0,"Hilliard, Mr. Herbert Henry","male",,0,0,"17463",51.8625,"E46","S",,,"Brighton, MA"
-1,0,"Hipkins, Mr. William Edward","male",55,0,0,"680",50.0000,"C39","S",,,"London / Birmingham"
-1,1,"Hippach, Miss. Jean Gertrude","female",16,0,1,"111361",57.9792,"B18","C","4",,"Chicago, IL"
-1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)","female",44,0,1,"111361",57.9792,"B18","C","4",,"Chicago, IL"
-1,1,"Hogeboom, Mrs. John C (Anna Andrews)","female",51,1,0,"13502",77.9583,"D11","S","10",,"Hudson, NY"
-1,0,"Holverson, Mr. Alexander Oskar","male",42,1,0,"113789",52.0000,,"S",,"38","New York, NY"
-1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)","female",35,1,0,"113789",52.0000,,"S","8",,"New York, NY"
-1,1,"Homer, Mr. Harry (""Mr E Haven"")","male",35,0,0,"111426",26.5500,,"C","15",,"Indianapolis, IN"
-1,1,"Hoyt, Mr. Frederick Maxfield","male",38,1,0,"19943",90.0000,"C93","S","D",,"New York, NY / Stamford CT"
-1,0,"Hoyt, Mr. William Fisher","male",,0,0,"PC 17600",30.6958,,"C","14",,"New York, NY"
-1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)","female",35,1,0,"19943",90.0000,"C93","S","D",,"New York, NY / Stamford CT"
-1,1,"Icard, Miss. Amelie","female",38,0,0,"113572",80.0000,"B28",,"6",,
-1,0,"Isham, Miss. Ann Elizabeth","female",50,0,0,"PC 17595",28.7125,"C49","C",,,"Paris, France New York, NY"
-1,1,"Ismay, Mr. Joseph Bruce","male",49,0,0,"112058",0.0000,"B52 B54 B56","S","C",,"Liverpool"
-1,0,"Jones, Mr. Charles Cresson","male",46,0,0,"694",26.0000,,"S",,"80","Bennington, VT"
-1,0,"Julian, Mr. Henry Forbes","male",50,0,0,"113044",26.0000,"E60","S",,,"London"
-1,0,"Keeping, Mr. Edwin","male",32.5,0,0,"113503",211.5000,"C132","C",,"45",
-1,0,"Kent, Mr. Edward Austin","male",58,0,0,"11771",29.7000,"B37","C",,"258","Buffalo, NY"
-1,0,"Kenyon, Mr. Frederick R","male",41,1,0,"17464",51.8625,"D21","S",,,"Southington / Noank, CT"
-1,1,"Kenyon, Mrs. Frederick R (Marion)","female",,1,0,"17464",51.8625,"D21","S","8",,"Southington / Noank, CT"
-1,1,"Kimball, Mr. Edwin Nelson Jr","male",42,1,0,"11753",52.5542,"D19","S","5",,"Boston, MA"
-1,1,"Kimball, Mrs. Edwin Nelson Jr (Gertrude Parsons)","female",45,1,0,"11753",52.5542,"D19","S","5",,"Boston, MA"
-1,0,"Klaber, Mr. Herman","male",,0,0,"113028",26.5500,"C124","S",,,"Portland, OR"
-1,1,"Kreuchen, Miss. Emilie","female",39,0,0,"24160",211.3375,,"S","2",,
-1,1,"Leader, Dr. Alice (Farnham)","female",49,0,0,"17465",25.9292,"D17","S","8",,"New York, NY"
-1,1,"LeRoy, Miss. Bertha","female",30,0,0,"PC 17761",106.4250,,"C","2",,
-1,1,"Lesurer, Mr. Gustave J","male",35,0,0,"PC 17755",512.3292,"B101","C","3",,
-1,0,"Lewy, Mr. Ervin G","male",,0,0,"PC 17612",27.7208,,"C",,,"Chicago, IL"
-1,0,"Lindeberg-Lind, Mr. Erik Gustaf (""Mr Edward Lingrey"")","male",42,0,0,"17475",26.5500,,"S",,,"Stockholm, Sweden"
-1,1,"Lindstrom, Mrs. Carl Johan (Sigrid Posse)","female",55,0,0,"112377",27.7208,,"C","6",,"Stockholm, Sweden"
-1,1,"Lines, Miss. Mary Conover","female",16,0,1,"PC 17592",39.4000,"D28","S","9",,"Paris, France"
-1,1,"Lines, Mrs. Ernest H (Elizabeth Lindsey James)","female",51,0,1,"PC 17592",39.4000,"D28","S","9",,"Paris, France"
-1,0,"Long, Mr. Milton Clyde","male",29,0,0,"113501",30.0000,"D6","S",,"126","Springfield, MA"
-1,1,"Longley, Miss. Gretchen Fiske","female",21,0,0,"13502",77.9583,"D9","S","10",,"Hudson, NY"
-1,0,"Loring, Mr. Joseph Holland","male",30,0,0,"113801",45.5000,,"S",,,"London / New York, NY"
-1,1,"Lurette, Miss. Elise","female",58,0,0,"PC 17569",146.5208,"B80","C",,,
-1,1,"Madill, Miss. Georgette Alexandra","female",15,0,1,"24160",211.3375,"B5","S","2",,"St Louis, MO"
-1,0,"Maguire, Mr. John Edward","male",30,0,0,"110469",26.0000,"C106","S",,,"Brockton, MA"
-1,1,"Maioni, Miss. Roberta","female",16,0,0,"110152",86.5000,"B79","S","8",,
-1,1,"Marechal, Mr. Pierre","male",,0,0,"11774",29.7000,"C47","C","7",,"Paris, France"
-1,0,"Marvin, Mr. Daniel Warner","male",19,1,0,"113773",53.1000,"D30","S",,,"New York, NY"
-1,1,"Marvin, Mrs. Daniel Warner (Mary Graham Carmichael Farquarson)","female",18,1,0,"113773",53.1000,"D30","S","10",,"New York, NY"
-1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")","female",24,0,0,"PC 17482",49.5042,"C90","C","6",,"Belgium Montreal, PQ"
-1,0,"McCaffry, Mr. Thomas Francis","male",46,0,0,"13050",75.2417,"C6","C",,"292","Vancouver, BC"
-1,0,"McCarthy, Mr. Timothy J","male",54,0,0,"17463",51.8625,"E46","S",,"175","Dorchester, MA"
-1,1,"McGough, Mr. James Robert","male",36,0,0,"PC 17473",26.2875,"E25","S","7",,"Philadelphia, PA"
-1,0,"Meyer, Mr. Edgar Joseph","male",28,1,0,"PC 17604",82.1708,,"C",,,"New York, NY"
-1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)","female",,1,0,"PC 17604",82.1708,,"C","6",,"New York, NY"
-1,0,"Millet, Mr. Francis Davis","male",65,0,0,"13509",26.5500,"E38","S",,"249","East Bridgewater, MA"
-1,0,"Minahan, Dr. William Edward","male",44,2,0,"19928",90.0000,"C78","Q",,"230","Fond du Lac, WI"
-1,1,"Minahan, Miss. Daisy E","female",33,1,0,"19928",90.0000,"C78","Q","14",,"Green Bay, WI"
-1,1,"Minahan, Mrs. William Edward (Lillian E Thorpe)","female",37,1,0,"19928",90.0000,"C78","Q","14",,"Fond du Lac, WI"
-1,1,"Mock, Mr. Philipp Edmund","male",30,1,0,"13236",57.7500,"C78","C","11",,"New York, NY"
-1,0,"Molson, Mr. Harry Markland","male",55,0,0,"113787",30.5000,"C30","S",,,"Montreal, PQ"
-1,0,"Moore, Mr. Clarence Bloomfield","male",47,0,0,"113796",42.4000,,"S",,,"Washington, DC"
-1,0,"Natsch, Mr. Charles H","male",37,0,1,"PC 17596",29.7000,"C118","C",,,"Brooklyn, NY"
-1,1,"Newell, Miss. Madeleine","female",31,1,0,"35273",113.2750,"D36","C","6",,"Lexington, MA"
-1,1,"Newell, Miss. Marjorie","female",23,1,0,"35273",113.2750,"D36","C","6",,"Lexington, MA"
-1,0,"Newell, Mr. Arthur Webster","male",58,0,2,"35273",113.2750,"D48","C",,"122","Lexington, MA"
-1,1,"Newsom, Miss. Helen Monypeny","female",19,0,2,"11752",26.2833,"D47","S","5",,"New York, NY"
-1,0,"Nicholson, Mr. Arthur Ernest","male",64,0,0,"693",26.0000,,"S",,"263","Isle of Wight, England"
-1,1,"Oliva y Ocana, Dona. Fermina","female",39,0,0,"PC 17758",108.9000,"C105","C","8",,
-1,1,"Omont, Mr. Alfred Fernand","male",,0,0,"F.C. 12998",25.7417,,"C","7",,"Paris, France"
-1,1,"Ostby, Miss. Helene Ragnhild","female",22,0,1,"113509",61.9792,"B36","C","5",,"Providence, RI"
-1,0,"Ostby, Mr. Engelhart Cornelius","male",65,0,1,"113509",61.9792,"B30","C",,"234","Providence, RI"
-1,0,"Ovies y Rodriguez, Mr. Servando","male",28.5,0,0,"PC 17562",27.7208,"D43","C",,"189","?Havana, Cuba"
-1,0,"Parr, Mr. William Henry Marsh","male",,0,0,"112052",0.0000,,"S",,,"Belfast"
-1,0,"Partner, Mr. Austen","male",45.5,0,0,"113043",28.5000,"C124","S",,"166","Surbiton Hill, Surrey"
-1,0,"Payne, Mr. Vivian Ponsonby","male",23,0,0,"12749",93.5000,"B24","S",,,"Montreal, PQ"
-1,0,"Pears, Mr. Thomas Clinton","male",29,1,0,"113776",66.6000,"C2","S",,,"Isleworth, England"
-1,1,"Pears, Mrs. Thomas (Edith Wearne)","female",22,1,0,"113776",66.6000,"C2","S","8",,"Isleworth, England"
-1,0,"Penasco y Castellana, Mr. Victor de Satode","male",18,1,0,"PC 17758",108.9000,"C65","C",,,"Madrid, Spain"
-1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)","female",17,1,0,"PC 17758",108.9000,"C65","C","8",,"Madrid, Spain"
-1,1,"Perreault, Miss. Anne","female",30,0,0,"12749",93.5000,"B73","S","3",,
-1,1,"Peuchen, Major. Arthur Godfrey","male",52,0,0,"113786",30.5000,"C104","S","6",,"Toronto, ON"
-1,0,"Porter, Mr. Walter Chamberlain","male",47,0,0,"110465",52.0000,"C110","S",,"207","Worcester, MA"
-1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)","female",56,0,1,"11767",83.1583,"C50","C","7",,"Mt Airy, Philadelphia, PA"
-1,0,"Reuchlin, Jonkheer. John George","male",38,0,0,"19972",0.0000,,"S",,,"Rotterdam, Netherlands"
-1,1,"Rheims, Mr. George Alexander Lucien","male",,0,0,"PC 17607",39.6000,,"S","A",,"Paris / New York, NY"
-1,0,"Ringhini, Mr. Sante","male",22,0,0,"PC 17760",135.6333,,"C",,"232",
-1,0,"Robbins, Mr. Victor","male",,0,0,"PC 17757",227.5250,,"C",,,
-1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)","female",43,0,1,"24160",211.3375,"B3","S","2",,"St Louis, MO"
-1,0,"Roebling, Mr. Washington Augustus II","male",31,0,0,"PC 17590",50.4958,"A24","S",,,"Trenton, NJ"
-1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")","male",45,0,0,"111428",26.5500,,"S","9",,"New York, NY"
-1,0,"Rood, Mr. Hugh Roscoe","male",,0,0,"113767",50.0000,"A32","S",,,"Seattle, WA"
-1,1,"Rosenbaum, Miss. Edith Louise","female",33,0,0,"PC 17613",27.7208,"A11","C","11",,"Paris, France"
-1,0,"Rosenshine, Mr. George (""Mr George Thorne"")","male",46,0,0,"PC 17585",79.2000,,"C",,"16","New York, NY"
-1,0,"Ross, Mr. John Hugo","male",36,0,0,"13049",40.1250,"A10","C",,,"Winnipeg, MB"
-1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)","female",33,0,0,"110152",86.5000,"B77","S","8",,"London Vancouver, BC"
-1,0,"Rothschild, Mr. Martin","male",55,1,0,"PC 17603",59.4000,,"C",,,"New York, NY"
-1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)","female",54,1,0,"PC 17603",59.4000,,"C","6",,"New York, NY"
-1,0,"Rowe, Mr. Alfred G","male",33,0,0,"113790",26.5500,,"S",,"109","London"
-1,1,"Ryerson, Master. John Borie","male",13,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
-1,1,"Ryerson, Miss. Emily Borie","female",18,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
-1,1,"Ryerson, Miss. Susan Parker ""Suzette""","female",21,2,2,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
-1,0,"Ryerson, Mr. Arthur Larned","male",61,1,3,"PC 17608",262.3750,"B57 B59 B63 B66","C",,,"Haverford, PA / Cooperstown, NY"
-1,1,"Ryerson, Mrs. Arthur Larned (Emily Maria Borie)","female",48,1,3,"PC 17608",262.3750,"B57 B59 B63 B66","C","4",,"Haverford, PA / Cooperstown, NY"
-1,1,"Saalfeld, Mr. Adolphe","male",,0,0,"19988",30.5000,"C106","S","3",,"Manchester, England"
-1,1,"Sagesser, Mlle. Emma","female",24,0,0,"PC 17477",69.3000,"B35","C","9",,
-1,1,"Salomon, Mr. Abraham L","male",,0,0,"111163",26.0000,,"S","1",,"New York, NY"
-1,1,"Schabert, Mrs. Paul (Emma Mock)","female",35,1,0,"13236",57.7500,"C28","C","11",,"New York, NY"
-1,1,"Serepeca, Miss. Augusta","female",30,0,0,"113798",31.0000,,"C","4",,
-1,1,"Seward, Mr. Frederic Kimber","male",34,0,0,"113794",26.5500,,"S","7",,"New York, NY"
-1,1,"Shutes, Miss. Elizabeth W","female",40,0,0,"PC 17582",153.4625,"C125","S","3",,"New York, NY / Greenwich CT"
-1,1,"Silverthorne, Mr. Spencer Victor","male",35,0,0,"PC 17475",26.2875,"E24","S","5",,"St Louis, MO"
-1,0,"Silvey, Mr. William Baird","male",50,1,0,"13507",55.9000,"E44","S",,,"Duluth, MN"
-1,1,"Silvey, Mrs. William Baird (Alice Munger)","female",39,1,0,"13507",55.9000,"E44","S","11",,"Duluth, MN"
-1,1,"Simonius-Blumer, Col. Oberst Alfons","male",56,0,0,"13213",35.5000,"A26","C","3",,"Basel, Switzerland"
-1,1,"Sloper, Mr. William Thompson","male",28,0,0,"113788",35.5000,"A6","S","7",,"New Britain, CT"
-1,0,"Smart, Mr. John Montgomery","male",56,0,0,"113792",26.5500,,"S",,,"New York, NY"
-1,0,"Smith, Mr. James Clinch","male",56,0,0,"17764",30.6958,"A7","C",,,"St James, Long Island, NY"
-1,0,"Smith, Mr. Lucien Philip","male",24,1,0,"13695",60.0000,"C31","S",,,"Huntington, WV"
-1,0,"Smith, Mr. Richard William","male",,0,0,"113056",26.0000,"A19","S",,,"Streatham, Surrey"
-1,1,"Smith, Mrs. Lucien Philip (Mary Eloise Hughes)","female",18,1,0,"13695",60.0000,"C31","S","6",,"Huntington, WV"
-1,1,"Snyder, Mr. John Pillsbury","male",24,1,0,"21228",82.2667,"B45","S","7",,"Minneapolis, MN"
-1,1,"Snyder, Mrs. John Pillsbury (Nelle Stevenson)","female",23,1,0,"21228",82.2667,"B45","S","7",,"Minneapolis, MN"
-1,1,"Spedden, Master. Robert Douglas","male",6,0,2,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
-1,1,"Spedden, Mr. Frederic Oakley","male",45,1,1,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
-1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)","female",40,1,1,"16966",134.5000,"E34","C","3",,"Tuxedo Park, NY"
-1,0,"Spencer, Mr. William Augustus","male",57,1,0,"PC 17569",146.5208,"B78","C",,,"Paris, France"
-1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)","female",,1,0,"PC 17569",146.5208,"B78","C","6",,"Paris, France"
-1,1,"Stahelin-Maeglin, Dr. Max","male",32,0,0,"13214",30.5000,"B50","C","3",,"Basel, Switzerland"
-1,0,"Stead, Mr. William Thomas","male",62,0,0,"113514",26.5500,"C87","S",,,"Wimbledon Park, London / Hayling Island, Hants"
-1,1,"Stengel, Mr. Charles Emil Henry","male",54,1,0,"11778",55.4417,"C116","C","1",,"Newark, NJ"
-1,1,"Stengel, Mrs. Charles Emil Henry (Annie May Morris)","female",43,1,0,"11778",55.4417,"C116","C","5",,"Newark, NJ"
-1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)","female",52,1,0,"36947",78.2667,"D20","C","4",,"Haverford, PA"
-1,0,"Stewart, Mr. Albert A","male",,0,0,"PC 17605",27.7208,,"C",,,"Gallipolis, Ohio / ? Paris / New York"
-1,1,"Stone, Mrs. George Nelson (Martha Evelyn)","female",62,0,0,"113572",80.0000,"B28",,"6",,"Cincinatti, OH"
-1,0,"Straus, Mr. Isidor","male",67,1,0,"PC 17483",221.7792,"C55 C57","S",,"96","New York, NY"
-1,0,"Straus, Mrs. Isidor (Rosalie Ida Blun)","female",63,1,0,"PC 17483",221.7792,"C55 C57","S",,,"New York, NY"
-1,0,"Sutton, Mr. Frederick","male",61,0,0,"36963",32.3208,"D50","S",,"46","Haddenfield, NJ"
-1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)","female",48,0,0,"17466",25.9292,"D17","S","8",,"Brooklyn, NY"
-1,1,"Taussig, Miss. Ruth","female",18,0,2,"110413",79.6500,"E68","S","8",,"New York, NY"
-1,0,"Taussig, Mr. Emil","male",52,1,1,"110413",79.6500,"E67","S",,,"New York, NY"
-1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)","female",39,1,1,"110413",79.6500,"E67","S","8",,"New York, NY"
-1,1,"Taylor, Mr. Elmer Zebley","male",48,1,0,"19996",52.0000,"C126","S","5 7",,"London / East Orange, NJ"
-1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)","female",,1,0,"19996",52.0000,"C126","S","5 7",,"London / East Orange, NJ"
-1,0,"Thayer, Mr. John Borland","male",49,1,1,"17421",110.8833,"C68","C",,,"Haverford, PA"
-1,1,"Thayer, Mr. John Borland Jr","male",17,0,2,"17421",110.8833,"C70","C","B",,"Haverford, PA"
-1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)","female",39,1,1,"17421",110.8833,"C68","C","4",,"Haverford, PA"
-1,1,"Thorne, Mrs. Gertrude Maybelle","female",,0,0,"PC 17585",79.2000,,"C","D",,"New York, NY"
-1,1,"Tucker, Mr. Gilbert Milligan Jr","male",31,0,0,"2543",28.5375,"C53","C","7",,"Albany, NY"
-1,0,"Uruchurtu, Don. Manuel E","male",40,0,0,"PC 17601",27.7208,,"C",,,"Mexico City, Mexico"
-1,0,"Van der hoef, Mr. Wyckoff","male",61,0,0,"111240",33.5000,"B19","S",,"245","Brooklyn, NY"
-1,0,"Walker, Mr. William Anderson","male",47,0,0,"36967",34.0208,"D46","S",,,"East Orange, NJ"
-1,1,"Ward, Miss. Anna","female",35,0,0,"PC 17755",512.3292,,"C","3",,
-1,0,"Warren, Mr. Frank Manley","male",64,1,0,"110813",75.2500,"D37","C",,,"Portland, OR"
-1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)","female",60,1,0,"110813",75.2500,"D37","C","5",,"Portland, OR"
-1,0,"Weir, Col. John","male",60,0,0,"113800",26.5500,,"S",,,"England Salt Lake City, Utah"
-1,0,"White, Mr. Percival Wayland","male",54,0,1,"35281",77.2875,"D26","S",,,"Brunswick, ME"
-1,0,"White, Mr. Richard Frasar","male",21,0,1,"35281",77.2875,"D26","S",,"169","Brunswick, ME"
-1,1,"White, Mrs. John Stuart (Ella Holmes)","female",55,0,0,"PC 17760",135.6333,"C32","C","8",,"New York, NY / Briarcliff Manor NY"
-1,1,"Wick, Miss. Mary Natalie","female",31,0,2,"36928",164.8667,"C7","S","8",,"Youngstown, OH"
-1,0,"Wick, Mr. George Dennick","male",57,1,1,"36928",164.8667,,"S",,,"Youngstown, OH"
-1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)","female",45,1,1,"36928",164.8667,,"S","8",,"Youngstown, OH"
-1,0,"Widener, Mr. George Dunton","male",50,1,1,"113503",211.5000,"C80","C",,,"Elkins Park, PA"
-1,0,"Widener, Mr. Harry Elkins","male",27,0,2,"113503",211.5000,"C82","C",,,"Elkins Park, PA"
-1,1,"Widener, Mrs. George Dunton (Eleanor Elkins)","female",50,1,1,"113503",211.5000,"C80","C","4",,"Elkins Park, PA"
-1,1,"Willard, Miss. Constance","female",21,0,0,"113795",26.5500,,"S","8 10",,"Duluth, MN"
-1,0,"Williams, Mr. Charles Duane","male",51,0,1,"PC 17597",61.3792,,"C",,,"Geneva, Switzerland / Radnor, PA"
-1,1,"Williams, Mr. Richard Norris II","male",21,0,1,"PC 17597",61.3792,,"C","A",,"Geneva, Switzerland / Radnor, PA"
-1,0,"Williams-Lambert, Mr. Fletcher Fellows","male",,0,0,"113510",35.0000,"C128","S",,,"London, England"
-1,1,"Wilson, Miss. Helen Alice","female",31,0,0,"16966",134.5000,"E39 E41","C","3",,
-1,1,"Woolner, Mr. Hugh","male",,0,0,"19947",35.5000,"C52","S","D",,"London, England"
-1,0,"Wright, Mr. George","male",62,0,0,"113807",26.5500,,"S",,,"Halifax, NS"
-1,1,"Young, Miss. Marie Grice","female",36,0,0,"PC 17760",135.6333,"C32","C","8",,"New York, NY / Washington, DC"
-2,0,"Abelson, Mr. Samuel","male",30,1,0,"P/PP 3381",24.0000,,"C",,,"Russia New York, NY"
-2,1,"Abelson, Mrs. Samuel (Hannah Wizosky)","female",28,1,0,"P/PP 3381",24.0000,,"C","10",,"Russia New York, NY"
-2,0,"Aldworth, Mr. Charles Augustus","male",30,0,0,"248744",13.0000,,"S",,,"Bryn Mawr, PA, USA"
-2,0,"Andrew, Mr. Edgardo Samuel","male",18,0,0,"231945",11.5000,,"S",,,"Buenos Aires, Argentina / New Jersey, NJ"
-2,0,"Andrew, Mr. Frank Thomas","male",25,0,0,"C.A. 34050",10.5000,,"S",,,"Cornwall, England Houghton, MI"
-2,0,"Angle, Mr. William A","male",34,1,0,"226875",26.0000,,"S",,,"Warwick, England"
-2,1,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)","female",36,1,0,"226875",26.0000,,"S","11",,"Warwick, England"
-2,0,"Ashby, Mr. John","male",57,0,0,"244346",13.0000,,"S",,,"West Hoboken, NJ"
-2,0,"Bailey, Mr. Percy Andrew","male",18,0,0,"29108",11.5000,,"S",,,"Penzance, Cornwall / Akron, OH"
-2,0,"Baimbrigge, Mr. Charles Robert","male",23,0,0,"C.A. 31030",10.5000,,"S",,,"Guernsey"
-2,1,"Ball, Mrs. (Ada E Hall)","female",36,0,0,"28551",13.0000,"D","S","10",,"Bristol, Avon / Jacksonville, FL"
-2,0,"Banfield, Mr. Frederick James","male",28,0,0,"C.A./SOTON 34068",10.5000,,"S",,,"Plymouth, Dorset / Houghton, MI"
-2,0,"Bateman, Rev. Robert James","male",51,0,0,"S.O.P. 1166",12.5250,,"S",,"174","Jacksonville, FL"
-2,1,"Beane, Mr. Edward","male",32,1,0,"2908",26.0000,,"S","13",,"Norwich / New York, NY"
-2,1,"Beane, Mrs. Edward (Ethel Clarke)","female",19,1,0,"2908",26.0000,,"S","13",,"Norwich / New York, NY"
-2,0,"Beauchamp, Mr. Henry James","male",28,0,0,"244358",26.0000,,"S",,,"England"
-2,1,"Becker, Master. Richard F","male",1,2,1,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
-2,1,"Becker, Miss. Marion Louise","female",4,2,1,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
-2,1,"Becker, Miss. Ruth Elizabeth","female",12,2,1,"230136",39.0000,"F4","S","13",,"Guntur, India / Benton Harbour, MI"
-2,1,"Becker, Mrs. Allen Oliver (Nellie E Baumgardner)","female",36,0,3,"230136",39.0000,"F4","S","11",,"Guntur, India / Benton Harbour, MI"
-2,1,"Beesley, Mr. Lawrence","male",34,0,0,"248698",13.0000,"D56","S","13",,"London"
-2,1,"Bentham, Miss. Lilian W","female",19,0,0,"28404",13.0000,,"S","12",,"Rochester, NY"
-2,0,"Berriman, Mr. William John","male",23,0,0,"28425",13.0000,,"S",,,"St Ives, Cornwall / Calumet, MI"
-2,0,"Botsford, Mr. William Hull","male",26,0,0,"237670",13.0000,,"S",,,"Elmira, NY / Orange, NJ"
-2,0,"Bowenur, Mr. Solomon","male",42,0,0,"211535",13.0000,,"S",,,"London"
-2,0,"Bracken, Mr. James H","male",27,0,0,"220367",13.0000,,"S",,,"Lake Arthur, Chavez County, NM"
-2,1,"Brown, Miss. Amelia ""Mildred""","female",24,0,0,"248733",13.0000,"F33","S","11",,"London / Montreal, PQ"
-2,1,"Brown, Miss. Edith Eileen","female",15,0,2,"29750",39.0000,,"S","14",,"Cape Town, South Africa / Seattle, WA"
-2,0,"Brown, Mr. Thomas William Solomon","male",60,1,1,"29750",39.0000,,"S",,,"Cape Town, South Africa / Seattle, WA"
-2,1,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)","female",40,1,1,"29750",39.0000,,"S","14",,"Cape Town, South Africa / Seattle, WA"
-2,1,"Bryhl, Miss. Dagmar Jenny Ingeborg ","female",20,1,0,"236853",26.0000,,"S","12",,"Skara, Sweden / Rockford, IL"
-2,0,"Bryhl, Mr. Kurt Arnold Gottfrid","male",25,1,0,"236853",26.0000,,"S",,,"Skara, Sweden / Rockford, IL"
-2,1,"Buss, Miss. Kate","female",36,0,0,"27849",13.0000,,"S","9",,"Sittingbourne, England / San Diego, CA"
-2,0,"Butler, Mr. Reginald Fenton","male",25,0,0,"234686",13.0000,,"S",,"97","Southsea, Hants"
-2,0,"Byles, Rev. Thomas Roussel Davids","male",42,0,0,"244310",13.0000,,"S",,,"London"
-2,1,"Bystrom, Mrs. (Karolina)","female",42,0,0,"236852",13.0000,,"S",,,"New York, NY"
-2,1,"Caldwell, Master. Alden Gates","male",0.83,0,2,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
-2,1,"Caldwell, Mr. Albert Francis","male",26,1,1,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
-2,1,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)","female",22,1,1,"248738",29.0000,,"S","13",,"Bangkok, Thailand / Roseville, IL"
-2,1,"Cameron, Miss. Clear Annie","female",35,0,0,"F.C.C. 13528",21.0000,,"S","14",,"Mamaroneck, NY"
-2,0,"Campbell, Mr. William","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
-2,0,"Carbines, Mr. William","male",19,0,0,"28424",13.0000,,"S",,"18","St Ives, Cornwall / Calumet, MI"
-2,0,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)","female",44,1,0,"244252",26.0000,,"S",,,"London"
-2,0,"Carter, Rev. Ernest Courtenay","male",54,1,0,"244252",26.0000,,"S",,,"London"
-2,0,"Chapman, Mr. Charles Henry","male",52,0,0,"248731",13.5000,,"S",,"130","Bronx, NY"
-2,0,"Chapman, Mr. John Henry","male",37,1,0,"SC/AH 29037",26.0000,,"S",,"17","Cornwall / Spokane, WA"
-2,0,"Chapman, Mrs. John Henry (Sara Elizabeth Lawry)","female",29,1,0,"SC/AH 29037",26.0000,,"S",,,"Cornwall / Spokane, WA"
-2,1,"Christy, Miss. Julie Rachel","female",25,1,1,"237789",30.0000,,"S","12",,"London"
-2,1,"Christy, Mrs. (Alice Frances)","female",45,0,2,"237789",30.0000,,"S","12",,"London"
-2,0,"Clarke, Mr. Charles Valentine","male",29,1,0,"2003",26.0000,,"S",,,"England / San Francisco, CA"
-2,1,"Clarke, Mrs. Charles V (Ada Maria Winfield)","female",28,1,0,"2003",26.0000,,"S","14",,"England / San Francisco, CA"
-2,0,"Coleridge, Mr. Reginald Charles","male",29,0,0,"W./C. 14263",10.5000,,"S",,,"Hartford, Huntingdonshire"
-2,0,"Collander, Mr. Erik Gustaf","male",28,0,0,"248740",13.0000,,"S",,,"Helsinki, Finland Ashtabula, Ohio"
-2,1,"Collett, Mr. Sidney C Stuart","male",24,0,0,"28034",10.5000,,"S","9",,"London / Fort Byron, NY"
-2,1,"Collyer, Miss. Marjorie ""Lottie""","female",8,0,2,"C.A. 31921",26.2500,,"S","14",,"Bishopstoke, Hants / Fayette Valley, ID"
-2,0,"Collyer, Mr. Harvey","male",31,1,1,"C.A. 31921",26.2500,,"S",,,"Bishopstoke, Hants / Fayette Valley, ID"
-2,1,"Collyer, Mrs. Harvey (Charlotte Annie Tate)","female",31,1,1,"C.A. 31921",26.2500,,"S","14",,"Bishopstoke, Hants / Fayette Valley, ID"
-2,1,"Cook, Mrs. (Selena Rogers)","female",22,0,0,"W./C. 14266",10.5000,"F33","S","14",,"Pennsylvania"
-2,0,"Corbett, Mrs. Walter H (Irene Colvin)","female",30,0,0,"237249",13.0000,,"S",,,"Provo, UT"
-2,0,"Corey, Mrs. Percy C (Mary Phyllis Elizabeth Miller)","female",,0,0,"F.C.C. 13534",21.0000,,"S",,,"Upper Burma, India Pittsburgh, PA"
-2,0,"Cotterill, Mr. Henry ""Harry""","male",21,0,0,"29107",11.5000,,"S",,,"Penzance, Cornwall / Akron, OH"
-2,0,"Cunningham, Mr. Alfred Fleming","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
-2,1,"Davies, Master. John Morgan Jr","male",8,1,1,"C.A. 33112",36.7500,,"S","14",,"St Ives, Cornwall / Hancock, MI"
-2,0,"Davies, Mr. Charles Henry","male",18,0,0,"S.O.C. 14879",73.5000,,"S",,,"Lyndhurst, England"
-2,1,"Davies, Mrs. John Morgan (Elizabeth Agnes Mary White) ","female",48,0,2,"C.A. 33112",36.7500,,"S","14",,"St Ives, Cornwall / Hancock, MI"
-2,1,"Davis, Miss. Mary","female",28,0,0,"237668",13.0000,,"S","13",,"London / Staten Island, NY"
-2,0,"de Brito, Mr. Jose Joaquim","male",32,0,0,"244360",13.0000,,"S",,,"Portugal / Sau Paulo, Brazil"
-2,0,"Deacon, Mr. Percy William","male",17,0,0,"S.O.C. 14879",73.5000,,"S",,,
-2,0,"del Carlo, Mr. Sebastiano","male",29,1,0,"SC/PARIS 2167",27.7208,,"C",,"295","Lucca, Italy / California"
-2,1,"del Carlo, Mrs. Sebastiano (Argenia Genovesi)","female",24,1,0,"SC/PARIS 2167",27.7208,,"C","12",,"Lucca, Italy / California"
-2,0,"Denbury, Mr. Herbert","male",25,0,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
-2,0,"Dibden, Mr. William","male",18,0,0,"S.O.C. 14879",73.5000,,"S",,,"New Forest, England"
-2,1,"Doling, Miss. Elsie","female",18,0,1,"231919",23.0000,,"S",,,"Southampton"
-2,1,"Doling, Mrs. John T (Ada Julia Bone)","female",34,0,1,"231919",23.0000,,"S",,,"Southampton"
-2,0,"Downton, Mr. William James","male",54,0,0,"28403",26.0000,,"S",,,"Holley, NY"
-2,1,"Drew, Master. Marshall Brines","male",8,0,2,"28220",32.5000,,"S","10",,"Greenport, NY"
-2,0,"Drew, Mr. James Vivian","male",42,1,1,"28220",32.5000,,"S",,,"Greenport, NY"
-2,1,"Drew, Mrs. James Vivian (Lulu Thorne Christian)","female",34,1,1,"28220",32.5000,,"S","10",,"Greenport, NY"
-2,1,"Duran y More, Miss. Asuncion","female",27,1,0,"SC/PARIS 2149",13.8583,,"C","12",,"Barcelona, Spain / Havana, Cuba"
-2,1,"Duran y More, Miss. Florentina","female",30,1,0,"SC/PARIS 2148",13.8583,,"C","12",,"Barcelona, Spain / Havana, Cuba"
-2,0,"Eitemiller, Mr. George Floyd","male",23,0,0,"29751",13.0000,,"S",,,"England / Detroit, MI"
-2,0,"Enander, Mr. Ingvar","male",21,0,0,"236854",13.0000,,"S",,,"Goteborg, Sweden / Rockford, IL"
-2,0,"Fahlstrom, Mr. Arne Jonas","male",18,0,0,"236171",13.0000,,"S",,,"Oslo, Norway Bayonne, NJ"
-2,0,"Faunthorpe, Mr. Harry","male",40,1,0,"2926",26.0000,,"S",,"286","England / Philadelphia, PA"
-2,1,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)","female",29,1,0,"2926",26.0000,,"S","16",,
-2,0,"Fillbrook, Mr. Joseph Charles","male",18,0,0,"C.A. 15185",10.5000,,"S",,,"Cornwall / Houghton, MI"
-2,0,"Fox, Mr. Stanley Hubert","male",36,0,0,"229236",13.0000,,"S",,"236","Rochester, NY"
-2,0,"Frost, Mr. Anthony Wood ""Archie""","male",,0,0,"239854",0.0000,,"S",,,"Belfast"
-2,0,"Funk, Miss. Annie Clemmer","female",38,0,0,"237671",13.0000,,"S",,,"Janjgir, India / Pennsylvania"
-2,0,"Fynney, Mr. Joseph J","male",35,0,0,"239865",26.0000,,"S",,"322","Liverpool / Montreal, PQ"
-2,0,"Gale, Mr. Harry","male",38,1,0,"28664",21.0000,,"S",,,"Cornwall / Clear Creek, CO"
-2,0,"Gale, Mr. Shadrach","male",34,1,0,"28664",21.0000,,"S",,,"Cornwall / Clear Creek, CO"
-2,1,"Garside, Miss. Ethel","female",34,0,0,"243880",13.0000,,"S","12",,"Brooklyn, NY"
-2,0,"Gaskell, Mr. Alfred","male",16,0,0,"239865",26.0000,,"S",,,"Liverpool / Montreal, PQ"
-2,0,"Gavey, Mr. Lawrence","male",26,0,0,"31028",10.5000,,"S",,,"Guernsey / Elizabeth, NJ"
-2,0,"Gilbert, Mr. William","male",47,0,0,"C.A. 30769",10.5000,,"S",,,"Cornwall"
-2,0,"Giles, Mr. Edgar","male",21,1,0,"28133",11.5000,,"S",,,"Cornwall / Camden, NJ"
-2,0,"Giles, Mr. Frederick Edward","male",21,1,0,"28134",11.5000,,"S",,,"Cornwall / Camden, NJ"
-2,0,"Giles, Mr. Ralph","male",24,0,0,"248726",13.5000,,"S",,"297","West Kensington, London"
-2,0,"Gill, Mr. John William","male",24,0,0,"233866",13.0000,,"S",,"155","Clevedon, England"
-2,0,"Gillespie, Mr. William Henry","male",34,0,0,"12233",13.0000,,"S",,,"Vancouver, BC"
-2,0,"Givard, Mr. Hans Kristensen","male",30,0,0,"250646",13.0000,,"S",,"305",
-2,0,"Greenberg, Mr. Samuel","male",52,0,0,"250647",13.0000,,"S",,"19","Bronx, NY"
-2,0,"Hale, Mr. Reginald","male",30,0,0,"250653",13.0000,,"S",,"75","Auburn, NY"
-2,1,"Hamalainen, Master. Viljo","male",0.67,1,1,"250649",14.5000,,"S","4",,"Detroit, MI"
-2,1,"Hamalainen, Mrs. William (Anna)","female",24,0,2,"250649",14.5000,,"S","4",,"Detroit, MI"
-2,0,"Harbeck, Mr. William H","male",44,0,0,"248746",13.0000,,"S",,"35","Seattle, WA / Toledo, OH"
-2,1,"Harper, Miss. Annie Jessie ""Nina""","female",6,0,1,"248727",33.0000,,"S","11",,"Denmark Hill, Surrey / Chicago"
-2,0,"Harper, Rev. John","male",28,0,1,"248727",33.0000,,"S",,,"Denmark Hill, Surrey / Chicago"
-2,1,"Harris, Mr. George","male",62,0,0,"S.W./PP 752",10.5000,,"S","15",,"London"
-2,0,"Harris, Mr. Walter","male",30,0,0,"W/C 14208",10.5000,,"S",,,"Walthamstow, England"
-2,1,"Hart, Miss. Eva Miriam","female",7,0,2,"F.C.C. 13529",26.2500,,"S","14",,"Ilford, Essex / Winnipeg, MB"
-2,0,"Hart, Mr. Benjamin","male",43,1,1,"F.C.C. 13529",26.2500,,"S",,,"Ilford, Essex / Winnipeg, MB"
-2,1,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)","female",45,1,1,"F.C.C. 13529",26.2500,,"S","14",,"Ilford, Essex / Winnipeg, MB"
-2,1,"Herman, Miss. Alice","female",24,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
-2,1,"Herman, Miss. Kate","female",24,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
-2,0,"Herman, Mr. Samuel","male",49,1,2,"220845",65.0000,,"S",,,"Somerset / Bernardsville, NJ"
-2,1,"Herman, Mrs. Samuel (Jane Laver)","female",48,1,2,"220845",65.0000,,"S","9",,"Somerset / Bernardsville, NJ"
-2,1,"Hewlett, Mrs. (Mary D Kingcome) ","female",55,0,0,"248706",16.0000,,"S","13",,"India / Rapid City, SD"
-2,0,"Hickman, Mr. Leonard Mark","male",24,2,0,"S.O.C. 14879",73.5000,,"S",,,"West Hampstead, London / Neepawa, MB"
-2,0,"Hickman, Mr. Lewis","male",32,2,0,"S.O.C. 14879",73.5000,,"S",,"256","West Hampstead, London / Neepawa, MB"
-2,0,"Hickman, Mr. Stanley George","male",21,2,0,"S.O.C. 14879",73.5000,,"S",,,"West Hampstead, London / Neepawa, MB"
-2,0,"Hiltunen, Miss. Marta","female",18,1,1,"250650",13.0000,,"S",,,"Kontiolahti, Finland / Detroit, MI"
-2,1,"Hocking, Miss. Ellen ""Nellie""","female",20,2,1,"29105",23.0000,,"S","4",,"Cornwall / Akron, OH"
-2,0,"Hocking, Mr. Richard George","male",23,2,1,"29104",11.5000,,"S",,,"Cornwall / Akron, OH"
-2,0,"Hocking, Mr. Samuel James Metcalfe","male",36,0,0,"242963",13.0000,,"S",,,"Devonport, England"
-2,1,"Hocking, Mrs. Elizabeth (Eliza Needs)","female",54,1,3,"29105",23.0000,,"S","4",,"Cornwall / Akron, OH"
-2,0,"Hodges, Mr. Henry Price","male",50,0,0,"250643",13.0000,,"S",,"149","Southampton"
-2,0,"Hold, Mr. Stephen","male",44,1,0,"26707",26.0000,,"S",,,"England / Sacramento, CA"
-2,1,"Hold, Mrs. Stephen (Annie Margaret Hill)","female",29,1,0,"26707",26.0000,,"S","10",,"England / Sacramento, CA"
-2,0,"Hood, Mr. Ambrose Jr","male",21,0,0,"S.O.C. 14879",73.5000,,"S",,,"New Forest, England"
-2,1,"Hosono, Mr. Masabumi","male",42,0,0,"237798",13.0000,,"S","10",,"Tokyo, Japan"
-2,0,"Howard, Mr. Benjamin","male",63,1,0,"24065",26.0000,,"S",,,"Swindon, England"
-2,0,"Howard, Mrs. Benjamin (Ellen Truelove Arman)","female",60,1,0,"24065",26.0000,,"S",,,"Swindon, England"
-2,0,"Hunt, Mr. George Henry","male",33,0,0,"SCO/W 1585",12.2750,,"S",,,"Philadelphia, PA"
-2,1,"Ilett, Miss. Bertha","female",17,0,0,"SO/C 14885",10.5000,,"S",,,"Guernsey"
-2,0,"Jacobsohn, Mr. Sidney Samuel","male",42,1,0,"243847",27.0000,,"S",,,"London"
-2,1,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)","female",24,2,1,"243847",27.0000,,"S","12",,"London"
-2,0,"Jarvis, Mr. John Denzil","male",47,0,0,"237565",15.0000,,"S",,,"North Evington, England"
-2,0,"Jefferys, Mr. Clifford Thomas","male",24,2,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
-2,0,"Jefferys, Mr. Ernest Wilfred","male",22,2,0,"C.A. 31029",31.5000,,"S",,,"Guernsey / Elizabeth, NJ"
-2,0,"Jenkin, Mr. Stephen Curnow","male",32,0,0,"C.A. 33111",10.5000,,"S",,,"St Ives, Cornwall / Houghton, MI"
-2,1,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)","female",23,0,0,"SC/AH Basle 541",13.7917,"D","C","11",,"New York, NY"
-2,0,"Kantor, Mr. Sinai","male",34,1,0,"244367",26.0000,,"S",,"283","Moscow / Bronx, NY"
-2,1,"Kantor, Mrs. Sinai (Miriam Sternin)","female",24,1,0,"244367",26.0000,,"S","12",,"Moscow / Bronx, NY"
-2,0,"Karnes, Mrs. J Frank (Claire Bennett)","female",22,0,0,"F.C.C. 13534",21.0000,,"S",,,"India / Pittsburgh, PA"
-2,1,"Keane, Miss. Nora A","female",,0,0,"226593",12.3500,"E101","Q","10",,"Harrisburg, PA"
-2,0,"Keane, Mr. Daniel","male",35,0,0,"233734",12.3500,,"Q",,,
-2,1,"Kelly, Mrs. Florence ""Fannie""","female",45,0,0,"223596",13.5000,,"S","9",,"London / New York, NY"
-2,0,"Kirkland, Rev. Charles Leonard","male",57,0,0,"219533",12.3500,,"Q",,,"Glasgow / Bangor, ME"
-2,0,"Knight, Mr. Robert J","male",,0,0,"239855",0.0000,,"S",,,"Belfast"
-2,0,"Kvillner, Mr. Johan Henrik Johannesson","male",31,0,0,"C.A. 18723",10.5000,,"S",,"165","Sweden / Arlington, NJ"
-2,0,"Lahtinen, Mrs. William (Anna Sylfven)","female",26,1,1,"250651",26.0000,,"S",,,"Minneapolis, MN"
-2,0,"Lahtinen, Rev. William","male",30,1,1,"250651",26.0000,,"S",,,"Minneapolis, MN"
-2,0,"Lamb, Mr. John Joseph","male",,0,0,"240261",10.7083,,"Q",,,
-2,1,"Laroche, Miss. Louise","female",1,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
-2,1,"Laroche, Miss. Simonne Marie Anne Andree","female",3,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
-2,0,"Laroche, Mr. Joseph Philippe Lemercier","male",25,1,2,"SC/Paris 2123",41.5792,,"C",,,"Paris / Haiti"
-2,1,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)","female",22,1,2,"SC/Paris 2123",41.5792,,"C","14",,"Paris / Haiti"
-2,1,"Lehmann, Miss. Bertha","female",17,0,0,"SC 1748",12.0000,,"C","12",,"Berne, Switzerland / Central City, IA"
-2,1,"Leitch, Miss. Jessie Wills","female",,0,0,"248727",33.0000,,"S","11",,"London / Chicago, IL"
-2,1,"Lemore, Mrs. (Amelia Milley)","female",34,0,0,"C.A. 34260",10.5000,"F33","S","14",,"Chicago, IL"
-2,0,"Levy, Mr. Rene Jacques","male",36,0,0,"SC/Paris 2163",12.8750,"D","C",,,"Montreal, PQ"
-2,0,"Leyson, Mr. Robert William Norman","male",24,0,0,"C.A. 29566",10.5000,,"S",,"108",
-2,0,"Lingane, Mr. John","male",61,0,0,"235509",12.3500,,"Q",,,
-2,0,"Louch, Mr. Charles Alexander","male",50,1,0,"SC/AH 3085",26.0000,,"S",,"121","Weston-Super-Mare, Somerset"
-2,1,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)","female",42,1,0,"SC/AH 3085",26.0000,,"S",,,"Weston-Super-Mare, Somerset"
-2,0,"Mack, Mrs. (Mary)","female",57,0,0,"S.O./P.P. 3",10.5000,"E77","S",,"52","Southampton / New York, NY"
-2,0,"Malachard, Mr. Noel","male",,0,0,"237735",15.0458,"D","C",,,"Paris"
-2,1,"Mallet, Master. Andre","male",1,0,2,"S.C./PARIS 2079",37.0042,,"C","10",,"Paris / Montreal, PQ"
-2,0,"Mallet, Mr. Albert","male",31,1,1,"S.C./PARIS 2079",37.0042,,"C",,,"Paris / Montreal, PQ"
-2,1,"Mallet, Mrs. Albert (Antoinette Magnin)","female",24,1,1,"S.C./PARIS 2079",37.0042,,"C","10",,"Paris / Montreal, PQ"
-2,0,"Mangiavacchi, Mr. Serafino Emilio","male",,0,0,"SC/A.3 2861",15.5792,,"C",,,"New York, NY"
-2,0,"Matthews, Mr. William John","male",30,0,0,"28228",13.0000,,"S",,,"St Austall, Cornwall"
-2,0,"Maybery, Mr. Frank Hubert","male",40,0,0,"239059",16.0000,,"S",,,"Weston-Super-Mare / Moose Jaw, SK"
-2,0,"McCrae, Mr. Arthur Gordon","male",32,0,0,"237216",13.5000,,"S",,"209","Sydney, Australia"
-2,0,"McCrie, Mr. James Matthew","male",30,0,0,"233478",13.0000,,"S",,,"Sarnia, ON"
-2,0,"McKane, Mr. Peter David","male",46,0,0,"28403",26.0000,,"S",,,"Rochester, NY"
-2,1,"Mellinger, Miss. Madeleine Violet","female",13,0,1,"250644",19.5000,,"S","14",,"England / Bennington, VT"
-2,1,"Mellinger, Mrs. (Elizabeth Anne Maidment)","female",41,0,1,"250644",19.5000,,"S","14",,"England / Bennington, VT"
-2,1,"Mellors, Mr. William John","male",19,0,0,"SW/PP 751",10.5000,,"S","B",,"Chelsea, London"
-2,0,"Meyer, Mr. August","male",39,0,0,"248723",13.0000,,"S",,,"Harrow-on-the-Hill, Middlesex"
-2,0,"Milling, Mr. Jacob Christian","male",48,0,0,"234360",13.0000,,"S",,"271","Copenhagen, Denmark"
-2,0,"Mitchell, Mr. Henry Michael","male",70,0,0,"C.A. 24580",10.5000,,"S",,,"Guernsey / Montclair, NJ and/or Toledo, Ohio"
-2,0,"Montvila, Rev. Juozas","male",27,0,0,"211536",13.0000,,"S",,,"Worcester, MA"
-2,0,"Moraweck, Dr. Ernest","male",54,0,0,"29011",14.0000,,"S",,,"Frankfort, KY"
-2,0,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")","male",39,0,0,"250655",26.0000,,"S",,,
-2,0,"Mudd, Mr. Thomas Charles","male",16,0,0,"S.O./P.P. 3",10.5000,,"S",,,"Halesworth, England"
-2,0,"Myles, Mr. Thomas Francis","male",62,0,0,"240276",9.6875,,"Q",,,"Cambridge, MA"
-2,0,"Nasser, Mr. Nicholas","male",32.5,1,0,"237736",30.0708,,"C",,"43","New York, NY"
-2,1,"Nasser, Mrs. Nicholas (Adele Achem)","female",14,1,0,"237736",30.0708,,"C",,,"New York, NY"
-2,1,"Navratil, Master. Edmond Roger","male",2,1,1,"230080",26.0000,"F2","S","D",,"Nice, France"
-2,1,"Navratil, Master. Michel M","male",3,1,1,"230080",26.0000,"F2","S","D",,"Nice, France"
-2,0,"Navratil, Mr. Michel (""Louis M Hoffman"")","male",36.5,0,2,"230080",26.0000,"F2","S",,"15","Nice, France"
-2,0,"Nesson, Mr. Israel","male",26,0,0,"244368",13.0000,"F2","S",,,"Boston, MA"
-2,0,"Nicholls, Mr. Joseph Charles","male",19,1,1,"C.A. 33112",36.7500,,"S",,"101","Cornwall / Hancock, MI"
-2,0,"Norman, Mr. Robert Douglas","male",28,0,0,"218629",13.5000,,"S",,"287","Glasgow"
-2,1,"Nourney, Mr. Alfred (""Baron von Drachstedt"")","male",20,0,0,"SC/PARIS 2166",13.8625,"D38","C","7",,"Cologne, Germany"
-2,1,"Nye, Mrs. (Elizabeth Ramell)","female",29,0,0,"C.A. 29395",10.5000,"F33","S","11",,"Folkstone, Kent / New York, NY"
-2,0,"Otter, Mr. Richard","male",39,0,0,"28213",13.0000,,"S",,,"Middleburg Heights, OH"
-2,1,"Oxenham, Mr. Percy Thomas","male",22,0,0,"W./C. 14260",10.5000,,"S","13",,"Pondersend, England / New Durham, NJ"
-2,1,"Padro y Manent, Mr. Julian","male",,0,0,"SC/PARIS 2146",13.8625,,"C","9",,"Spain / Havana, Cuba"
-2,0,"Pain, Dr. Alfred","male",23,0,0,"244278",10.5000,,"S",,,"Hamilton, ON"
-2,1,"Pallas y Castello, Mr. Emilio","male",29,0,0,"SC/PARIS 2147",13.8583,,"C","9",,"Spain / Havana, Cuba"
-2,0,"Parker, Mr. Clifford Richard","male",28,0,0,"SC 14888",10.5000,,"S",,,"St Andrews, Guernsey"
-2,0,"Parkes, Mr. Francis ""Frank""","male",,0,0,"239853",0.0000,,"S",,,"Belfast"
-2,1,"Parrish, Mrs. (Lutie Davis)","female",50,0,1,"230433",26.0000,,"S","12",,"Woodford County, KY"
-2,0,"Pengelly, Mr. Frederick William","male",19,0,0,"28665",10.5000,,"S",,,"Gunnislake, England / Butte, MT"
-2,0,"Pernot, Mr. Rene","male",,0,0,"SC/PARIS 2131",15.0500,,"C",,,
-2,0,"Peruschitz, Rev. Joseph Maria","male",41,0,0,"237393",13.0000,,"S",,,
-2,1,"Phillips, Miss. Alice Frances Louisa","female",21,0,1,"S.O./P.P. 2",21.0000,,"S","12",,"Ilfracombe, Devon"
-2,1,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")","female",19,0,0,"250655",26.0000,,"S","11",,"Worcester, England"
-2,0,"Phillips, Mr. Escott Robert","male",43,0,1,"S.O./P.P. 2",21.0000,,"S",,,"Ilfracombe, Devon"
-2,1,"Pinsky, Mrs. (Rosa)","female",32,0,0,"234604",13.0000,,"S","9",,"Russia"
-2,0,"Ponesell, Mr. Martin","male",34,0,0,"250647",13.0000,,"S",,,"Denmark / New York, NY"
-2,1,"Portaluppi, Mr. Emilio Ilario Giuseppe","male",30,0,0,"C.A. 34644",12.7375,,"C","14",,"Milford, NH"
-2,0,"Pulbaum, Mr. Franz","male",27,0,0,"SC/PARIS 2168",15.0333,,"C",,,"Paris"
-2,1,"Quick, Miss. Phyllis May","female",2,1,1,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
-2,1,"Quick, Miss. Winifred Vera","female",8,1,1,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
-2,1,"Quick, Mrs. Frederick Charles (Jane Richards)","female",33,0,2,"26360",26.0000,,"S","11",,"Plymouth, Devon / Detroit, MI"
-2,0,"Reeves, Mr. David","male",36,0,0,"C.A. 17248",10.5000,,"S",,,"Brighton, Sussex"
-2,0,"Renouf, Mr. Peter Henry","male",34,1,0,"31027",21.0000,,"S","12",,"Elizabeth, NJ"
-2,1,"Renouf, Mrs. Peter Henry (Lillian Jefferys)","female",30,3,0,"31027",21.0000,,"S",,,"Elizabeth, NJ"
-2,1,"Reynaldo, Ms. Encarnacion","female",28,0,0,"230434",13.0000,,"S","9",,"Spain"
-2,0,"Richard, Mr. Emile","male",23,0,0,"SC/PARIS 2133",15.0458,,"C",,,"Paris / Montreal, PQ"
-2,1,"Richards, Master. George Sibley","male",0.83,1,1,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
-2,1,"Richards, Master. William Rowe","male",3,1,1,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
-2,1,"Richards, Mrs. Sidney (Emily Hocking)","female",24,2,3,"29106",18.7500,,"S","4",,"Cornwall / Akron, OH"
-2,1,"Ridsdale, Miss. Lucy","female",50,0,0,"W./C. 14258",10.5000,,"S","13",,"London, England / Marietta, Ohio and Milwaukee, WI"
-2,0,"Rogers, Mr. Reginald Harry","male",19,0,0,"28004",10.5000,,"S",,,
-2,1,"Rugg, Miss. Emily","female",21,0,0,"C.A. 31026",10.5000,,"S","12",,"Guernsey / Wilmington, DE"
-2,0,"Schmidt, Mr. August","male",26,0,0,"248659",13.0000,,"S",,,"Newark, NJ"
-2,0,"Sedgwick, Mr. Charles Frederick Waddington","male",25,0,0,"244361",13.0000,,"S",,,"Liverpool"
-2,0,"Sharp, Mr. Percival James R","male",27,0,0,"244358",26.0000,,"S",,,"Hornsey, England"
-2,1,"Shelley, Mrs. William (Imanita Parrish Hall)","female",25,0,1,"230433",26.0000,,"S","12",,"Deer Lodge, MT"
-2,1,"Silven, Miss. Lyyli Karoliina","female",18,0,2,"250652",13.0000,,"S","16",,"Finland / Minneapolis, MN"
-2,1,"Sincock, Miss. Maude","female",20,0,0,"C.A. 33112",36.7500,,"S","11",,"Cornwall / Hancock, MI"
-2,1,"Sinkkonen, Miss. Anna","female",30,0,0,"250648",13.0000,,"S","10",,"Finland / Washington, DC"
-2,0,"Sjostedt, Mr. Ernst Adolf","male",59,0,0,"237442",13.5000,,"S",,,"Sault St Marie, ON"
-2,1,"Slayter, Miss. Hilda Mary","female",30,0,0,"234818",12.3500,,"Q","13",,"Halifax, NS"
-2,0,"Slemen, Mr. Richard James","male",35,0,0,"28206",10.5000,,"S",,,"Cornwall"
-2,1,"Smith, Miss. Marion Elsie","female",40,0,0,"31418",13.0000,,"S","9",,
-2,0,"Sobey, Mr. Samuel James Hayden","male",25,0,0,"C.A. 29178",13.0000,,"S",,,"Cornwall / Houghton, MI"
-2,0,"Stanton, Mr. Samuel Ward","male",41,0,0,"237734",15.0458,,"C",,,"New York, NY"
-2,0,"Stokes, Mr. Philip Joseph","male",25,0,0,"F.C.C. 13540",10.5000,,"S",,"81","Catford, Kent / Detroit, MI"
-2,0,"Swane, Mr. George","male",18.5,0,0,"248734",13.0000,"F","S",,"294",
-2,0,"Sweet, Mr. George Frederick","male",14,0,0,"220845",65.0000,,"S",,,"Somerset / Bernardsville, NJ"
-2,1,"Toomey, Miss. Ellen","female",50,0,0,"F.C.C. 13531",10.5000,,"S","9",,"Indianapolis, IN"
-2,0,"Troupiansky, Mr. Moses Aaron","male",23,0,0,"233639",13.0000,,"S",,,
-2,1,"Trout, Mrs. William H (Jessie L)","female",28,0,0,"240929",12.6500,,"S",,,"Columbus, OH"
-2,1,"Troutt, Miss. Edwina Celia ""Winnie""","female",27,0,0,"34218",10.5000,"E101","S","16",,"Bath, England / Massachusetts"
-2,0,"Turpin, Mr. William John Robert","male",29,1,0,"11668",21.0000,,"S",,,"Plymouth, England"
-2,0,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)","female",27,1,0,"11668",21.0000,,"S",,,"Plymouth, England"
-2,0,"Veal, Mr. James","male",40,0,0,"28221",13.0000,,"S",,,"Barre, Co Washington, VT"
-2,1,"Walcroft, Miss. Nellie","female",31,0,0,"F.C.C. 13528",21.0000,,"S","14",,"Mamaroneck, NY"
-2,0,"Ware, Mr. John James","male",30,1,0,"CA 31352",21.0000,,"S",,,"Bristol, England / New Britain, CT"
-2,0,"Ware, Mr. William Jeffery","male",23,1,0,"28666",10.5000,,"S",,,
-2,1,"Ware, Mrs. John James (Florence Louise Long)","female",31,0,0,"CA 31352",21.0000,,"S","10",,"Bristol, England / New Britain, CT"
-2,0,"Watson, Mr. Ennis Hastings","male",,0,0,"239856",0.0000,,"S",,,"Belfast"
-2,1,"Watt, Miss. Bertha J","female",12,0,0,"C.A. 33595",15.7500,,"S","9",,"Aberdeen / Portland, OR"
-2,1,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)","female",40,0,0,"C.A. 33595",15.7500,,"S","9",,"Aberdeen / Portland, OR"
-2,1,"Webber, Miss. Susan","female",32.5,0,0,"27267",13.0000,"E101","S","12",,"England / Hartford, CT"
-2,0,"Weisz, Mr. Leopold","male",27,1,0,"228414",26.0000,,"S",,"293","Bromsgrove, England / Montreal, PQ"
-2,1,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)","female",29,1,0,"228414",26.0000,,"S","10",,"Bromsgrove, England / Montreal, PQ"
-2,1,"Wells, Master. Ralph Lester","male",2,1,1,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
-2,1,"Wells, Miss. Joan","female",4,1,1,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
-2,1,"Wells, Mrs. Arthur Henry (""Addie"" Dart Trevaskis)","female",29,0,2,"29103",23.0000,,"S","14",,"Cornwall / Akron, OH"
-2,1,"West, Miss. Barbara J","female",0.92,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
-2,1,"West, Miss. Constance Mirium","female",5,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
-2,0,"West, Mr. Edwy Arthur","male",36,1,2,"C.A. 34651",27.7500,,"S",,,"Bournmouth, England"
-2,1,"West, Mrs. Edwy Arthur (Ada Mary Worth)","female",33,1,2,"C.A. 34651",27.7500,,"S","10",,"Bournmouth, England"
-2,0,"Wheadon, Mr. Edward H","male",66,0,0,"C.A. 24579",10.5000,,"S",,,"Guernsey, England / Edgewood, RI"
-2,0,"Wheeler, Mr. Edwin ""Frederick""","male",,0,0,"SC/PARIS 2159",12.8750,,"S",,,
-2,1,"Wilhelms, Mr. Charles","male",31,0,0,"244270",13.0000,,"S","9",,"London, England"
-2,1,"Williams, Mr. Charles Eugene","male",,0,0,"244373",13.0000,,"S","14",,"Harrow, England"
-2,1,"Wright, Miss. Marion","female",26,0,0,"220844",13.5000,,"S","9",,"Yoevil, England / Cottage Grove, OR"
-2,0,"Yrois, Miss. Henriette (""Mrs Harbeck"")","female",24,0,0,"248747",13.0000,,"S",,,"Paris"
-3,0,"Abbing, Mr. Anthony","male",42,0,0,"C.A. 5547",7.5500,,"S",,,
-3,0,"Abbott, Master. Eugene Joseph","male",13,0,2,"C.A. 2673",20.2500,,"S",,,"East Providence, RI"
-3,0,"Abbott, Mr. Rossmore Edward","male",16,1,1,"C.A. 2673",20.2500,,"S",,"190","East Providence, RI"
-3,1,"Abbott, Mrs. Stanton (Rosa Hunt)","female",35,1,1,"C.A. 2673",20.2500,,"S","A",,"East Providence, RI"
-3,1,"Abelseth, Miss. Karen Marie","female",16,0,0,"348125",7.6500,,"S","16",,"Norway Los Angeles, CA"
-3,1,"Abelseth, Mr. Olaus Jorgensen","male",25,0,0,"348122",7.6500,"F G63","S","A",,"Perkins County, SD"
-3,1,"Abrahamsson, Mr. Abraham August Johannes","male",20,0,0,"SOTON/O2 3101284",7.9250,,"S","15",,"Taalintehdas, Finland Hoboken, NJ"
-3,1,"Abrahim, Mrs. Joseph (Sophie Halaut Easu)","female",18,0,0,"2657",7.2292,,"C","C",,"Greensburg, PA"
-3,0,"Adahl, Mr. Mauritz Nils Martin","male",30,0,0,"C 7076",7.2500,,"S",,"72","Asarum, Sweden Brooklyn, NY"
-3,0,"Adams, Mr. John","male",26,0,0,"341826",8.0500,,"S",,"103","Bournemouth, England"
-3,0,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)","female",40,1,0,"7546",9.4750,,"S",,,"Sweden Akeley, MN"
-3,1,"Aks, Master. Philip Frank","male",0.83,0,1,"392091",9.3500,,"S","11",,"London, England Norfolk, VA"
-3,1,"Aks, Mrs. Sam (Leah Rosen)","female",18,0,1,"392091",9.3500,,"S","13",,"London, England Norfolk, VA"
-3,1,"Albimona, Mr. Nassef Cassem","male",26,0,0,"2699",18.7875,,"C","15",,"Syria Fredericksburg, VA"
-3,0,"Alexander, Mr. William","male",26,0,0,"3474",7.8875,,"S",,,"England Albion, NY"
-3,0,"Alhomaki, Mr. Ilmari Rudolf","male",20,0,0,"SOTON/O2 3101287",7.9250,,"S",,,"Salo, Finland Astoria, OR"
-3,0,"Ali, Mr. Ahmed","male",24,0,0,"SOTON/O.Q. 3101311",7.0500,,"S",,,
-3,0,"Ali, Mr. William","male",25,0,0,"SOTON/O.Q. 3101312",7.0500,,"S",,"79","Argentina"
-3,0,"Allen, Mr. William Henry","male",35,0,0,"373450",8.0500,,"S",,,"Lower Clapton, Middlesex or Erdington, Birmingham"
-3,0,"Allum, Mr. Owen George","male",18,0,0,"2223",8.3000,,"S",,"259","Windsor, England New York, NY"
-3,0,"Andersen, Mr. Albert Karvin","male",32,0,0,"C 4001",22.5250,,"S",,"260","Bergen, Norway"
-3,1,"Andersen-Jensen, Miss. Carla Christine Nielsine","female",19,1,0,"350046",7.8542,,"S","16",,
-3,0,"Andersson, Master. Sigvard Harald Elias","male",4,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andersson, Miss. Ebba Iris Alfrida","female",6,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andersson, Miss. Ellis Anna Maria","female",2,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,1,"Andersson, Miss. Erna Alexandra","female",17,4,2,"3101281",7.9250,,"S","D",,"Ruotsinphyhtaa, Finland New York, NY"
-3,0,"Andersson, Miss. Ida Augusta Margareta","female",38,4,2,"347091",7.7750,,"S",,,"Vadsbro, Sweden Ministee, MI"
-3,0,"Andersson, Miss. Ingeborg Constanzia","female",9,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andersson, Miss. Sigrid Elisabeth","female",11,4,2,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andersson, Mr. Anders Johan","male",39,1,5,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,1,"Andersson, Mr. August Edvard (""Wennerstrom"")","male",27,0,0,"350043",7.7958,,"S","A",,
-3,0,"Andersson, Mr. Johan Samuel","male",26,0,0,"347075",7.7750,,"S",,,"Hartford, CT"
-3,0,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)","female",39,1,5,"347082",31.2750,,"S",,,"Sweden Winnipeg, MN"
-3,0,"Andreasson, Mr. Paul Edvin","male",20,0,0,"347466",7.8542,,"S",,,"Sweden Chicago, IL"
-3,0,"Angheloff, Mr. Minko","male",26,0,0,"349202",7.8958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Arnold-Franchi, Mr. Josef","male",25,1,0,"349237",17.8000,,"S",,,"Altdorf, Switzerland"
-3,0,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)","female",18,1,0,"349237",17.8000,,"S",,,"Altdorf, Switzerland"
-3,0,"Aronsson, Mr. Ernst Axel Algot","male",24,0,0,"349911",7.7750,,"S",,,"Sweden Joliet, IL"
-3,0,"Asim, Mr. Adola","male",35,0,0,"SOTON/O.Q. 3101310",7.0500,,"S",,,
-3,0,"Asplund, Master. Carl Edgar","male",5,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
-3,0,"Asplund, Master. Clarence Gustaf Hugo","male",9,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
-3,1,"Asplund, Master. Edvin Rojj Felix","male",3,4,2,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
-3,0,"Asplund, Master. Filip Oscar","male",13,4,2,"347077",31.3875,,"S",,,"Sweden Worcester, MA"
-3,1,"Asplund, Miss. Lillian Gertrud","female",5,4,2,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
-3,0,"Asplund, Mr. Carl Oscar Vilhelm Gustafsson","male",40,1,5,"347077",31.3875,,"S",,"142","Sweden Worcester, MA"
-3,1,"Asplund, Mr. Johan Charles","male",23,0,0,"350054",7.7958,,"S","13",,"Oskarshamn, Sweden Minneapolis, MN"
-3,1,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)","female",38,1,5,"347077",31.3875,,"S","15",,"Sweden Worcester, MA"
-3,1,"Assaf Khalil, Mrs. Mariana (""Miriam"")","female",45,0,0,"2696",7.2250,,"C","C",,"Ottawa, ON"
-3,0,"Assaf, Mr. Gerios","male",21,0,0,"2692",7.2250,,"C",,,"Ottawa, ON"
-3,0,"Assam, Mr. Ali","male",23,0,0,"SOTON/O.Q. 3101309",7.0500,,"S",,,
-3,0,"Attalah, Miss. Malake","female",17,0,0,"2627",14.4583,,"C",,,
-3,0,"Attalah, Mr. Sleiman","male",30,0,0,"2694",7.2250,,"C",,,"Ottawa, ON"
-3,0,"Augustsson, Mr. Albert","male",23,0,0,"347468",7.8542,,"S",,,"Krakoryd, Sweden Bloomington, IL"
-3,1,"Ayoub, Miss. Banoura","female",13,0,0,"2687",7.2292,,"C","C",,"Syria Youngstown, OH"
-3,0,"Baccos, Mr. Raffull","male",20,0,0,"2679",7.2250,,"C",,,
-3,0,"Backstrom, Mr. Karl Alfred","male",32,1,0,"3101278",15.8500,,"S","D",,"Ruotsinphytaa, Finland New York, NY"
-3,1,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)","female",33,3,0,"3101278",15.8500,,"S",,,"Ruotsinphytaa, Finland New York, NY"
-3,1,"Baclini, Miss. Eugenie","female",0.75,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
-3,1,"Baclini, Miss. Helene Barbara","female",0.75,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
-3,1,"Baclini, Miss. Marie Catherine","female",5,2,1,"2666",19.2583,,"C","C",,"Syria New York, NY"
-3,1,"Baclini, Mrs. Solomon (Latifa Qurban)","female",24,0,3,"2666",19.2583,,"C","C",,"Syria New York, NY"
-3,1,"Badman, Miss. Emily Louisa","female",18,0,0,"A/4 31416",8.0500,,"S","C",,"London Skanteales, NY"
-3,0,"Badt, Mr. Mohamed","male",40,0,0,"2623",7.2250,,"C",,,
-3,0,"Balkic, Mr. Cerin","male",26,0,0,"349248",7.8958,,"S",,,
-3,1,"Barah, Mr. Hanna Assi","male",20,0,0,"2663",7.2292,,"C","15",,
-3,0,"Barbara, Miss. Saiide","female",18,0,1,"2691",14.4542,,"C",,,"Syria Ottawa, ON"
-3,0,"Barbara, Mrs. (Catherine David)","female",45,0,1,"2691",14.4542,,"C",,,"Syria Ottawa, ON"
-3,0,"Barry, Miss. Julia","female",27,0,0,"330844",7.8792,,"Q",,,"New York, NY"
-3,0,"Barton, Mr. David John","male",22,0,0,"324669",8.0500,,"S",,,"England New York, NY"
-3,0,"Beavan, Mr. William Thomas","male",19,0,0,"323951",8.0500,,"S",,,"England"
-3,0,"Bengtsson, Mr. John Viktor","male",26,0,0,"347068",7.7750,,"S",,,"Krakudden, Sweden Moune, IL"
-3,0,"Berglund, Mr. Karl Ivar Sven","male",22,0,0,"PP 4348",9.3500,,"S",,,"Tranvik, Finland New York"
-3,0,"Betros, Master. Seman","male",,0,0,"2622",7.2292,,"C",,,
-3,0,"Betros, Mr. Tannous","male",20,0,0,"2648",4.0125,,"C",,,"Syria"
-3,1,"Bing, Mr. Lee","male",32,0,0,"1601",56.4958,,"S","C",,"Hong Kong New York, NY"
-3,0,"Birkeland, Mr. Hans Martin Monsen","male",21,0,0,"312992",7.7750,,"S",,,"Brennes, Norway New York"
-3,0,"Bjorklund, Mr. Ernst Herbert","male",18,0,0,"347090",7.7500,,"S",,,"Stockholm, Sweden New York"
-3,0,"Bostandyeff, Mr. Guentcho","male",26,0,0,"349224",7.8958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Boulos, Master. Akar","male",6,1,1,"2678",15.2458,,"C",,,"Syria Kent, ON"
-3,0,"Boulos, Miss. Nourelain","female",9,1,1,"2678",15.2458,,"C",,,"Syria Kent, ON"
-3,0,"Boulos, Mr. Hanna","male",,0,0,"2664",7.2250,,"C",,,"Syria"
-3,0,"Boulos, Mrs. Joseph (Sultana)","female",,0,2,"2678",15.2458,,"C",,,"Syria Kent, ON"
-3,0,"Bourke, Miss. Mary","female",,0,2,"364848",7.7500,,"Q",,,"Ireland Chicago, IL"
-3,0,"Bourke, Mr. John","male",40,1,1,"364849",15.5000,,"Q",,,"Ireland Chicago, IL"
-3,0,"Bourke, Mrs. John (Catherine)","female",32,1,1,"364849",15.5000,,"Q",,,"Ireland Chicago, IL"
-3,0,"Bowen, Mr. David John ""Dai""","male",21,0,0,"54636",16.1000,,"S",,,"Treherbert, Cardiff, Wales"
-3,1,"Bradley, Miss. Bridget Delia","female",22,0,0,"334914",7.7250,,"Q","13",,"Kingwilliamstown, Co Cork, Ireland Glens Falls, NY"
-3,0,"Braf, Miss. Elin Ester Maria","female",20,0,0,"347471",7.8542,,"S",,,"Medeltorp, Sweden Chicago, IL"
-3,0,"Braund, Mr. Lewis Richard","male",29,1,0,"3460",7.0458,,"S",,,"Bridgerule, Devon"
-3,0,"Braund, Mr. Owen Harris","male",22,1,0,"A/5 21171",7.2500,,"S",,,"Bridgerule, Devon"
-3,0,"Brobeck, Mr. Karl Rudolf","male",22,0,0,"350045",7.7958,,"S",,,"Sweden Worcester, MA"
-3,0,"Brocklebank, Mr. William Alfred","male",35,0,0,"364512",8.0500,,"S",,,"Broomfield, Chelmsford, England"
-3,0,"Buckley, Miss. Katherine","female",18.5,0,0,"329944",7.2833,,"Q",,"299","Co Cork, Ireland Roxbury, MA"
-3,1,"Buckley, Mr. Daniel","male",21,0,0,"330920",7.8208,,"Q","13",,"Kingwilliamstown, Co Cork, Ireland New York, NY"
-3,0,"Burke, Mr. Jeremiah","male",19,0,0,"365222",6.7500,,"Q",,,"Co Cork, Ireland Charlestown, MA"
-3,0,"Burns, Miss. Mary Delia","female",18,0,0,"330963",7.8792,,"Q",,,"Co Sligo, Ireland New York, NY"
-3,0,"Cacic, Miss. Manda","female",21,0,0,"315087",8.6625,,"S",,,
-3,0,"Cacic, Miss. Marija","female",30,0,0,"315084",8.6625,,"S",,,
-3,0,"Cacic, Mr. Jego Grga","male",18,0,0,"315091",8.6625,,"S",,,
-3,0,"Cacic, Mr. Luka","male",38,0,0,"315089",8.6625,,"S",,,"Croatia"
-3,0,"Calic, Mr. Jovo","male",17,0,0,"315093",8.6625,,"S",,,
-3,0,"Calic, Mr. Petar","male",17,0,0,"315086",8.6625,,"S",,,
-3,0,"Canavan, Miss. Mary","female",21,0,0,"364846",7.7500,,"Q",,,
-3,0,"Canavan, Mr. Patrick","male",21,0,0,"364858",7.7500,,"Q",,,"Ireland Philadelphia, PA"
-3,0,"Cann, Mr. Ernest Charles","male",21,0,0,"A./5. 2152",8.0500,,"S",,,
-3,0,"Caram, Mr. Joseph","male",,1,0,"2689",14.4583,,"C",,,"Ottawa, ON"
-3,0,"Caram, Mrs. Joseph (Maria Elias)","female",,1,0,"2689",14.4583,,"C",,,"Ottawa, ON"
-3,0,"Carlsson, Mr. August Sigfrid","male",28,0,0,"350042",7.7958,,"S",,,"Dagsas, Sweden Fower, MN"
-3,0,"Carlsson, Mr. Carl Robert","male",24,0,0,"350409",7.8542,,"S",,,"Goteborg, Sweden Huntley, IL"
-3,1,"Carr, Miss. Helen ""Ellen""","female",16,0,0,"367231",7.7500,,"Q","16",,"Co Longford, Ireland New York, NY"
-3,0,"Carr, Miss. Jeannie","female",37,0,0,"368364",7.7500,,"Q",,,"Co Sligo, Ireland Hartford, CT"
-3,0,"Carver, Mr. Alfred John","male",28,0,0,"392095",7.2500,,"S",,,"St Denys, Southampton, Hants"
-3,0,"Celotti, Mr. Francesco","male",24,0,0,"343275",8.0500,,"S",,,"London"
-3,0,"Charters, Mr. David","male",21,0,0,"A/5. 13032",7.7333,,"Q",,,"Ireland New York, NY"
-3,1,"Chip, Mr. Chang","male",32,0,0,"1601",56.4958,,"S","C",,"Hong Kong New York, NY"
-3,0,"Christmann, Mr. Emil","male",29,0,0,"343276",8.0500,,"S",,,
-3,0,"Chronopoulos, Mr. Apostolos","male",26,1,0,"2680",14.4542,,"C",,,"Greece"
-3,0,"Chronopoulos, Mr. Demetrios","male",18,1,0,"2680",14.4542,,"C",,,"Greece"
-3,0,"Coelho, Mr. Domingos Fernandeo","male",20,0,0,"SOTON/O.Q. 3101307",7.0500,,"S",,,"Portugal"
-3,1,"Cohen, Mr. Gurshon ""Gus""","male",18,0,0,"A/5 3540",8.0500,,"S","12",,"London Brooklyn, NY"
-3,0,"Colbert, Mr. Patrick","male",24,0,0,"371109",7.2500,,"Q",,,"Co Limerick, Ireland Sherbrooke, PQ"
-3,0,"Coleff, Mr. Peju","male",36,0,0,"349210",7.4958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Coleff, Mr. Satio","male",24,0,0,"349209",7.4958,,"S",,,
-3,0,"Conlon, Mr. Thomas Henry","male",31,0,0,"21332",7.7333,,"Q",,,"Philadelphia, PA"
-3,0,"Connaghton, Mr. Michael","male",31,0,0,"335097",7.7500,,"Q",,,"Ireland Brooklyn, NY"
-3,1,"Connolly, Miss. Kate","female",22,0,0,"370373",7.7500,,"Q","13",,"Ireland"
-3,0,"Connolly, Miss. Kate","female",30,0,0,"330972",7.6292,,"Q",,,"Ireland"
-3,0,"Connors, Mr. Patrick","male",70.5,0,0,"370369",7.7500,,"Q",,"171",
-3,0,"Cook, Mr. Jacob","male",43,0,0,"A/5 3536",8.0500,,"S",,,
-3,0,"Cor, Mr. Bartol","male",35,0,0,"349230",7.8958,,"S",,,"Austria"
-3,0,"Cor, Mr. Ivan","male",27,0,0,"349229",7.8958,,"S",,,"Austria"
-3,0,"Cor, Mr. Liudevit","male",19,0,0,"349231",7.8958,,"S",,,"Austria"
-3,0,"Corn, Mr. Harry","male",30,0,0,"SOTON/OQ 392090",8.0500,,"S",,,"London"
-3,1,"Coutts, Master. Eden Leslie ""Neville""","male",9,1,1,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
-3,1,"Coutts, Master. William Loch ""William""","male",3,1,1,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
-3,1,"Coutts, Mrs. William (Winnie ""Minnie"" Treanor)","female",36,0,2,"C.A. 37671",15.9000,,"S","2",,"England Brooklyn, NY"
-3,0,"Coxon, Mr. Daniel","male",59,0,0,"364500",7.2500,,"S",,,"Merrill, WI"
-3,0,"Crease, Mr. Ernest James","male",19,0,0,"S.P. 3464",8.1583,,"S",,,"Bristol, England Cleveland, OH"
-3,1,"Cribb, Miss. Laura Alice","female",17,0,1,"371362",16.1000,,"S","12",,"Bournemouth, England Newark, NJ"
-3,0,"Cribb, Mr. John Hatfield","male",44,0,1,"371362",16.1000,,"S",,,"Bournemouth, England Newark, NJ"
-3,0,"Culumovic, Mr. Jeso","male",17,0,0,"315090",8.6625,,"S",,,"Austria-Hungary"
-3,0,"Daher, Mr. Shedid","male",22.5,0,0,"2698",7.2250,,"C",,"9",
-3,1,"Dahl, Mr. Karl Edwart","male",45,0,0,"7598",8.0500,,"S","15",,"Australia Fingal, ND"
-3,0,"Dahlberg, Miss. Gerda Ulrika","female",22,0,0,"7552",10.5167,,"S",,,"Norrlot, Sweden Chicago, IL"
-3,0,"Dakic, Mr. Branko","male",19,0,0,"349228",10.1708,,"S",,,"Austria"
-3,1,"Daly, Miss. Margaret Marcella ""Maggie""","female",30,0,0,"382650",6.9500,,"Q","15",,"Co Athlone, Ireland New York, NY"
-3,1,"Daly, Mr. Eugene Patrick","male",29,0,0,"382651",7.7500,,"Q","13 15 B",,"Co Athlone, Ireland New York, NY"
-3,0,"Danbom, Master. Gilbert Sigvard Emanuel","male",0.33,0,2,"347080",14.4000,,"S",,,"Stanton, IA"
-3,0,"Danbom, Mr. Ernst Gilbert","male",34,1,1,"347080",14.4000,,"S",,"197","Stanton, IA"
-3,0,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)","female",28,1,1,"347080",14.4000,,"S",,,"Stanton, IA"
-3,0,"Danoff, Mr. Yoto","male",27,0,0,"349219",7.8958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Dantcheff, Mr. Ristiu","male",25,0,0,"349203",7.8958,,"S",,,"Bulgaria Chicago, IL"
-3,0,"Davies, Mr. Alfred J","male",24,2,0,"A/4 48871",24.1500,,"S",,,"West Bromwich, England Pontiac, MI"
-3,0,"Davies, Mr. Evan","male",22,0,0,"SC/A4 23568",8.0500,,"S",,,
-3,0,"Davies, Mr. John Samuel","male",21,2,0,"A/4 48871",24.1500,,"S",,,"West Bromwich, England Pontiac, MI"
-3,0,"Davies, Mr. Joseph","male",17,2,0,"A/4 48873",8.0500,,"S",,,"West Bromwich, England Pontiac, MI"
-3,0,"Davison, Mr. Thomas Henry","male",,1,0,"386525",16.1000,,"S",,,"Liverpool, England Bedford, OH"
-3,1,"Davison, Mrs. Thomas Henry (Mary E Finck)","female",,1,0,"386525",16.1000,,"S","16",,"Liverpool, England Bedford, OH"
-3,1,"de Messemaeker, Mr. Guillaume Joseph","male",36.5,1,0,"345572",17.4000,,"S","15",,"Tampico, MT"
-3,1,"de Messemaeker, Mrs. Guillaume Joseph (Emma)","female",36,1,0,"345572",17.4000,,"S","13",,"Tampico, MT"
-3,1,"de Mulder, Mr. Theodore","male",30,0,0,"345774",9.5000,,"S","11",,"Belgium Detroit, MI"
-3,0,"de Pelsmaeker, Mr. Alfons","male",16,0,0,"345778",9.5000,,"S",,,
-3,1,"Dean, Master. Bertram Vere","male",1,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
-3,1,"Dean, Miss. Elizabeth Gladys ""Millvina""","female",0.17,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
-3,0,"Dean, Mr. Bertram Frank","male",26,1,2,"C.A. 2315",20.5750,,"S",,,"Devon, England Wichita, KS"
-3,1,"Dean, Mrs. Bertram (Eva Georgetta Light)","female",33,1,2,"C.A. 2315",20.5750,,"S","10",,"Devon, England Wichita, KS"
-3,0,"Delalic, Mr. Redjo","male",25,0,0,"349250",7.8958,,"S",,,
-3,0,"Demetri, Mr. Marinko","male",,0,0,"349238",7.8958,,"S",,,
-3,0,"Denkoff, Mr. Mitto","male",,0,0,"349225",7.8958,,"S",,,"Bulgaria Coon Rapids, IA"
-3,0,"Dennis, Mr. Samuel","male",22,0,0,"A/5 21172",7.2500,,"S",,,
-3,0,"Dennis, Mr. William","male",36,0,0,"A/5 21175",7.2500,,"S",,,
-3,1,"Devaney, Miss. Margaret Delia","female",19,0,0,"330958",7.8792,,"Q","C",,"Kilmacowen, Co Sligo, Ireland New York, NY"
-3,0,"Dika, Mr. Mirko","male",17,0,0,"349232",7.8958,,"S",,,
-3,0,"Dimic, Mr. Jovan","male",42,0,0,"315088",8.6625,,"S",,,
-3,0,"Dintcheff, Mr. Valtcho","male",43,0,0,"349226",7.8958,,"S",,,
-3,0,"Doharr, Mr. Tannous","male",,0,0,"2686",7.2292,,"C",,,
-3,0,"Dooley, Mr. Patrick","male",32,0,0,"370376",7.7500,,"Q",,,"Ireland New York, NY"
-3,1,"Dorking, Mr. Edward Arthur","male",19,0,0,"A/5. 10482",8.0500,,"S","B",,"England Oglesby, IL"
-3,1,"Dowdell, Miss. Elizabeth","female",30,0,0,"364516",12.4750,,"S","13",,"Union Hill, NJ"
-3,0,"Doyle, Miss. Elizabeth","female",24,0,0,"368702",7.7500,,"Q",,,"Ireland New York, NY"
-3,1,"Drapkin, Miss. Jennie","female",23,0,0,"SOTON/OQ 392083",8.0500,,"S",,,"London New York, NY"
-3,0,"Drazenoic, Mr. Jozef","male",33,0,0,"349241",7.8958,,"C",,"51","Austria Niagara Falls, NY"
-3,0,"Duane, Mr. Frank","male",65,0,0,"336439",7.7500,,"Q",,,
-3,1,"Duquemin, Mr. Joseph","male",24,0,0,"S.O./P.P. 752",7.5500,,"S","D",,"England Albion, NY"
-3,0,"Dyker, Mr. Adolf Fredrik","male",23,1,0,"347072",13.9000,,"S",,,"West Haven, CT"
-3,1,"Dyker, Mrs. Adolf Fredrik (Anna Elisabeth Judith Andersson)","female",22,1,0,"347072",13.9000,,"S","16",,"West Haven, CT"
-3,0,"Edvardsson, Mr. Gustaf Hjalmar","male",18,0,0,"349912",7.7750,,"S",,,"Tofta, Sweden Joliet, IL"
-3,0,"Eklund, Mr. Hans Linus","male",16,0,0,"347074",7.7750,,"S",,,"Karberg, Sweden Jerome Junction, AZ"
-3,0,"Ekstrom, Mr. Johan","male",45,0,0,"347061",6.9750,,"S",,,"Effington Rut, SD"
-3,0,"Elias, Mr. Dibo","male",,0,0,"2674",7.2250,,"C",,,
-3,0,"Elias, Mr. Joseph","male",39,0,2,"2675",7.2292,,"C",,,"Syria Ottawa, ON"
-3,0,"Elias, Mr. Joseph Jr","male",17,1,1,"2690",7.2292,,"C",,,
-3,0,"Elias, Mr. Tannous","male",15,1,1,"2695",7.2292,,"C",,,"Syria"
-3,0,"Elsbury, Mr. William James","male",47,0,0,"A/5 3902",7.2500,,"S",,,"Illinois, USA"
-3,1,"Emanuel, Miss. Virginia Ethel","female",5,0,0,"364516",12.4750,,"S","13",,"New York, NY"
-3,0,"Emir, Mr. Farred Chehab","male",,0,0,"2631",7.2250,,"C",,,
-3,0,"Everett, Mr. Thomas James","male",40.5,0,0,"C.A. 6212",15.1000,,"S",,"187",
-3,0,"Farrell, Mr. James","male",40.5,0,0,"367232",7.7500,,"Q",,"68","Aughnacliff, Co Longford, Ireland New York, NY"
-3,1,"Finoli, Mr. Luigi","male",,0,0,"SOTON/O.Q. 3101308",7.0500,,"S","15",,"Italy Philadelphia, PA"
-3,0,"Fischer, Mr. Eberhard Thelander","male",18,0,0,"350036",7.7958,,"S",,,
-3,0,"Fleming, Miss. Honora","female",,0,0,"364859",7.7500,,"Q",,,
-3,0,"Flynn, Mr. James","male",,0,0,"364851",7.7500,,"Q",,,
-3,0,"Flynn, Mr. John","male",,0,0,"368323",6.9500,,"Q",,,
-3,0,"Foley, Mr. Joseph","male",26,0,0,"330910",7.8792,,"Q",,,"Ireland Chicago, IL"
-3,0,"Foley, Mr. William","male",,0,0,"365235",7.7500,,"Q",,,"Ireland"
-3,1,"Foo, Mr. Choong","male",,0,0,"1601",56.4958,,"S","13",,"Hong Kong New York, NY"
-3,0,"Ford, Miss. Doolina Margaret ""Daisy""","female",21,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Ford, Miss. Robina Maggie ""Ruby""","female",9,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Ford, Mr. Arthur","male",,0,0,"A/5 1478",8.0500,,"S",,,"Bridgwater, Somerset, England"
-3,0,"Ford, Mr. Edward Watson","male",18,2,2,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Ford, Mr. William Neal","male",16,1,3,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Ford, Mrs. Edward (Margaret Ann Watson)","female",48,1,3,"W./C. 6608",34.3750,,"S",,,"Rotherfield, Sussex, England Essex Co, MA"
-3,0,"Fox, Mr. Patrick","male",,0,0,"368573",7.7500,,"Q",,,"Ireland New York, NY"
-3,0,"Franklin, Mr. Charles (Charles Fardon)","male",,0,0,"SOTON/O.Q. 3101314",7.2500,,"S",,,
-3,0,"Gallagher, Mr. Martin","male",25,0,0,"36864",7.7417,,"Q",,,"New York, NY"
-3,0,"Garfirth, Mr. John","male",,0,0,"358585",14.5000,,"S",,,
-3,0,"Gheorgheff, Mr. Stanio","male",,0,0,"349254",7.8958,,"C",,,
-3,0,"Gilinski, Mr. Eliezer","male",22,0,0,"14973",8.0500,,"S",,"47",
-3,1,"Gilnagh, Miss. Katherine ""Katie""","female",16,0,0,"35851",7.7333,,"Q","16",,"Co Longford, Ireland New York, NY"
-3,1,"Glynn, Miss. Mary Agatha","female",,0,0,"335677",7.7500,,"Q","13",,"Co Clare, Ireland Washington, DC"
-3,1,"Goldsmith, Master. Frank John William ""Frankie""","male",9,0,2,"363291",20.5250,,"S","C D",,"Strood, Kent, England Detroit, MI"
-3,0,"Goldsmith, Mr. Frank John","male",33,1,1,"363291",20.5250,,"S",,,"Strood, Kent, England Detroit, MI"
-3,0,"Goldsmith, Mr. Nathan","male",41,0,0,"SOTON/O.Q. 3101263",7.8500,,"S",,,"Philadelphia, PA"
-3,1,"Goldsmith, Mrs. Frank John (Emily Alice Brown)","female",31,1,1,"363291",20.5250,,"S","C D",,"Strood, Kent, England Detroit, MI"
-3,0,"Goncalves, Mr. Manuel Estanslas","male",38,0,0,"SOTON/O.Q. 3101306",7.0500,,"S",,,"Portugal"
-3,0,"Goodwin, Master. Harold Victor","male",9,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Master. Sidney Leonard","male",1,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Master. William Frederick","male",11,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Miss. Jessie Allis","female",10,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Miss. Lillian Amy","female",16,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Mr. Charles Edward","male",14,5,2,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Mr. Charles Frederick","male",40,1,6,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Goodwin, Mrs. Frederick (Augusta Tyler)","female",43,1,6,"CA 2144",46.9000,,"S",,,"Wiltshire, England Niagara Falls, NY"
-3,0,"Green, Mr. George Henry","male",51,0,0,"21440",8.0500,,"S",,,"Dorking, Surrey, England"
-3,0,"Gronnestad, Mr. Daniel Danielsen","male",32,0,0,"8471",8.3625,,"S",,,"Foresvik, Norway Portland, ND"
-3,0,"Guest, Mr. Robert","male",,0,0,"376563",8.0500,,"S",,,
-3,0,"Gustafsson, Mr. Alfred Ossian","male",20,0,0,"7534",9.8458,,"S",,,"Waukegan, Chicago, IL"
-3,0,"Gustafsson, Mr. Anders Vilhelm","male",37,2,0,"3101276",7.9250,,"S",,"98","Ruotsinphytaa, Finland New York, NY"
-3,0,"Gustafsson, Mr. Johan Birger","male",28,2,0,"3101277",7.9250,,"S",,,"Ruotsinphytaa, Finland New York, NY"
-3,0,"Gustafsson, Mr. Karl Gideon","male",19,0,0,"347069",7.7750,,"S",,,"Myren, Sweden New York, NY"
-3,0,"Haas, Miss. Aloisia","female",24,0,0,"349236",8.8500,,"S",,,
-3,0,"Hagardon, Miss. Kate","female",17,0,0,"AQ/3. 30631",7.7333,,"Q",,,
-3,0,"Hagland, Mr. Ingvald Olai Olsen","male",,1,0,"65303",19.9667,,"S",,,
-3,0,"Hagland, Mr. Konrad Mathias Reiersen","male",,1,0,"65304",19.9667,,"S",,,
-3,0,"Hakkarainen, Mr. Pekka Pietari","male",28,1,0,"STON/O2. 3101279",15.8500,,"S",,,
-3,1,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)","female",24,1,0,"STON/O2. 3101279",15.8500,,"S","15",,
-3,0,"Hampe, Mr. Leon","male",20,0,0,"345769",9.5000,,"S",,,
-3,0,"Hanna, Mr. Mansour","male",23.5,0,0,"2693",7.2292,,"C",,"188",
-3,0,"Hansen, Mr. Claus Peter","male",41,2,0,"350026",14.1083,,"S",,,
-3,0,"Hansen, Mr. Henrik Juul","male",26,1,0,"350025",7.8542,,"S",,,
-3,0,"Hansen, Mr. Henry Damsgaard","male",21,0,0,"350029",7.8542,,"S",,"69",
-3,1,"Hansen, Mrs. Claus Peter (Jennie L Howard)","female",45,1,0,"350026",14.1083,,"S","11",,
-3,0,"Harknett, Miss. Alice Phoebe","female",,0,0,"W./C. 6609",7.5500,,"S",,,
-3,0,"Harmer, Mr. Abraham (David Lishin)","male",25,0,0,"374887",7.2500,,"S","B",,
-3,0,"Hart, Mr. Henry","male",,0,0,"394140",6.8583,,"Q",,,
-3,0,"Hassan, Mr. Houssein G N","male",11,0,0,"2699",18.7875,,"C",,,
-3,1,"Healy, Miss. Hanora ""Nora""","female",,0,0,"370375",7.7500,,"Q","16",,
-3,1,"Hedman, Mr. Oskar Arvid","male",27,0,0,"347089",6.9750,,"S","15",,
-3,1,"Hee, Mr. Ling","male",,0,0,"1601",56.4958,,"S","C",,
-3,0,"Hegarty, Miss. Hanora ""Nora""","female",18,0,0,"365226",6.7500,,"Q",,,
-3,1,"Heikkinen, Miss. Laina","female",26,0,0,"STON/O2. 3101282",7.9250,,"S",,,
-3,0,"Heininen, Miss. Wendla Maria","female",23,0,0,"STON/O2. 3101290",7.9250,,"S",,,
-3,1,"Hellstrom, Miss. Hilda Maria","female",22,0,0,"7548",8.9625,,"S","C",,
-3,0,"Hendekovic, Mr. Ignjac","male",28,0,0,"349243",7.8958,,"S",,"306",
-3,0,"Henriksson, Miss. Jenny Lovisa","female",28,0,0,"347086",7.7750,,"S",,,
-3,0,"Henry, Miss. Delia","female",,0,0,"382649",7.7500,,"Q",,,
-3,1,"Hirvonen, Miss. Hildur E","female",2,0,1,"3101298",12.2875,,"S","15",,
-3,1,"Hirvonen, Mrs. Alexander (Helga E Lindqvist)","female",22,1,1,"3101298",12.2875,,"S","15",,
-3,0,"Holm, Mr. John Fredrik Alexander","male",43,0,0,"C 7075",6.4500,,"S",,,
-3,0,"Holthen, Mr. Johan Martin","male",28,0,0,"C 4001",22.5250,,"S",,,
-3,1,"Honkanen, Miss. Eliina","female",27,0,0,"STON/O2. 3101283",7.9250,,"S",,,
-3,0,"Horgan, Mr. John","male",,0,0,"370377",7.7500,,"Q",,,
-3,1,"Howard, Miss. May Elizabeth","female",,0,0,"A. 2. 39186",8.0500,,"S","C",,
-3,0,"Humblen, Mr. Adolf Mathias Nicolai Olsen","male",42,0,0,"348121",7.6500,"F G63","S",,"120",
-3,1,"Hyman, Mr. Abraham","male",,0,0,"3470",7.8875,,"S","C",,
-3,0,"Ibrahim Shawah, Mr. Yousseff","male",30,0,0,"2685",7.2292,,"C",,,
-3,0,"Ilieff, Mr. Ylio","male",,0,0,"349220",7.8958,,"S",,,
-3,0,"Ilmakangas, Miss. Ida Livija","female",27,1,0,"STON/O2. 3101270",7.9250,,"S",,,
-3,0,"Ilmakangas, Miss. Pieta Sofia","female",25,1,0,"STON/O2. 3101271",7.9250,,"S",,,
-3,0,"Ivanoff, Mr. Kanio","male",,0,0,"349201",7.8958,,"S",,,
-3,1,"Jalsevac, Mr. Ivan","male",29,0,0,"349240",7.8958,,"C","15",,
-3,1,"Jansson, Mr. Carl Olof","male",21,0,0,"350034",7.7958,,"S","A",,
-3,0,"Jardin, Mr. Jose Neto","male",,0,0,"SOTON/O.Q. 3101305",7.0500,,"S",,,
-3,0,"Jensen, Mr. Hans Peder","male",20,0,0,"350050",7.8542,,"S",,,
-3,0,"Jensen, Mr. Niels Peder","male",48,0,0,"350047",7.8542,,"S",,,
-3,0,"Jensen, Mr. Svend Lauritz","male",17,1,0,"350048",7.0542,,"S",,,
-3,1,"Jermyn, Miss. Annie","female",,0,0,"14313",7.7500,,"Q","D",,
-3,1,"Johannesen-Bratthammer, Mr. Bernt","male",,0,0,"65306",8.1125,,"S","13",,
-3,0,"Johanson, Mr. Jakob Alfred","male",34,0,0,"3101264",6.4958,,"S",,"143",
-3,1,"Johansson Palmquist, Mr. Oskar Leander","male",26,0,0,"347070",7.7750,,"S","15",,
-3,0,"Johansson, Mr. Erik","male",22,0,0,"350052",7.7958,,"S",,"156",
-3,0,"Johansson, Mr. Gustaf Joel","male",33,0,0,"7540",8.6542,,"S",,"285",
-3,0,"Johansson, Mr. Karl Johan","male",31,0,0,"347063",7.7750,,"S",,,
-3,0,"Johansson, Mr. Nils","male",29,0,0,"347467",7.8542,,"S",,,
-3,1,"Johnson, Master. Harold Theodor","male",4,1,1,"347742",11.1333,,"S","15",,
-3,1,"Johnson, Miss. Eleanor Ileen","female",1,1,1,"347742",11.1333,,"S","15",,
-3,0,"Johnson, Mr. Alfred","male",49,0,0,"LINE",0.0000,,"S",,,
-3,0,"Johnson, Mr. Malkolm Joackim","male",33,0,0,"347062",7.7750,,"S",,"37",
-3,0,"Johnson, Mr. William Cahoone Jr","male",19,0,0,"LINE",0.0000,,"S",,,
-3,1,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)","female",27,0,2,"347742",11.1333,,"S","15",,
-3,0,"Johnston, Master. William Arthur ""Willie""","male",,1,2,"W./C. 6607",23.4500,,"S",,,
-3,0,"Johnston, Miss. Catherine Helen ""Carrie""","female",,1,2,"W./C. 6607",23.4500,,"S",,,
-3,0,"Johnston, Mr. Andrew G","male",,1,2,"W./C. 6607",23.4500,,"S",,,
-3,0,"Johnston, Mrs. Andrew G (Elizabeth ""Lily"" Watson)","female",,1,2,"W./C. 6607",23.4500,,"S",,,
-3,0,"Jonkoff, Mr. Lalio","male",23,0,0,"349204",7.8958,,"S",,,
-3,1,"Jonsson, Mr. Carl","male",32,0,0,"350417",7.8542,,"S","15",,
-3,0,"Jonsson, Mr. Nils Hilding","male",27,0,0,"350408",7.8542,,"S",,,
-3,0,"Jussila, Miss. Katriina","female",20,1,0,"4136",9.8250,,"S",,,
-3,0,"Jussila, Miss. Mari Aina","female",21,1,0,"4137",9.8250,,"S",,,
-3,1,"Jussila, Mr. Eiriik","male",32,0,0,"STON/O 2. 3101286",7.9250,,"S","15",,
-3,0,"Kallio, Mr. Nikolai Erland","male",17,0,0,"STON/O 2. 3101274",7.1250,,"S",,,
-3,0,"Kalvik, Mr. Johannes Halvorsen","male",21,0,0,"8475",8.4333,,"S",,,
-3,0,"Karaic, Mr. Milan","male",30,0,0,"349246",7.8958,,"S",,,
-3,1,"Karlsson, Mr. Einar Gervasius","male",21,0,0,"350053",7.7958,,"S","13",,
-3,0,"Karlsson, Mr. Julius Konrad Eugen","male",33,0,0,"347465",7.8542,,"S",,,
-3,0,"Karlsson, Mr. Nils August","male",22,0,0,"350060",7.5208,,"S",,,
-3,1,"Karun, Miss. Manca","female",4,0,1,"349256",13.4167,,"C","15",,
-3,1,"Karun, Mr. Franz","male",39,0,1,"349256",13.4167,,"C","15",,
-3,0,"Kassem, Mr. Fared","male",,0,0,"2700",7.2292,,"C",,,
-3,0,"Katavelas, Mr. Vassilios (""Catavelas Vassilios"")","male",18.5,0,0,"2682",7.2292,,"C",,"58",
-3,0,"Keane, Mr. Andrew ""Andy""","male",,0,0,"12460",7.7500,,"Q",,,
-3,0,"Keefe, Mr. Arthur","male",,0,0,"323592",7.2500,,"S","A",,
-3,1,"Kelly, Miss. Anna Katherine ""Annie Kate""","female",,0,0,"9234",7.7500,,"Q","16",,
-3,1,"Kelly, Miss. Mary","female",,0,0,"14312",7.7500,,"Q","D",,
-3,0,"Kelly, Mr. James","male",34.5,0,0,"330911",7.8292,,"Q",,"70",
-3,0,"Kelly, Mr. James","male",44,0,0,"363592",8.0500,,"S",,,
-3,1,"Kennedy, Mr. John","male",,0,0,"368783",7.7500,,"Q",,,
-3,0,"Khalil, Mr. Betros","male",,1,0,"2660",14.4542,,"C",,,
-3,0,"Khalil, Mrs. Betros (Zahie ""Maria"" Elias)","female",,1,0,"2660",14.4542,,"C",,,
-3,0,"Kiernan, Mr. John","male",,1,0,"367227",7.7500,,"Q",,,
-3,0,"Kiernan, Mr. Philip","male",,1,0,"367229",7.7500,,"Q",,,
-3,0,"Kilgannon, Mr. Thomas J","male",,0,0,"36865",7.7375,,"Q",,,
-3,0,"Kink, Miss. Maria","female",22,2,0,"315152",8.6625,,"S",,,
-3,0,"Kink, Mr. Vincenz","male",26,2,0,"315151",8.6625,,"S",,,
-3,1,"Kink-Heilmann, Miss. Luise Gretchen","female",4,0,2,"315153",22.0250,,"S","2",,
-3,1,"Kink-Heilmann, Mr. Anton","male",29,3,1,"315153",22.0250,,"S","2",,
-3,1,"Kink-Heilmann, Mrs. Anton (Luise Heilmann)","female",26,1,1,"315153",22.0250,,"S","2",,
-3,0,"Klasen, Miss. Gertrud Emilia","female",1,1,1,"350405",12.1833,,"S",,,
-3,0,"Klasen, Mr. Klas Albin","male",18,1,1,"350404",7.8542,,"S",,,
-3,0,"Klasen, Mrs. (Hulda Kristina Eugenia Lofqvist)","female",36,0,2,"350405",12.1833,,"S",,,
-3,0,"Kraeff, Mr. Theodor","male",,0,0,"349253",7.8958,,"C",,,
-3,1,"Krekorian, Mr. Neshan","male",25,0,0,"2654",7.2292,"F E57","C","10",,
-3,0,"Lahoud, Mr. Sarkis","male",,0,0,"2624",7.2250,,"C",,,
-3,0,"Laitinen, Miss. Kristina Sofia","female",37,0,0,"4135",9.5875,,"S",,,
-3,0,"Laleff, Mr. Kristo","male",,0,0,"349217",7.8958,,"S",,,
-3,1,"Lam, Mr. Ali","male",,0,0,"1601",56.4958,,"S","C",,
-3,0,"Lam, Mr. Len","male",,0,0,"1601",56.4958,,"S",,,
-3,1,"Landergren, Miss. Aurora Adelia","female",22,0,0,"C 7077",7.2500,,"S","13",,
-3,0,"Lane, Mr. Patrick","male",,0,0,"7935",7.7500,,"Q",,,
-3,1,"Lang, Mr. Fang","male",26,0,0,"1601",56.4958,,"S","14",,
-3,0,"Larsson, Mr. August Viktor","male",29,0,0,"7545",9.4833,,"S",,,
-3,0,"Larsson, Mr. Bengt Edvin","male",29,0,0,"347067",7.7750,,"S",,,
-3,0,"Larsson-Rondberg, Mr. Edvard A","male",22,0,0,"347065",7.7750,,"S",,,
-3,1,"Leeni, Mr. Fahim (""Philip Zenni"")","male",22,0,0,"2620",7.2250,,"C","6",,
-3,0,"Lefebre, Master. Henry Forbes","male",,3,1,"4133",25.4667,,"S",,,
-3,0,"Lefebre, Miss. Ida","female",,3,1,"4133",25.4667,,"S",,,
-3,0,"Lefebre, Miss. Jeannie","female",,3,1,"4133",25.4667,,"S",,,
-3,0,"Lefebre, Miss. Mathilde","female",,3,1,"4133",25.4667,,"S",,,
-3,0,"Lefebre, Mrs. Frank (Frances)","female",,0,4,"4133",25.4667,,"S",,,
-3,0,"Leinonen, Mr. Antti Gustaf","male",32,0,0,"STON/O 2. 3101292",7.9250,,"S",,,
-3,0,"Lemberopolous, Mr. Peter L","male",34.5,0,0,"2683",6.4375,,"C",,"196",
-3,0,"Lennon, Miss. Mary","female",,1,0,"370371",15.5000,,"Q",,,
-3,0,"Lennon, Mr. Denis","male",,1,0,"370371",15.5000,,"Q",,,
-3,0,"Leonard, Mr. Lionel","male",36,0,0,"LINE",0.0000,,"S",,,
-3,0,"Lester, Mr. James","male",39,0,0,"A/4 48871",24.1500,,"S",,,
-3,0,"Lievens, Mr. Rene Aime","male",24,0,0,"345781",9.5000,,"S",,,
-3,0,"Lindahl, Miss. Agda Thorilda Viktoria","female",25,0,0,"347071",7.7750,,"S",,,
-3,0,"Lindblom, Miss. Augusta Charlotta","female",45,0,0,"347073",7.7500,,"S",,,
-3,0,"Lindell, Mr. Edvard Bengtsson","male",36,1,0,"349910",15.5500,,"S","A",,
-3,0,"Lindell, Mrs. Edvard Bengtsson (Elin Gerda Persson)","female",30,1,0,"349910",15.5500,,"S","A",,
-3,1,"Lindqvist, Mr. Eino William","male",20,1,0,"STON/O 2. 3101285",7.9250,,"S","15",,
-3,0,"Linehan, Mr. Michael","male",,0,0,"330971",7.8792,,"Q",,,
-3,0,"Ling, Mr. Lee","male",28,0,0,"1601",56.4958,,"S",,,
-3,0,"Lithman, Mr. Simon","male",,0,0,"S.O./P.P. 251",7.5500,,"S",,,
-3,0,"Lobb, Mr. William Arthur","male",30,1,0,"A/5. 3336",16.1000,,"S",,,
-3,0,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)","female",26,1,0,"A/5. 3336",16.1000,,"S",,,
-3,0,"Lockyer, Mr. Edward","male",,0,0,"1222",7.8792,,"S",,"153",
-3,0,"Lovell, Mr. John Hall (""Henry"")","male",20.5,0,0,"A/5 21173",7.2500,,"S",,,
-3,1,"Lulic, Mr. Nikola","male",27,0,0,"315098",8.6625,,"S","15",,
-3,0,"Lundahl, Mr. Johan Svensson","male",51,0,0,"347743",7.0542,,"S",,,
-3,1,"Lundin, Miss. Olga Elida","female",23,0,0,"347469",7.8542,,"S","10",,
-3,1,"Lundstrom, Mr. Thure Edvin","male",32,0,0,"350403",7.5792,,"S","15",,
-3,0,"Lyntakoff, Mr. Stanko","male",,0,0,"349235",7.8958,,"S",,,
-3,0,"MacKay, Mr. George William","male",,0,0,"C.A. 42795",7.5500,,"S",,,
-3,1,"Madigan, Miss. Margaret ""Maggie""","female",,0,0,"370370",7.7500,,"Q","15",,
-3,1,"Madsen, Mr. Fridtjof Arne","male",24,0,0,"C 17369",7.1417,,"S","13",,
-3,0,"Maenpaa, Mr. Matti Alexanteri","male",22,0,0,"STON/O 2. 3101275",7.1250,,"S",,,
-3,0,"Mahon, Miss. Bridget Delia","female",,0,0,"330924",7.8792,,"Q",,,
-3,0,"Mahon, Mr. John","male",,0,0,"AQ/4 3130",7.7500,,"Q",,,
-3,0,"Maisner, Mr. Simon","male",,0,0,"A/S 2816",8.0500,,"S",,,
-3,0,"Makinen, Mr. Kalle Edvard","male",29,0,0,"STON/O 2. 3101268",7.9250,,"S",,,
-3,1,"Mamee, Mr. Hanna","male",,0,0,"2677",7.2292,,"C","15",,
-3,0,"Mangan, Miss. Mary","female",30.5,0,0,"364850",7.7500,,"Q",,"61",
-3,1,"Mannion, Miss. Margareth","female",,0,0,"36866",7.7375,,"Q","16",,
-3,0,"Mardirosian, Mr. Sarkis","male",,0,0,"2655",7.2292,"F E46","C",,,
-3,0,"Markoff, Mr. Marin","male",35,0,0,"349213",7.8958,,"C",,,
-3,0,"Markun, Mr. Johann","male",33,0,0,"349257",7.8958,,"S",,,
-3,1,"Masselmani, Mrs. Fatima","female",,0,0,"2649",7.2250,,"C","C",,
-3,0,"Matinoff, Mr. Nicola","male",,0,0,"349255",7.8958,,"C",,,
-3,1,"McCarthy, Miss. Catherine ""Katie""","female",,0,0,"383123",7.7500,,"Q","15 16",,
-3,1,"McCormack, Mr. Thomas Joseph","male",,0,0,"367228",7.7500,,"Q",,,
-3,1,"McCoy, Miss. Agnes","female",,2,0,"367226",23.2500,,"Q","16",,
-3,1,"McCoy, Miss. Alicia","female",,2,0,"367226",23.2500,,"Q","16",,
-3,1,"McCoy, Mr. Bernard","male",,2,0,"367226",23.2500,,"Q","16",,
-3,1,"McDermott, Miss. Brigdet Delia","female",,0,0,"330932",7.7875,,"Q","13",,
-3,0,"McEvoy, Mr. Michael","male",,0,0,"36568",15.5000,,"Q",,,
-3,1,"McGovern, Miss. Mary","female",,0,0,"330931",7.8792,,"Q","13",,
-3,1,"McGowan, Miss. Anna ""Annie""","female",15,0,0,"330923",8.0292,,"Q",,,
-3,0,"McGowan, Miss. Katherine","female",35,0,0,"9232",7.7500,,"Q",,,
-3,0,"McMahon, Mr. Martin","male",,0,0,"370372",7.7500,,"Q",,,
-3,0,"McNamee, Mr. Neal","male",24,1,0,"376566",16.1000,,"S",,,
-3,0,"McNamee, Mrs. Neal (Eileen O'Leary)","female",19,1,0,"376566",16.1000,,"S",,"53",
-3,0,"McNeill, Miss. Bridget","female",,0,0,"370368",7.7500,,"Q",,,
-3,0,"Meanwell, Miss. (Marion Ogden)","female",,0,0,"SOTON/O.Q. 392087",8.0500,,"S",,,
-3,0,"Meek, Mrs. Thomas (Annie Louise Rowley)","female",,0,0,"343095",8.0500,,"S",,,
-3,0,"Meo, Mr. Alfonzo","male",55.5,0,0,"A.5. 11206",8.0500,,"S",,"201",
-3,0,"Mernagh, Mr. Robert","male",,0,0,"368703",7.7500,,"Q",,,
-3,1,"Midtsjo, Mr. Karl Albert","male",21,0,0,"345501",7.7750,,"S","15",,
-3,0,"Miles, Mr. Frank","male",,0,0,"359306",8.0500,,"S",,,
-3,0,"Mineff, Mr. Ivan","male",24,0,0,"349233",7.8958,,"S",,,
-3,0,"Minkoff, Mr. Lazar","male",21,0,0,"349211",7.8958,,"S",,,
-3,0,"Mionoff, Mr. Stoytcho","male",28,0,0,"349207",7.8958,,"S",,,
-3,0,"Mitkoff, Mr. Mito","male",,0,0,"349221",7.8958,,"S",,,
-3,1,"Mockler, Miss. Helen Mary ""Ellie""","female",,0,0,"330980",7.8792,,"Q","16",,
-3,0,"Moen, Mr. Sigurd Hansen","male",25,0,0,"348123",7.6500,"F G73","S",,"309",
-3,1,"Moor, Master. Meier","male",6,0,1,"392096",12.4750,"E121","S","14",,
-3,1,"Moor, Mrs. (Beila)","female",27,0,1,"392096",12.4750,"E121","S","14",,
-3,0,"Moore, Mr. Leonard Charles","male",,0,0,"A4. 54510",8.0500,,"S",,,
-3,1,"Moran, Miss. Bertha","female",,1,0,"371110",24.1500,,"Q","16",,
-3,0,"Moran, Mr. Daniel J","male",,1,0,"371110",24.1500,,"Q",,,
-3,0,"Moran, Mr. James","male",,0,0,"330877",8.4583,,"Q",,,
-3,0,"Morley, Mr. William","male",34,0,0,"364506",8.0500,,"S",,,
-3,0,"Morrow, Mr. Thomas Rowan","male",,0,0,"372622",7.7500,,"Q",,,
-3,1,"Moss, Mr. Albert Johan","male",,0,0,"312991",7.7750,,"S","B",,
-3,1,"Moubarek, Master. Gerios","male",,1,1,"2661",15.2458,,"C","C",,
-3,1,"Moubarek, Master. Halim Gonios (""William George"")","male",,1,1,"2661",15.2458,,"C","C",,
-3,1,"Moubarek, Mrs. George (Omine ""Amenia"" Alexander)","female",,0,2,"2661",15.2458,,"C","C",,
-3,1,"Moussa, Mrs. (Mantoura Boulos)","female",,0,0,"2626",7.2292,,"C",,,
-3,0,"Moutal, Mr. Rahamin Haim","male",,0,0,"374746",8.0500,,"S",,,
-3,1,"Mullens, Miss. Katherine ""Katie""","female",,0,0,"35852",7.7333,,"Q","16",,
-3,1,"Mulvihill, Miss. Bertha E","female",24,0,0,"382653",7.7500,,"Q","15",,
-3,0,"Murdlin, Mr. Joseph","male",,0,0,"A./5. 3235",8.0500,,"S",,,
-3,1,"Murphy, Miss. Katherine ""Kate""","female",,1,0,"367230",15.5000,,"Q","16",,
-3,1,"Murphy, Miss. Margaret Jane","female",,1,0,"367230",15.5000,,"Q","16",,
-3,1,"Murphy, Miss. Nora","female",,0,0,"36568",15.5000,,"Q","16",,
-3,0,"Myhrman, Mr. Pehr Fabian Oliver Malkolm","male",18,0,0,"347078",7.7500,,"S",,,
-3,0,"Naidenoff, Mr. Penko","male",22,0,0,"349206",7.8958,,"S",,,
-3,1,"Najib, Miss. Adele Kiamie ""Jane""","female",15,0,0,"2667",7.2250,,"C","C",,
-3,1,"Nakid, Miss. Maria (""Mary"")","female",1,0,2,"2653",15.7417,,"C","C",,
-3,1,"Nakid, Mr. Sahid","male",20,1,1,"2653",15.7417,,"C","C",,
-3,1,"Nakid, Mrs. Said (Waika ""Mary"" Mowad)","female",19,1,1,"2653",15.7417,,"C","C",,
-3,0,"Nancarrow, Mr. William Henry","male",33,0,0,"A./5. 3338",8.0500,,"S",,,
-3,0,"Nankoff, Mr. Minko","male",,0,0,"349218",7.8958,,"S",,,
-3,0,"Nasr, Mr. Mustafa","male",,0,0,"2652",7.2292,,"C",,,
-3,0,"Naughton, Miss. Hannah","female",,0,0,"365237",7.7500,,"Q",,,
-3,0,"Nenkoff, Mr. Christo","male",,0,0,"349234",7.8958,,"S",,,
-3,1,"Nicola-Yarred, Master. Elias","male",12,1,0,"2651",11.2417,,"C","C",,
-3,1,"Nicola-Yarred, Miss. Jamila","female",14,1,0,"2651",11.2417,,"C","C",,
-3,0,"Nieminen, Miss. Manta Josefina","female",29,0,0,"3101297",7.9250,,"S",,,
-3,0,"Niklasson, Mr. Samuel","male",28,0,0,"363611",8.0500,,"S",,,
-3,1,"Nilsson, Miss. Berta Olivia","female",18,0,0,"347066",7.7750,,"S","D",,
-3,1,"Nilsson, Miss. Helmina Josefina","female",26,0,0,"347470",7.8542,,"S","13",,
-3,0,"Nilsson, Mr. August Ferdinand","male",21,0,0,"350410",7.8542,,"S",,,
-3,0,"Nirva, Mr. Iisakki Antino Aijo","male",41,0,0,"SOTON/O2 3101272",7.1250,,"S",,,"Finland Sudbury, ON"
-3,1,"Niskanen, Mr. Juha","male",39,0,0,"STON/O 2. 3101289",7.9250,,"S","9",,
-3,0,"Nosworthy, Mr. Richard Cater","male",21,0,0,"A/4. 39886",7.8000,,"S",,,
-3,0,"Novel, Mr. Mansouer","male",28.5,0,0,"2697",7.2292,,"C",,"181",
-3,1,"Nysten, Miss. Anna Sofia","female",22,0,0,"347081",7.7500,,"S","13",,
-3,0,"Nysveen, Mr. Johan Hansen","male",61,0,0,"345364",6.2375,,"S",,,
-3,0,"O'Brien, Mr. Thomas","male",,1,0,"370365",15.5000,,"Q",,,
-3,0,"O'Brien, Mr. Timothy","male",,0,0,"330979",7.8292,,"Q",,,
-3,1,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)","female",,1,0,"370365",15.5000,,"Q",,,
-3,0,"O'Connell, Mr. Patrick D","male",,0,0,"334912",7.7333,,"Q",,,
-3,0,"O'Connor, Mr. Maurice","male",,0,0,"371060",7.7500,,"Q",,,
-3,0,"O'Connor, Mr. Patrick","male",,0,0,"366713",7.7500,,"Q",,,
-3,0,"Odahl, Mr. Nils Martin","male",23,0,0,"7267",9.2250,,"S",,,
-3,0,"O'Donoghue, Ms. Bridget","female",,0,0,"364856",7.7500,,"Q",,,
-3,1,"O'Driscoll, Miss. Bridget","female",,0,0,"14311",7.7500,,"Q","D",,
-3,1,"O'Dwyer, Miss. Ellen ""Nellie""","female",,0,0,"330959",7.8792,,"Q",,,
-3,1,"Ohman, Miss. Velin","female",22,0,0,"347085",7.7750,,"S","C",,
-3,1,"O'Keefe, Mr. Patrick","male",,0,0,"368402",7.7500,,"Q","B",,
-3,1,"O'Leary, Miss. Hanora ""Norah""","female",,0,0,"330919",7.8292,,"Q","13",,
-3,1,"Olsen, Master. Artur Karl","male",9,0,1,"C 17368",3.1708,,"S","13",,
-3,0,"Olsen, Mr. Henry Margido","male",28,0,0,"C 4001",22.5250,,"S",,"173",
-3,0,"Olsen, Mr. Karl Siegwart Andreas","male",42,0,1,"4579",8.4042,,"S",,,
-3,0,"Olsen, Mr. Ole Martin","male",,0,0,"Fa 265302",7.3125,,"S",,,
-3,0,"Olsson, Miss. Elina","female",31,0,0,"350407",7.8542,,"S",,,
-3,0,"Olsson, Mr. Nils Johan Goransson","male",28,0,0,"347464",7.8542,,"S",,,
-3,1,"Olsson, Mr. Oscar Wilhelm","male",32,0,0,"347079",7.7750,,"S","A",,
-3,0,"Olsvigen, Mr. Thor Anderson","male",20,0,0,"6563",9.2250,,"S",,"89","Oslo, Norway Cameron, WI"
-3,0,"Oreskovic, Miss. Jelka","female",23,0,0,"315085",8.6625,,"S",,,
-3,0,"Oreskovic, Miss. Marija","female",20,0,0,"315096",8.6625,,"S",,,
-3,0,"Oreskovic, Mr. Luka","male",20,0,0,"315094",8.6625,,"S",,,
-3,0,"Osen, Mr. Olaf Elon","male",16,0,0,"7534",9.2167,,"S",,,
-3,1,"Osman, Mrs. Mara","female",31,0,0,"349244",8.6833,,"S",,,
-3,0,"O'Sullivan, Miss. Bridget Mary","female",,0,0,"330909",7.6292,,"Q",,,
-3,0,"Palsson, Master. Gosta Leonard","male",2,3,1,"349909",21.0750,,"S",,"4",
-3,0,"Palsson, Master. Paul Folke","male",6,3,1,"349909",21.0750,,"S",,,
-3,0,"Palsson, Miss. Stina Viola","female",3,3,1,"349909",21.0750,,"S",,,
-3,0,"Palsson, Miss. Torborg Danira","female",8,3,1,"349909",21.0750,,"S",,,
-3,0,"Palsson, Mrs. Nils (Alma Cornelia Berglund)","female",29,0,4,"349909",21.0750,,"S",,"206",
-3,0,"Panula, Master. Eino Viljami","male",1,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Master. Juha Niilo","male",7,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Master. Urho Abraham","male",2,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Mr. Ernesti Arvid","male",16,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Mr. Jaako Arnold","male",14,4,1,"3101295",39.6875,,"S",,,
-3,0,"Panula, Mrs. Juha (Maria Emilia Ojala)","female",41,0,5,"3101295",39.6875,,"S",,,
-3,0,"Pasic, Mr. Jakob","male",21,0,0,"315097",8.6625,,"S",,,
-3,0,"Patchett, Mr. George","male",19,0,0,"358585",14.5000,,"S",,,
-3,0,"Paulner, Mr. Uscher","male",,0,0,"3411",8.7125,,"C",,,
-3,0,"Pavlovic, Mr. Stefo","male",32,0,0,"349242",7.8958,,"S",,,
-3,0,"Peacock, Master. Alfred Edward","male",0.75,1,1,"SOTON/O.Q. 3101315",13.7750,,"S",,,
-3,0,"Peacock, Miss. Treasteall","female",3,1,1,"SOTON/O.Q. 3101315",13.7750,,"S",,,
-3,0,"Peacock, Mrs. Benjamin (Edith Nile)","female",26,0,2,"SOTON/O.Q. 3101315",13.7750,,"S",,,
-3,0,"Pearce, Mr. Ernest","male",,0,0,"343271",7.0000,,"S",,,
-3,0,"Pedersen, Mr. Olaf","male",,0,0,"345498",7.7750,,"S",,,
-3,0,"Peduzzi, Mr. Joseph","male",,0,0,"A/5 2817",8.0500,,"S",,,
-3,0,"Pekoniemi, Mr. Edvard","male",21,0,0,"STON/O 2. 3101294",7.9250,,"S",,,
-3,0,"Peltomaki, Mr. Nikolai Johannes","male",25,0,0,"STON/O 2. 3101291",7.9250,,"S",,,
-3,0,"Perkin, Mr. John Henry","male",22,0,0,"A/5 21174",7.2500,,"S",,,
-3,1,"Persson, Mr. Ernst Ulrik","male",25,1,0,"347083",7.7750,,"S","15",,
-3,1,"Peter, Master. Michael J","male",,1,1,"2668",22.3583,,"C","C",,
-3,1,"Peter, Miss. Anna","female",,1,1,"2668",22.3583,"F E69","C","D",,
-3,1,"Peter, Mrs. Catherine (Catherine Rizk)","female",,0,2,"2668",22.3583,,"C","D",,
-3,0,"Peters, Miss. Katie","female",,0,0,"330935",8.1375,,"Q",,,
-3,0,"Petersen, Mr. Marius","male",24,0,0,"342441",8.0500,,"S",,,
-3,0,"Petranec, Miss. Matilda","female",28,0,0,"349245",7.8958,,"S",,,
-3,0,"Petroff, Mr. Nedelio","male",19,0,0,"349212",7.8958,,"S",,,
-3,0,"Petroff, Mr. Pastcho (""Pentcho"")","male",,0,0,"349215",7.8958,,"S",,,
-3,0,"Petterson, Mr. Johan Emil","male",25,1,0,"347076",7.7750,,"S",,,
-3,0,"Pettersson, Miss. Ellen Natalia","female",18,0,0,"347087",7.7750,,"S",,,
-3,1,"Pickard, Mr. Berk (Berk Trembisky)","male",32,0,0,"SOTON/O.Q. 392078",8.0500,"E10","S","9",,
-3,0,"Plotcharsky, Mr. Vasil","male",,0,0,"349227",7.8958,,"S",,,
-3,0,"Pokrnic, Mr. Mate","male",17,0,0,"315095",8.6625,,"S",,,
-3,0,"Pokrnic, Mr. Tome","male",24,0,0,"315092",8.6625,,"S",,,
-3,0,"Radeff, Mr. Alexander","male",,0,0,"349223",7.8958,,"S",,,
-3,0,"Rasmussen, Mrs. (Lena Jacobsen Solvang)","female",,0,0,"65305",8.1125,,"S",,,
-3,0,"Razi, Mr. Raihed","male",,0,0,"2629",7.2292,,"C",,,
-3,0,"Reed, Mr. James George","male",,0,0,"362316",7.2500,,"S",,,
-3,0,"Rekic, Mr. Tido","male",38,0,0,"349249",7.8958,,"S",,,
-3,0,"Reynolds, Mr. Harold J","male",21,0,0,"342684",8.0500,,"S",,,
-3,0,"Rice, Master. Albert","male",10,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Master. Arthur","male",4,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Master. Eric","male",7,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Master. Eugene","male",2,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Master. George Hugh","male",8,4,1,"382652",29.1250,,"Q",,,
-3,0,"Rice, Mrs. William (Margaret Norton)","female",39,0,5,"382652",29.1250,,"Q",,"327",
-3,0,"Riihivouri, Miss. Susanna Juhantytar ""Sanni""","female",22,0,0,"3101295",39.6875,,"S",,,
-3,0,"Rintamaki, Mr. Matti","male",35,0,0,"STON/O 2. 3101273",7.1250,,"S",,,
-3,1,"Riordan, Miss. Johanna ""Hannah""","female",,0,0,"334915",7.7208,,"Q","13",,
-3,0,"Risien, Mr. Samuel Beard","male",,0,0,"364498",14.5000,,"S",,,
-3,0,"Risien, Mrs. Samuel (Emma)","female",,0,0,"364498",14.5000,,"S",,,
-3,0,"Robins, Mr. Alexander A","male",50,1,0,"A/5. 3337",14.5000,,"S",,"119",
-3,0,"Robins, Mrs. Alexander A (Grace Charity Laury)","female",47,1,0,"A/5. 3337",14.5000,,"S",,"7",
-3,0,"Rogers, Mr. William John","male",,0,0,"S.C./A.4. 23567",8.0500,,"S",,,
-3,0,"Rommetvedt, Mr. Knud Paust","male",,0,0,"312993",7.7750,,"S",,,
-3,0,"Rosblom, Miss. Salli Helena","female",2,1,1,"370129",20.2125,,"S",,,
-3,0,"Rosblom, Mr. Viktor Richard","male",18,1,1,"370129",20.2125,,"S",,,
-3,0,"Rosblom, Mrs. Viktor (Helena Wilhelmina)","female",41,0,2,"370129",20.2125,,"S",,,
-3,1,"Roth, Miss. Sarah A","female",,0,0,"342712",8.0500,,"S","C",,
-3,0,"Rouse, Mr. Richard Henry","male",50,0,0,"A/5 3594",8.0500,,"S",,,
-3,0,"Rush, Mr. Alfred George John","male",16,0,0,"A/4. 20589",8.0500,,"S",,,
-3,1,"Ryan, Mr. Edward","male",,0,0,"383162",7.7500,,"Q","14",,
-3,0,"Ryan, Mr. Patrick","male",,0,0,"371110",24.1500,,"Q",,,
-3,0,"Saad, Mr. Amin","male",,0,0,"2671",7.2292,,"C",,,
-3,0,"Saad, Mr. Khalil","male",25,0,0,"2672",7.2250,,"C",,,
-3,0,"Saade, Mr. Jean Nassr","male",,0,0,"2676",7.2250,,"C",,,
-3,0,"Sadlier, Mr. Matthew","male",,0,0,"367655",7.7292,,"Q",,,
-3,0,"Sadowitz, Mr. Harry","male",,0,0,"LP 1588",7.5750,,"S",,,
-3,0,"Saether, Mr. Simon Sivertsen","male",38.5,0,0,"SOTON/O.Q. 3101262",7.2500,,"S",,"32",
-3,0,"Sage, Master. Thomas Henry","male",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Master. William Henry","male",14.5,8,2,"CA. 2343",69.5500,,"S",,"67",
-3,0,"Sage, Miss. Ada","female",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Miss. Constance Gladys","female",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Miss. Dorothy Edith ""Dolly""","female",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Miss. Stella Anna","female",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mr. Douglas Bullen","male",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mr. Frederick","male",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mr. George John Jr","male",,8,2,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mr. John George","male",,1,9,"CA. 2343",69.5500,,"S",,,
-3,0,"Sage, Mrs. John (Annie Bullen)","female",,1,9,"CA. 2343",69.5500,,"S",,,
-3,0,"Salander, Mr. Karl Johan","male",24,0,0,"7266",9.3250,,"S",,,
-3,1,"Salkjelsvik, Miss. Anna Kristine","female",21,0,0,"343120",7.6500,,"S","C",,
-3,0,"Salonen, Mr. Johan Werner","male",39,0,0,"3101296",7.9250,,"S",,,
-3,0,"Samaan, Mr. Elias","male",,2,0,"2662",21.6792,,"C",,,
-3,0,"Samaan, Mr. Hanna","male",,2,0,"2662",21.6792,,"C",,,
-3,0,"Samaan, Mr. Youssef","male",,2,0,"2662",21.6792,,"C",,,
-3,1,"Sandstrom, Miss. Beatrice Irene","female",1,1,1,"PP 9549",16.7000,"G6","S","13",,
-3,1,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)","female",24,0,2,"PP 9549",16.7000,"G6","S","13",,
-3,1,"Sandstrom, Miss. Marguerite Rut","female",4,1,1,"PP 9549",16.7000,"G6","S","13",,
-3,1,"Sap, Mr. Julius","male",25,0,0,"345768",9.5000,,"S","11",,
-3,0,"Saundercock, Mr. William Henry","male",20,0,0,"A/5. 2151",8.0500,,"S",,,
-3,0,"Sawyer, Mr. Frederick Charles","male",24.5,0,0,"342826",8.0500,,"S",,"284",
-3,0,"Scanlan, Mr. James","male",,0,0,"36209",7.7250,,"Q",,,
-3,0,"Sdycoff, Mr. Todor","male",,0,0,"349222",7.8958,,"S",,,
-3,0,"Shaughnessy, Mr. Patrick","male",,0,0,"370374",7.7500,,"Q",,,
-3,1,"Sheerlinck, Mr. Jan Baptist","male",29,0,0,"345779",9.5000,,"S","11",,
-3,0,"Shellard, Mr. Frederick William","male",,0,0,"C.A. 6212",15.1000,,"S",,,
-3,1,"Shine, Miss. Ellen Natalia","female",,0,0,"330968",7.7792,,"Q",,,
-3,0,"Shorney, Mr. Charles Joseph","male",,0,0,"374910",8.0500,,"S",,,
-3,0,"Simmons, Mr. John","male",,0,0,"SOTON/OQ 392082",8.0500,,"S",,,
-3,0,"Sirayanian, Mr. Orsen","male",22,0,0,"2669",7.2292,,"C",,,
-3,0,"Sirota, Mr. Maurice","male",,0,0,"392092",8.0500,,"S",,,
-3,0,"Sivic, Mr. Husein","male",40,0,0,"349251",7.8958,,"S",,,
-3,0,"Sivola, Mr. Antti Wilhelm","male",21,0,0,"STON/O 2. 3101280",7.9250,,"S",,,
-3,1,"Sjoblom, Miss. Anna Sofia","female",18,0,0,"3101265",7.4958,,"S","16",,
-3,0,"Skoog, Master. Harald","male",4,3,2,"347088",27.9000,,"S",,,
-3,0,"Skoog, Master. Karl Thorsten","male",10,3,2,"347088",27.9000,,"S",,,
-3,0,"Skoog, Miss. Mabel","female",9,3,2,"347088",27.9000,,"S",,,
-3,0,"Skoog, Miss. Margit Elizabeth","female",2,3,2,"347088",27.9000,,"S",,,
-3,0,"Skoog, Mr. Wilhelm","male",40,1,4,"347088",27.9000,,"S",,,
-3,0,"Skoog, Mrs. William (Anna Bernhardina Karlsson)","female",45,1,4,"347088",27.9000,,"S",,,
-3,0,"Slabenoff, Mr. Petco","male",,0,0,"349214",7.8958,,"S",,,
-3,0,"Slocovski, Mr. Selman Francis","male",,0,0,"SOTON/OQ 392086",8.0500,,"S",,,
-3,0,"Smiljanic, Mr. Mile","male",,0,0,"315037",8.6625,,"S",,,
-3,0,"Smith, Mr. Thomas","male",,0,0,"384461",7.7500,,"Q",,,
-3,1,"Smyth, Miss. Julia","female",,0,0,"335432",7.7333,,"Q","13",,
-3,0,"Soholt, Mr. Peter Andreas Lauritz Andersen","male",19,0,0,"348124",7.6500,"F G73","S",,,
-3,0,"Somerton, Mr. Francis William","male",30,0,0,"A.5. 18509",8.0500,,"S",,,
-3,0,"Spector, Mr. Woolf","male",,0,0,"A.5. 3236",8.0500,,"S",,,
-3,0,"Spinner, Mr. Henry John","male",32,0,0,"STON/OQ. 369943",8.0500,,"S",,,
-3,0,"Staneff, Mr. Ivan","male",,0,0,"349208",7.8958,,"S",,,
-3,0,"Stankovic, Mr. Ivan","male",33,0,0,"349239",8.6625,,"C",,,
-3,1,"Stanley, Miss. Amy Zillah Elsie","female",23,0,0,"CA. 2314",7.5500,,"S","C",,
-3,0,"Stanley, Mr. Edward Roland","male",21,0,0,"A/4 45380",8.0500,,"S",,,
-3,0,"Storey, Mr. Thomas","male",60.5,0,0,"3701",,,"S",,"261",
-3,0,"Stoytcheff, Mr. Ilia","male",19,0,0,"349205",7.8958,,"S",,,
-3,0,"Strandberg, Miss. Ida Sofia","female",22,0,0,"7553",9.8375,,"S",,,
-3,1,"Stranden, Mr. Juho","male",31,0,0,"STON/O 2. 3101288",7.9250,,"S","9",,
-3,0,"Strilic, Mr. Ivan","male",27,0,0,"315083",8.6625,,"S",,,
-3,0,"Strom, Miss. Telma Matilda","female",2,0,1,"347054",10.4625,"G6","S",,,
-3,0,"Strom, Mrs. Wilhelm (Elna Matilda Persson)","female",29,1,1,"347054",10.4625,"G6","S",,,
-3,1,"Sunderland, Mr. Victor Francis","male",16,0,0,"SOTON/OQ 392089",8.0500,,"S","B",,
-3,1,"Sundman, Mr. Johan Julian","male",44,0,0,"STON/O 2. 3101269",7.9250,,"S","15",,
-3,0,"Sutehall, Mr. Henry Jr","male",25,0,0,"SOTON/OQ 392076",7.0500,,"S",,,
-3,0,"Svensson, Mr. Johan","male",74,0,0,"347060",7.7750,,"S",,,
-3,1,"Svensson, Mr. Johan Cervin","male",14,0,0,"7538",9.2250,,"S","13",,
-3,0,"Svensson, Mr. Olof","male",24,0,0,"350035",7.7958,,"S",,,
-3,1,"Tenglin, Mr. Gunnar Isidor","male",25,0,0,"350033",7.7958,,"S","13 15",,
-3,0,"Theobald, Mr. Thomas Leonard","male",34,0,0,"363294",8.0500,,"S",,"176",
-3,1,"Thomas, Master. Assad Alexander","male",0.42,0,1,"2625",8.5167,,"C","16",,
-3,0,"Thomas, Mr. Charles P","male",,1,0,"2621",6.4375,,"C",,,
-3,0,"Thomas, Mr. John","male",,0,0,"2681",6.4375,,"C",,,
-3,0,"Thomas, Mr. Tannous","male",,0,0,"2684",7.2250,,"C",,,
-3,1,"Thomas, Mrs. Alexander (Thamine ""Thelma"")","female",16,1,1,"2625",8.5167,,"C","14",,
-3,0,"Thomson, Mr. Alexander Morrison","male",,0,0,"32302",8.0500,,"S",,,
-3,0,"Thorneycroft, Mr. Percival","male",,1,0,"376564",16.1000,,"S",,,
-3,1,"Thorneycroft, Mrs. Percival (Florence Kate White)","female",,1,0,"376564",16.1000,,"S","10",,
-3,0,"Tikkanen, Mr. Juho","male",32,0,0,"STON/O 2. 3101293",7.9250,,"S",,,
-3,0,"Tobin, Mr. Roger","male",,0,0,"383121",7.7500,"F38","Q",,,
-3,0,"Todoroff, Mr. Lalio","male",,0,0,"349216",7.8958,,"S",,,
-3,0,"Tomlin, Mr. Ernest Portage","male",30.5,0,0,"364499",8.0500,,"S",,"50",
-3,0,"Torber, Mr. Ernst William","male",44,0,0,"364511",8.0500,,"S",,,
-3,0,"Torfa, Mr. Assad","male",,0,0,"2673",7.2292,,"C",,,
-3,1,"Tornquist, Mr. William Henry","male",25,0,0,"LINE",0.0000,,"S","15",,
-3,0,"Toufik, Mr. Nakli","male",,0,0,"2641",7.2292,,"C",,,
-3,1,"Touma, Master. Georges Youssef","male",7,1,1,"2650",15.2458,,"C","C",,
-3,1,"Touma, Miss. Maria Youssef","female",9,1,1,"2650",15.2458,,"C","C",,
-3,1,"Touma, Mrs. Darwis (Hanne Youssef Razi)","female",29,0,2,"2650",15.2458,,"C","C",,
-3,0,"Turcin, Mr. Stjepan","male",36,0,0,"349247",7.8958,,"S",,,
-3,1,"Turja, Miss. Anna Sofia","female",18,0,0,"4138",9.8417,,"S","15",,
-3,1,"Turkula, Mrs. (Hedwig)","female",63,0,0,"4134",9.5875,,"S","15",,
-3,0,"van Billiard, Master. James William","male",,1,1,"A/5. 851",14.5000,,"S",,,
-3,0,"van Billiard, Master. Walter John","male",11.5,1,1,"A/5. 851",14.5000,,"S",,"1",
-3,0,"van Billiard, Mr. Austin Blyler","male",40.5,0,2,"A/5. 851",14.5000,,"S",,"255",
-3,0,"Van Impe, Miss. Catharina","female",10,0,2,"345773",24.1500,,"S",,,
-3,0,"Van Impe, Mr. Jean Baptiste","male",36,1,1,"345773",24.1500,,"S",,,
-3,0,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)","female",30,1,1,"345773",24.1500,,"S",,,
-3,0,"van Melkebeke, Mr. Philemon","male",,0,0,"345777",9.5000,,"S",,,
-3,0,"Vande Velde, Mr. Johannes Joseph","male",33,0,0,"345780",9.5000,,"S",,,
-3,0,"Vande Walle, Mr. Nestor Cyriel","male",28,0,0,"345770",9.5000,,"S",,,
-3,0,"Vanden Steen, Mr. Leo Peter","male",28,0,0,"345783",9.5000,,"S",,,
-3,0,"Vander Cruyssen, Mr. Victor","male",47,0,0,"345765",9.0000,,"S",,,
-3,0,"Vander Planke, Miss. Augusta Maria","female",18,2,0,"345764",18.0000,,"S",,,
-3,0,"Vander Planke, Mr. Julius","male",31,3,0,"345763",18.0000,,"S",,,
-3,0,"Vander Planke, Mr. Leo Edmondus","male",16,2,0,"345764",18.0000,,"S",,,
-3,0,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)","female",31,1,0,"345763",18.0000,,"S",,,
-3,1,"Vartanian, Mr. David","male",22,0,0,"2658",7.2250,,"C","13 15",,
-3,0,"Vendel, Mr. Olof Edvin","male",20,0,0,"350416",7.8542,,"S",,,
-3,0,"Vestrom, Miss. Hulda Amanda Adolfina","female",14,0,0,"350406",7.8542,,"S",,,
-3,0,"Vovk, Mr. Janko","male",22,0,0,"349252",7.8958,,"S",,,
-3,0,"Waelens, Mr. Achille","male",22,0,0,"345767",9.0000,,"S",,,"Antwerp, Belgium / Stanton, OH"
-3,0,"Ware, Mr. Frederick","male",,0,0,"359309",8.0500,,"S",,,
-3,0,"Warren, Mr. Charles William","male",,0,0,"C.A. 49867",7.5500,,"S",,,
-3,0,"Webber, Mr. James","male",,0,0,"SOTON/OQ 3101316",8.0500,,"S",,,
-3,0,"Wenzel, Mr. Linhart","male",32.5,0,0,"345775",9.5000,,"S",,"298",
-3,1,"Whabee, Mrs. George Joseph (Shawneene Abi-Saab)","female",38,0,0,"2688",7.2292,,"C","C",,
-3,0,"Widegren, Mr. Carl/Charles Peter","male",51,0,0,"347064",7.7500,,"S",,,
-3,0,"Wiklund, Mr. Jakob Alfred","male",18,1,0,"3101267",6.4958,,"S",,"314",
-3,0,"Wiklund, Mr. Karl Johan","male",21,1,0,"3101266",6.4958,,"S",,,
-3,1,"Wilkes, Mrs. James (Ellen Needs)","female",47,1,0,"363272",7.0000,,"S",,,
-3,0,"Willer, Mr. Aaron (""Abi Weller"")","male",,0,0,"3410",8.7125,,"S",,,
-3,0,"Willey, Mr. Edward","male",,0,0,"S.O./P.P. 751",7.5500,,"S",,,
-3,0,"Williams, Mr. Howard Hugh ""Harry""","male",,0,0,"A/5 2466",8.0500,,"S",,,
-3,0,"Williams, Mr. Leslie","male",28.5,0,0,"54636",16.1000,,"S",,"14",
-3,0,"Windelov, Mr. Einar","male",21,0,0,"SOTON/OQ 3101317",7.2500,,"S",,,
-3,0,"Wirz, Mr. Albert","male",27,0,0,"315154",8.6625,,"S",,"131",
-3,0,"Wiseman, Mr. Phillippe","male",,0,0,"A/4. 34244",7.2500,,"S",,,
-3,0,"Wittevrongel, Mr. Camille","male",36,0,0,"345771",9.5000,,"S",,,
-3,0,"Yasbeck, Mr. Antoni","male",27,1,0,"2659",14.4542,,"C","C",,
-3,1,"Yasbeck, Mrs. Antoni (Selini Alexander)","female",15,1,0,"2659",14.4542,,"C",,,
-3,0,"Youseff, Mr. Gerious","male",45.5,0,0,"2628",7.2250,,"C",,"312",
-3,0,"Yousif, Mr. Wazli","male",,0,0,"2647",7.2250,,"C",,,
-3,0,"Yousseff, Mr. Gerious","male",,0,0,"2627",14.4583,,"C",,,
-3,0,"Zabour, Miss. Hileni","female",14.5,1,0,"2665",14.4542,,"C",,"328",
-3,0,"Zabour, Miss. Thamine","female",,1,0,"2665",14.4542,,"C",,,
-3,0,"Zakarian, Mr. Mapriededer","male",26.5,0,0,"2656",7.2250,,"C",,"304",
-3,0,"Zakarian, Mr. Ortin","male",27,0,0,"2670",7.2250,,"C",,,
-3,0,"Zimmerman, Mr. Leo","male",29,0,0,"315082",7.8750,,"S",,,
From 255d6092bc304c46e471f324b28e6e6d1ab49790 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 25 May 2024 19:44:31 +0530
Subject: [PATCH 33/72] Update Importing_and_Exporting_Data_in_Pandas.md
---
.../Importing_and_Exporting_Data_in_Pandas.md | 63 +++++--------------
1 file changed, 17 insertions(+), 46 deletions(-)
diff --git a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
index bb490b9..a4bc1be 100644
--- a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
+++ b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
@@ -12,60 +12,31 @@
*You could export it as a .csv file and then import it using ``pd.read_csv()``.*
-*In this case, the exported .csv file is called `Titanic.csv`*
+*In this case, the exported .csv file is called `car-sales.csv`*
```python
## Importing Titanic Data set
import pandas as pd
-titanic_df= pd.read_csv("https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Datasets/Titanic.csv")
-print(titanic_df)
+car_sales_df= pd.read_csv("https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Datasets/car-sales.csv")
+print(car_sales_df)
```
- pclass survived name \
- 0 1 1 Allen, Miss. Elisabeth Walton
- 1 1 1 Allison, Master. Hudson Trevor
- 2 1 0 Allison, Miss. Helen Loraine
- 3 1 0 Allison, Mr. Hudson Joshua Creighton
- 4 1 0 Allison, Mrs. Hudson J C (Bessie Waldo Daniels)
- ... ... ... ...
- 1304 3 0 Zabour, Miss. Hileni
- 1305 3 0 Zabour, Miss. Thamine
- 1306 3 0 Zakarian, Mr. Mapriededer
- 1307 3 0 Zakarian, Mr. Ortin
- 1308 3 0 Zimmerman, Mr. Leo
-
- sex age sibsp parch ticket fare cabin embarked boat \
- 0 female 29.00 0 0 24160 211.3375 B5 S 2
- 1 male 0.92 1 2 113781 151.5500 C22 C26 S 11
- 2 female 2.00 1 2 113781 151.5500 C22 C26 S NaN
- 3 male 30.00 1 2 113781 151.5500 C22 C26 S NaN
- 4 female 25.00 1 2 113781 151.5500 C22 C26 S NaN
- ... ... ... ... ... ... ... ... ... ...
- 1304 female 14.50 1 0 2665 14.4542 NaN C NaN
- 1305 female NaN 1 0 2665 14.4542 NaN C NaN
- 1306 male 26.50 0 0 2656 7.2250 NaN C NaN
- 1307 male 27.00 0 0 2670 7.2250 NaN C NaN
- 1308 male 29.00 0 0 315082 7.8750 NaN S NaN
-
- body home.dest
- 0 NaN St Louis, MO
- 1 NaN Montreal, PQ / Chesterville, ON
- 2 NaN Montreal, PQ / Chesterville, ON
- 3 135.0 Montreal, PQ / Chesterville, ON
- 4 NaN Montreal, PQ / Chesterville, ON
- ... ... ...
- 1304 328.0 NaN
- 1305 NaN NaN
- 1306 304.0 NaN
- 1307 NaN NaN
- 1308 NaN NaN
-
- [1309 rows x 14 columns]
+ Make Colour Odometer (KM) Doors Price
+ 0 Toyota White 150043 4 $4,000.00
+ 1 Honda Red 87899 4 $5,000.00
+ 2 Toyota Blue 32549 3 $7,000.00
+ 3 BMW Black 11179 5 $22,000.00
+ 4 Nissan White 213095 4 $3,500.00
+ 5 Toyota Green 99213 4 $4,500.00
+ 6 Honda Blue 45698 4 $7,500.00
+ 7 Honda Blue 54738 4 $7,000.00
+ 8 Toyota White 60000 4 $6,250.00
+ 9 Nissan White 31600 4 $9,700.00
-The dataset I am using here for your reference is taken from the same repository i.e ``learn-python`` (https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Datasets/Titanic.csv) I uploaded it in the Datasets folder,you can use it from there.
+The dataset I am using here for your reference is taken from the same repository i.e ``learn-python`` (https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Datasets/car-sales.csv) I uploaded it in the Datasets folder,you can use it from there.
You can also place the filename with its path in `pd.read_csv()`.
@@ -92,12 +63,12 @@ You can also place the filename with its path in `pd.read_csv()`.
### Exporting a dataframe to a CSV
-**We haven't made any changes yet to the ``titanic_df`` DataFrame but let's try to export it.**
+**We haven't made any changes yet to the ``car_sales_df`` DataFrame but let's try to export it.**
```python
#Export the titanic_df DataFrame to csv
-titanic_df.to_csv("exported_titanic.csv")
+car_sales_df.to_csv("exported_car_sales_df.csv")
```
Running this will save a file called ``exported_titanic.csv`` to the current folder.
From cb52a821a21faa902dc53ee012732a8232ffd7f0 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sat, 25 May 2024 19:45:29 +0530
Subject: [PATCH 34/72] Update index.md
---
contrib/pandas/index.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/contrib/pandas/index.md b/contrib/pandas/index.md
index 2874431..a2d826c 100644
--- a/contrib/pandas/index.md
+++ b/contrib/pandas/index.md
@@ -5,3 +5,4 @@
- [Pandas Descriptive Statistics](Descriptive_Statistics.md)
- [Group By Functions with Pandas](GroupBy_Functions_Pandas.md)
- [Excel using Pandas DataFrame](excel_with_pandas.md)
+- [Importing and Exporting Data in Pandas](Importing_and_Exporting_Data_in_Pandas.md)
From 577df2c86e89ea943be4d9ac7415b88006181c2a Mon Sep 17 00:00:00 2001
From: Ankit Mahato
Date: Sat, 25 May 2024 20:46:11 +0530
Subject: [PATCH 35/72] Update car-sales.csv
---
contrib/pandas/Datasets/car-sales.csv | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/pandas/Datasets/car-sales.csv b/contrib/pandas/Datasets/car-sales.csv
index 63a63bf..81e534a 100644
--- a/contrib/pandas/Datasets/car-sales.csv
+++ b/contrib/pandas/Datasets/car-sales.csv
@@ -8,4 +8,4 @@ Toyota,Green,99213,4,"$4,500.00"
Honda,Blue,45698,4,"$7,500.00"
Honda,Blue,54738,4,"$7,000.00"
Toyota,White,60000,4,"$6,250.00"
-Nissan,White,31600,4,"$9,700.00"
\ No newline at end of file
+Nissan,White,31600,4,"$9,700.00"
From 14d806ff7052ac1eace6a200abde29c4aaf06562 Mon Sep 17 00:00:00 2001
From: Ankit Mahato
Date: Sat, 25 May 2024 21:01:18 +0530
Subject: [PATCH 36/72] Update and rename
Importing_and_Exporting_Data_in_Pandas.md to import-export.md
---
.../Importing_and_Exporting_Data_in_Pandas.md | 74 -------------------
contrib/pandas/import-export.md | 46 ++++++++++++
2 files changed, 46 insertions(+), 74 deletions(-)
delete mode 100644 contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
create mode 100644 contrib/pandas/import-export.md
diff --git a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md b/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
deleted file mode 100644
index a4bc1be..0000000
--- a/contrib/pandas/Importing_and_Exporting_Data_in_Pandas.md
+++ /dev/null
@@ -1,74 +0,0 @@
-# Importing_and_Exporting_Data_in_Pandas
-
->Created by Krishna Kaushik
-
-- **Now we're able to create `Series` and `DataFrames` in pandas, but we usually do not do this , in practice we import the data which is in the form of .csv (Comma Seperated Values) , a spreadsheet file or something similar.**
-
-- *Good news is that pandas allows for easy importing of data like this through functions such as ``pd.read_csv()`` and ``pd.read_excel()`` for Microsoft Excel files.*
-
-## 1. Importing from a Google sheet to a pandas dataframe
-
-*Let's say that you wanted to get the information from Google Sheet document into a pandas DataFrame.*.
-
-*You could export it as a .csv file and then import it using ``pd.read_csv()``.*
-
-*In this case, the exported .csv file is called `car-sales.csv`*
-
-
-```python
-## Importing Titanic Data set
-import pandas as pd
-
-car_sales_df= pd.read_csv("https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Datasets/car-sales.csv")
-print(car_sales_df)
-```
-
- Make Colour Odometer (KM) Doors Price
- 0 Toyota White 150043 4 $4,000.00
- 1 Honda Red 87899 4 $5,000.00
- 2 Toyota Blue 32549 3 $7,000.00
- 3 BMW Black 11179 5 $22,000.00
- 4 Nissan White 213095 4 $3,500.00
- 5 Toyota Green 99213 4 $4,500.00
- 6 Honda Blue 45698 4 $7,500.00
- 7 Honda Blue 54738 4 $7,000.00
- 8 Toyota White 60000 4 $6,250.00
- 9 Nissan White 31600 4 $9,700.00
-
-
-The dataset I am using here for your reference is taken from the same repository i.e ``learn-python`` (https://raw.githubusercontent.com/kRiShNa-429407/learn-python/main/contrib/pandas/Datasets/car-sales.csv) I uploaded it in the Datasets folder,you can use it from there.
-
-You can also place the filename with its path in `pd.read_csv()`.
-
-**Now we've got the same data from the Google Spreadsheet , but now available as ``pandas DataFrame`` which means we can now apply all pandas functionality over it.**
-
-#### Note: The quiet important thing i am telling is that ``pd.read_csv()`` takes the location of the file (which is in your current working directory) or the hyperlink of the dataset from the other source.
-
-#### But if you want to import the data from Github you can't directly use its link , you have to first convert it to raw by clicking on the raw button present in the repo .
-
-#### Also you can't use the data directly from `Kaggle` you have to use ``kaggle API``
-
-## 2. The Anatomy of DataFrame
-
-**Different functions use different labels for different things, and can get a little confusing.**
-
-- Rows are refer as ``axis=0``
-- columns are refer as ``axis=1``
-
-## 3. Exporting Data
-
-**OK, so after you've made a few changes to your data, you might want to export it and save it so someone else can access the changes.**
-
-**pandas allows you to export ``DataFrame's`` to ``.csv`` format using ``.to_csv()``, or to a spreadsheet format using .to_excel().**
-
-### Exporting a dataframe to a CSV
-
-**We haven't made any changes yet to the ``car_sales_df`` DataFrame but let's try to export it.**
-
-
-```python
-#Export the titanic_df DataFrame to csv
-car_sales_df.to_csv("exported_car_sales_df.csv")
-```
-
-Running this will save a file called ``exported_titanic.csv`` to the current folder.
diff --git a/contrib/pandas/import-export.md b/contrib/pandas/import-export.md
new file mode 100644
index 0000000..23d1ad8
--- /dev/null
+++ b/contrib/pandas/import-export.md
@@ -0,0 +1,46 @@
+# Importing and Exporting Data in Pandas
+
+## Importing Data from a CSV
+
+We can create `Series` and `DataFrame` in pandas, but often we have to import the data which is in the form of `.csv` (Comma Separated Values), a spreadsheet file or similar tabular data file format.
+
+`pandas` allows for easy importing of this data using functions such as `read_csv()` and `read_excel()` for Microsoft Excel files.
+
+*Note: In case you want to get the information from a **Google Sheet** you can export it as a .csv file.*
+
+The `read_csv()` function can be used to import a CSV file into a pandas DataFrame. The path can be a file system path or a URL where the CSV is available.
+
+```python
+import pandas as pd
+
+car_sales_df= pd.read_csv("Datasets/car-sales.csv")
+print(car_sales_df)
+```
+
+```
+ Make Colour Odometer (KM) Doors Price
+ 0 Toyota White 150043 4 $4,000.00
+ 1 Honda Red 87899 4 $5,000.00
+ 2 Toyota Blue 32549 3 $7,000.00
+ 3 BMW Black 11179 5 $22,000.00
+ 4 Nissan White 213095 4 $3,500.00
+ 5 Toyota Green 99213 4 $4,500.00
+ 6 Honda Blue 45698 4 $7,500.00
+ 7 Honda Blue 54738 4 $7,000.00
+ 8 Toyota White 60000 4 $6,250.00
+ 9 Nissan White 31600 4 $9,700.00
+```
+
+You can find the dataset used above in the `Datasets` folder.
+
+*Note: If you want to import the data from Github you can't directly use its link, you have to first obtain the raw file URL by clicking on the raw button present in the repo*
+
+## Exporting Data to a CSV
+
+`pandas` allows you to export `DataFrame` to `.csv` format using `.to_csv()`, or to a Excel spreadsheet using `.to_excel()`.
+
+```python
+car_sales_df.to_csv("exported_car_sales.csv")
+```
+
+Running this will save a file called ``exported_car_sales.csv`` to the current folder.
From 0db944c7900aa2e72c0df64af1049864dbcb5541 Mon Sep 17 00:00:00 2001
From: Ankit Mahato
Date: Sat, 25 May 2024 21:01:48 +0530
Subject: [PATCH 37/72] Update index.md
---
contrib/pandas/index.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/pandas/index.md b/contrib/pandas/index.md
index a2d826c..bf677cf 100644
--- a/contrib/pandas/index.md
+++ b/contrib/pandas/index.md
@@ -5,4 +5,4 @@
- [Pandas Descriptive Statistics](Descriptive_Statistics.md)
- [Group By Functions with Pandas](GroupBy_Functions_Pandas.md)
- [Excel using Pandas DataFrame](excel_with_pandas.md)
-- [Importing and Exporting Data in Pandas](Importing_and_Exporting_Data_in_Pandas.md)
+- [Importing and Exporting Data in Pandas](import-export.md)
From 18b4c52c96d8d74a79816fb96e0b7789f1b3ba11 Mon Sep 17 00:00:00 2001
From: Krishna Kaushik <131583096+kRiShNa-429407@users.noreply.github.com>
Date: Sun, 26 May 2024 02:23:42 +0530
Subject: [PATCH 38/72] Add files via upload
---
contrib/pandas/Datasets/car-sales-missing-data.csv | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 contrib/pandas/Datasets/car-sales-missing-data.csv
diff --git a/contrib/pandas/Datasets/car-sales-missing-data.csv b/contrib/pandas/Datasets/car-sales-missing-data.csv
new file mode 100644
index 0000000..e34cd5f
--- /dev/null
+++ b/contrib/pandas/Datasets/car-sales-missing-data.csv
@@ -0,0 +1,11 @@
+Make,Colour,Odometer,Doors,Price
+Toyota,White,150043,4,"$4,000"
+Honda,Red,87899,4,"$5,000"
+Toyota,Blue,,3,"$7,000"
+BMW,Black,11179,5,"$22,000"
+Nissan,White,213095,4,"$3,500"
+Toyota,Green,,4,"$4,500"
+Honda,,,4,"$7,500"
+Honda,Blue,,4,
+Toyota,White,60000,,
+,White,31600,4,"$9,700"
\ No newline at end of file
From 76fadaa2fd3edf6d17dd96e3d9d1aa13dd88de43 Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 12:09:47 +0530
Subject: [PATCH 39/72] this is the new change
---
contrib/Linklist/linklist.md | 0
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 contrib/Linklist/linklist.md
diff --git a/contrib/Linklist/linklist.md b/contrib/Linklist/linklist.md
new file mode 100644
index 0000000..e69de29
From 05e14ba89825fe857c9b3ec1333e0f288161d83e Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 13:26:15 +0530
Subject: [PATCH 40/72] New change
---
contrib/{Linklist/linklist.md => ds-algorithms/Linked-list.md} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename contrib/{Linklist/linklist.md => ds-algorithms/Linked-list.md} (100%)
diff --git a/contrib/Linklist/linklist.md b/contrib/ds-algorithms/Linked-list.md
similarity index 100%
rename from contrib/Linklist/linklist.md
rename to contrib/ds-algorithms/Linked-list.md
From b2a16691059d9b0cff7b544a779299b1722708b1 Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 14:09:10 +0530
Subject: [PATCH 41/72] this is commit
---
contrib/ds-algorithms/Linked-list.md | 181 +++++++++++++++++++++++++++
contrib/ds-algorithms/index.md | 1 +
2 files changed, 182 insertions(+)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index e69de29..d3d7ec1 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -0,0 +1,181 @@
+# Linked List Data Structure
+
+Link list is a linear data Structure which can be defined as collection of objects called nodes that are randomly stored in the memory.
+A node contains two types of metadata i.e. data stored at that particular address and the pointer which contains the address of the next node in the memory.
+The last node of the list contains pointer to the null.
+
+## Why use linked list over array?
+
+From the beginning, we are using array data structure to organize the group of elements that are stored individually in the memory.
+However, there are some advantage and disadvantage of array which should be known to decide which data structure will used throughout the program.
+
+limitations
+
+1. The size of array must be known in advance before using it in the program.
+2. Increasing size of the array is a time taking process. It is almost impossible to expand the size of the array at run time.
+3. All the elements in the array need to be contiguously stored in the memory. Inserting any element in the array needs shifting of all its predecessors.
+
+So we introduce a new data structure to overcome these limitations.
+
+Linked list is used because,
+1. It allocates the memory dynamically. All the nodes of linked list are non-contiguously stored in the memory and linked together with the help of pointers.
+2. Sizing is no longer a problem since we do not need to define its size at the time of declaration. List grows as per the program's demand and limited to the available memory space.
+
+Let's code something
+
+The smallest Unit: Node
+
+class Node:
+ def __init__(self, data):
+ self.data = data # Assigns the given data to the node
+ self.next = None # Initialize the next attribute to null
+
+Now, we will see the types of linked list.
+
+There are mainly four types of linked list,
+1. Singly Link list
+2. Doubly link list
+3. Circular link list
+4. Doubly circular link list
+
+
+## 1. Singly linked list.
+
+Simply think it is a chain of nodes in which each node remember(contains) the addresses of it next node.
+
+### Creating a linked list class
+
+class LinkedList:
+ def __init__(self):
+ self.head = None # Initialize head as None
+
+### Inserting a new node at the beginning of a linked list
+
+ def insertAtBeginning(self, new_data):
+ new_node = Node(new_data) # Create a new node
+ new_node.next = self.head # Next for new node becomes the current head
+ self.head = new_node # Head now points to the new node
+
+### Inserting a new node at the end of a linked list
+
+ def insertAtEnd(self, new_data):
+ new_node = Node(new_data) # Create a new node
+ if self.head is None:
+ self.head = new_node # If the list is empty, make the new node the head
+ return
+ last = self.head
+ while last.next: # Otherwise, traverse the list to find the last node
+ last = last.next
+ last.next = new_node # Make the new node the next node of the last node
+
+### Inserting a new node at the middle of a linked list
+
+ def insertAtPosition(self, data, position):
+ new_node = Node(data)
+ if position <= 0: #check if position is valid or not
+ print("Position should be greater than 0")
+ return
+ if position == 1:
+ new_node.next = self.head
+ self.head = new_node
+ return
+ current_node = self.head
+ current_position = 1
+ while current_node and current_position < position - 1: #Iterating to behind of the postion.
+ current_node = current_node.next
+ current_position += 1
+ if not current_node: #Check if Position is out of bound or not
+ print("Position is out of bounds")
+ return
+ new_node.next = current_node.next #connect the intermediate node
+ current_node.next = new_node
+
+### Printing the Linked list
+
+ def printList(self):
+ temp = self.head # Start from the head of the list
+ while temp:
+ print(temp.data,end=' ') # Print the data in the current node
+ temp = temp.next # Move to the next node
+ print() # Ensures the output is followed by a new line
+
+
+Lets complete the code and create a linked list.
+
+Connect all the code.
+
+if __name__ == '__main__':
+ llist = LinkedList()
+
+ # Insert words at the beginning
+ llist.insertAtBeginning(4) # <4>
+ llist.insertAtBeginning(3) # <3> 4
+ llist.insertAtBeginning(2) # <2> 3 4
+ llist.insertAtBeginning(1) # <1> 2 3 4
+
+ # Insert a word at the end
+ llist.insertAtEnd(10) # 1 2 3 4 <10>
+ llist.insertAtEnd(7) # 1 2 3 4 10 <7>
+
+ #Insert at a random position
+ llist.insertAtPosition(9,4) ## 1 2 3 <9> 4 10 7
+ # Print the list
+ llist.printList()
+
+
+
+ output:
+ 1 2 3 9 4 10 7
+
+
+### Deleting a node from the beginning of a linked list
+check the list is empty otherwise shift the head to next node.
+
+def deleteFromBeginning(self):
+ if self.head is None:
+ return "The list is empty" # If the list is empty, return this string
+ self.head = self.head.next # Otherwise, remove the head by making the next node the new head
+
+### Deleting a node from the end of a linked list
+
+def deleteFromEnd(self):
+ if self.head is None:
+ return "The list is empty"
+ if self.head.next is None:
+ self.head = None # If there's only one node, remove the head by making it None
+ return
+ temp = self.head
+ while temp.next.next: # Otherwise, go to the second-last node
+ temp = temp.next
+ temp.next = None # Remove the last node by setting the next pointer of the second-last node to None
+
+
+### Search in a linked list
+
+def search(self, value):
+ current = self.head # Start with the head of the list
+ position = 0 # Counter to keep track of the position
+ while current: # Traverse the list
+ if current.data == value: # Compare the list's data to the search value
+ return f"Value '{value}' found at position {position}" # Print the value if a match is found
+ current = current.next
+ position += 1
+ return f"Value '{value}' not found in the list"
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/contrib/ds-algorithms/index.md b/contrib/ds-algorithms/index.md
index 666bcfd..4b6e20d 100644
--- a/contrib/ds-algorithms/index.md
+++ b/contrib/ds-algorithms/index.md
@@ -8,3 +8,4 @@
- [Searching Algorithms](searching-algorithms.md)
- [Greedy Algorithms](greedy-algorithms.md)
- [Dynamic Programming](dynamic-programming.md)
+- [Linked list](Linked-list.md)
From d2a25f16cca049ed1f1b06cd5d25a677144f4ea4 Mon Sep 17 00:00:00 2001
From: Vinay Sagar <64737008+vinay-sagar123@users.noreply.github.com>
Date: Sun, 26 May 2024 14:13:10 +0530
Subject: [PATCH 42/72] Update Linked-list.md
new change
---
contrib/ds-algorithms/Linked-list.md | 39 ++++++++++++++--------------
1 file changed, 19 insertions(+), 20 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index d3d7ec1..a660b1c 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -104,28 +104,27 @@ Lets complete the code and create a linked list.
Connect all the code.
-if __name__ == '__main__':
- llist = LinkedList()
-
- # Insert words at the beginning
- llist.insertAtBeginning(4) # <4>
- llist.insertAtBeginning(3) # <3> 4
- llist.insertAtBeginning(2) # <2> 3 4
- llist.insertAtBeginning(1) # <1> 2 3 4
-
- # Insert a word at the end
- llist.insertAtEnd(10) # 1 2 3 4 <10>
- llist.insertAtEnd(7) # 1 2 3 4 10 <7>
-
- #Insert at a random position
- llist.insertAtPosition(9,4) ## 1 2 3 <9> 4 10 7
- # Print the list
- llist.printList()
+ if __name__ == '__main__':
+ llist = LinkedList()
+
+ # Insert words at the beginning
+ llist.insertAtBeginning(4) # <4>
+ llist.insertAtBeginning(3) # <3> 4
+ llist.insertAtBeginning(2) # <2> 3 4
+ llist.insertAtBeginning(1) # <1> 2 3 4
+
+ # Insert a word at the end
+ llist.insertAtEnd(10) # 1 2 3 4 <10>
+ llist.insertAtEnd(7) # 1 2 3 4 10 <7>
+
+ #Insert at a random position
+ llist.insertAtPosition(9,4) ## 1 2 3 <9> 4 10 7
+ # Print the list
+ llist.printList()
-
- output:
- 1 2 3 9 4 10 7
+## output:
+1 2 3 9 4 10 7
### Deleting a node from the beginning of a linked list
From 4a0576633fc3e06900b2c34e134c0ac5a77de8d1 Mon Sep 17 00:00:00 2001
From: Vinay Sagar <64737008+vinay-sagar123@users.noreply.github.com>
Date: Sun, 26 May 2024 14:14:13 +0530
Subject: [PATCH 43/72] Update Linked-list.md
change2
---
contrib/ds-algorithms/Linked-list.md | 62 ++++++++++++++--------------
1 file changed, 31 insertions(+), 31 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index a660b1c..e3abc9a 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -25,10 +25,10 @@ Let's code something
The smallest Unit: Node
-class Node:
- def __init__(self, data):
- self.data = data # Assigns the given data to the node
- self.next = None # Initialize the next attribute to null
+ class Node:
+ def __init__(self, data):
+ self.data = data # Assigns the given data to the node
+ self.next = None # Initialize the next attribute to null
Now, we will see the types of linked list.
@@ -45,9 +45,9 @@ Simply think it is a chain of nodes in which each node remember(contains) the ad
### Creating a linked list class
-class LinkedList:
- def __init__(self):
- self.head = None # Initialize head as None
+ class LinkedList:
+ def __init__(self):
+ self.head = None # Initialize head as None
### Inserting a new node at the beginning of a linked list
@@ -130,37 +130,37 @@ Connect all the code.
### Deleting a node from the beginning of a linked list
check the list is empty otherwise shift the head to next node.
-def deleteFromBeginning(self):
- if self.head is None:
- return "The list is empty" # If the list is empty, return this string
- self.head = self.head.next # Otherwise, remove the head by making the next node the new head
+ def deleteFromBeginning(self):
+ if self.head is None:
+ return "The list is empty" # If the list is empty, return this string
+ self.head = self.head.next # Otherwise, remove the head by making the next node the new head
### Deleting a node from the end of a linked list
-def deleteFromEnd(self):
- if self.head is None:
- return "The list is empty"
- if self.head.next is None:
- self.head = None # If there's only one node, remove the head by making it None
- return
- temp = self.head
- while temp.next.next: # Otherwise, go to the second-last node
- temp = temp.next
- temp.next = None # Remove the last node by setting the next pointer of the second-last node to None
+ def deleteFromEnd(self):
+ if self.head is None:
+ return "The list is empty"
+ if self.head.next is None:
+ self.head = None # If there's only one node, remove the head by making it None
+ return
+ temp = self.head
+ while temp.next.next: # Otherwise, go to the second-last node
+ temp = temp.next
+ temp.next = None # Remove the last node by setting the next pointer of the second-last node to None
### Search in a linked list
-def search(self, value):
- current = self.head # Start with the head of the list
- position = 0 # Counter to keep track of the position
- while current: # Traverse the list
- if current.data == value: # Compare the list's data to the search value
- return f"Value '{value}' found at position {position}" # Print the value if a match is found
- current = current.next
- position += 1
- return f"Value '{value}' not found in the list"
-
+ def search(self, value):
+ current = self.head # Start with the head of the list
+ position = 0 # Counter to keep track of the position
+ while current: # Traverse the list
+ if current.data == value: # Compare the list's data to the search value
+ return f"Value '{value}' found at position {position}" # Print the value if a match is found
+ current = current.next
+ position += 1
+ return f"Value '{value}' not found in the list"
+
From b2264d4e6fe3dfe738bc321fe3e6edd946fb9f7e Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 14:22:13 +0530
Subject: [PATCH 44/72] COMM3
---
contrib/ds-algorithms/Linked-list.md | 25 ++++++++++++++++++-------
1 file changed, 18 insertions(+), 7 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index e3abc9a..147527b 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -25,10 +25,12 @@ Let's code something
The smallest Unit: Node
+ ```python
class Node:
def __init__(self, data):
self.data = data # Assigns the given data to the node
self.next = None # Initialize the next attribute to null
+ ```
Now, we will see the types of linked list.
@@ -44,20 +46,24 @@ There are mainly four types of linked list,
Simply think it is a chain of nodes in which each node remember(contains) the addresses of it next node.
### Creating a linked list class
-
+ ```python
class LinkedList:
def __init__(self):
self.head = None # Initialize head as None
+ ```
### Inserting a new node at the beginning of a linked list
+ ```python
def insertAtBeginning(self, new_data):
new_node = Node(new_data) # Create a new node
new_node.next = self.head # Next for new node becomes the current head
self.head = new_node # Head now points to the new node
+ ```
### Inserting a new node at the end of a linked list
+```python
def insertAtEnd(self, new_data):
new_node = Node(new_data) # Create a new node
if self.head is None:
@@ -67,9 +73,10 @@ Simply think it is a chain of nodes in which each node remember(contains) the ad
while last.next: # Otherwise, traverse the list to find the last node
last = last.next
last.next = new_node # Make the new node the next node of the last node
-
+```
### Inserting a new node at the middle of a linked list
+```python
def insertAtPosition(self, data, position):
new_node = Node(data)
if position <= 0: #check if position is valid or not
@@ -89,21 +96,23 @@ Simply think it is a chain of nodes in which each node remember(contains) the ad
return
new_node.next = current_node.next #connect the intermediate node
current_node.next = new_node
-
+```
### Printing the Linked list
+```python
def printList(self):
temp = self.head # Start from the head of the list
while temp:
print(temp.data,end=' ') # Print the data in the current node
temp = temp.next # Move to the next node
print() # Ensures the output is followed by a new line
-
+```
Lets complete the code and create a linked list.
Connect all the code.
+```python
if __name__ == '__main__':
llist = LinkedList()
@@ -121,7 +130,7 @@ Connect all the code.
llist.insertAtPosition(9,4) ## 1 2 3 <9> 4 10 7
# Print the list
llist.printList()
-
+```
## output:
1 2 3 9 4 10 7
@@ -129,14 +138,15 @@ Connect all the code.
### Deleting a node from the beginning of a linked list
check the list is empty otherwise shift the head to next node.
-
+```python
def deleteFromBeginning(self):
if self.head is None:
return "The list is empty" # If the list is empty, return this string
self.head = self.head.next # Otherwise, remove the head by making the next node the new head
-
+```
### Deleting a node from the end of a linked list
+```python
def deleteFromEnd(self):
if self.head is None:
return "The list is empty"
@@ -147,6 +157,7 @@ check the list is empty otherwise shift the head to next node.
while temp.next.next: # Otherwise, go to the second-last node
temp = temp.next
temp.next = None # Remove the last node by setting the next pointer of the second-last node to None
+ ```
### Search in a linked list
From a1dd770b20179f859dc669fdda163bc7c01a96a2 Mon Sep 17 00:00:00 2001
From: Vinay Sagar <64737008+vinay-sagar123@users.noreply.github.com>
Date: Sun, 26 May 2024 14:24:19 +0530
Subject: [PATCH 45/72] Update Linked-list.md
chnage3
---
contrib/ds-algorithms/Linked-list.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index 147527b..541410c 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -25,12 +25,12 @@ Let's code something
The smallest Unit: Node
- ```python
+```python
class Node:
def __init__(self, data):
self.data = data # Assigns the given data to the node
self.next = None # Initialize the next attribute to null
- ```
+```
Now, we will see the types of linked list.
@@ -46,20 +46,20 @@ There are mainly four types of linked list,
Simply think it is a chain of nodes in which each node remember(contains) the addresses of it next node.
### Creating a linked list class
- ```python
+```python
class LinkedList:
def __init__(self):
self.head = None # Initialize head as None
- ```
+```
### Inserting a new node at the beginning of a linked list
- ```python
+```python
def insertAtBeginning(self, new_data):
new_node = Node(new_data) # Create a new node
new_node.next = self.head # Next for new node becomes the current head
self.head = new_node # Head now points to the new node
- ```
+```
### Inserting a new node at the end of a linked list
From beba33d28736209440c9d9cb4784426a9d38ce9b Mon Sep 17 00:00:00 2001
From: Vinay Sagar <64737008+vinay-sagar123@users.noreply.github.com>
Date: Sun, 26 May 2024 14:24:51 +0530
Subject: [PATCH 46/72] Update Linked-list.md
change4
---
contrib/ds-algorithms/Linked-list.md | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index 541410c..9e51ab5 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -171,21 +171,3 @@ check the list is empty otherwise shift the head to next node.
current = current.next
position += 1
return f"Value '{value}' not found in the list"
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
From c3b01f340fc1948f8d6f03d4115d822bb07221f7 Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 14:32:08 +0530
Subject: [PATCH 47/72] commit4
---
contrib/ds-algorithms/Linked-list.md | 47 ++++++++++++++++++++++------
1 file changed, 38 insertions(+), 9 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index 147527b..194cd92 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -157,11 +157,11 @@ check the list is empty otherwise shift the head to next node.
while temp.next.next: # Otherwise, go to the second-last node
temp = temp.next
temp.next = None # Remove the last node by setting the next pointer of the second-last node to None
- ```
+```
### Search in a linked list
-
+```python
def search(self, value):
current = self.head # Start with the head of the list
position = 0 # Counter to keep track of the position
@@ -171,14 +171,43 @@ check the list is empty otherwise shift the head to next node.
current = current.next
position += 1
return f"Value '{value}' not found in the list"
+```
+
+```python
+ if __name__ == '__main__':
+ llist = LinkedList()
+
+ # Insert words at the beginning
+ llist.insertAtBeginning(4) # <4>
+ llist.insertAtBeginning(3) # <3> 4
+ llist.insertAtBeginning(2) # <2> 3 4
+ llist.insertAtBeginning(1) # <1> 2 3 4
-
-
-
-
-
-
-
+ # Insert a word at the end
+ llist.insertAtEnd(10) # 1 2 3 4 <10>
+ llist.insertAtEnd(7) # 1 2 3 4 10 <7>
+
+ #Insert at a random position
+ llist.insertAtPosition(9,4) # 1 2 3 <9> 4 10 7
+ llist.insertAtPositon(56,4) # 1 2 3 <56> 9 4 10 7
+
+ #delete at the beginning
+ llist.deleteFromBeginning() # 2 3 56 9 4 10 7
+
+ #delete at the end
+ llist.deleteFromEnd() # 2 3 56 9 4 10
+ # Print the list
+ llist.printList()
+```
+
+
+
+## Real Life uses of Linked List
+Music Player – Songs in the music player are linked to the previous and next songs. So you can play songs either from starting or ending of the list.
+GPS navigation systems- Linked lists can be used to store and manage a list of locations and routes, allowing users to easily navigate to their desired destination.
+Task Scheduling- Operating systems use linked lists to manage task scheduling, where each process waiting to be executed is represented as a node in the list.
+Speech Recognition- Speech recognition software uses linked lists to represent the possible phonetic pronunciations of a word, where each possible pronunciation is represented as a node in the list.
+and more....
From c91b657e2c186a509cd0e32a3cf398d30c79ab6b Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 14:36:28 +0530
Subject: [PATCH 48/72] hello
---
contrib/ds-algorithms/Linked-list.md | 3 ---
1 file changed, 3 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index 5febd22..0ec285d 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -171,7 +171,6 @@ check the list is empty otherwise shift the head to next node.
current = current.next
position += 1
return f"Value '{value}' not found in the list"
-<<<<<<< HEAD
```
```python
@@ -219,5 +218,3 @@ and more....
-=======
->>>>>>> beba33d28736209440c9d9cb4784426a9d38ce9b
From 297d68fadbc26f0f752c3272c9bc04094882b7fe Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 14:38:31 +0530
Subject: [PATCH 49/72] comm6
---
contrib/ds-algorithms/Linked-list.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index 0ec285d..007674f 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -204,9 +204,13 @@ check the list is empty otherwise shift the head to next node.
## Real Life uses of Linked List
Music Player – Songs in the music player are linked to the previous and next songs. So you can play songs either from starting or ending of the list.
+
GPS navigation systems- Linked lists can be used to store and manage a list of locations and routes, allowing users to easily navigate to their desired destination.
+
Task Scheduling- Operating systems use linked lists to manage task scheduling, where each process waiting to be executed is represented as a node in the list.
+
Speech Recognition- Speech recognition software uses linked lists to represent the possible phonetic pronunciations of a word, where each possible pronunciation is represented as a node in the list.
+
and more....
From e8a1d62febf2195d49d0207f76cd82591fa24c31 Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 14:40:43 +0530
Subject: [PATCH 50/72] commit7
---
contrib/ds-algorithms/Linked-list.md | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index 007674f..95350fd 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -199,17 +199,19 @@ check the list is empty otherwise shift the head to next node.
# Print the list
llist.printList()
```
+##Output
+2 3 56 9 4 10
## Real Life uses of Linked List
-Music Player – Songs in the music player are linked to the previous and next songs. So you can play songs either from starting or ending of the list.
+1. Music Player – Songs in the music player are linked to the previous and next songs. So you can play songs either from starting or ending of the list.
-GPS navigation systems- Linked lists can be used to store and manage a list of locations and routes, allowing users to easily navigate to their desired destination.
+2. GPS navigation systems- Linked lists can be used to store and manage a list of locations and routes, allowing users to easily navigate to their desired destination.
-Task Scheduling- Operating systems use linked lists to manage task scheduling, where each process waiting to be executed is represented as a node in the list.
+3. Task Scheduling- Operating systems use linked lists to manage task scheduling, where each process waiting to be executed is represented as a node in the list.
-Speech Recognition- Speech recognition software uses linked lists to represent the possible phonetic pronunciations of a word, where each possible pronunciation is represented as a node in the list.
+4. Speech Recognition- Speech recognition software uses linked lists to represent the possible phonetic pronunciations of a word, where each possible pronunciation is represented as a node in the list.
and more....
From 7e979edff8636325b197246275db488e13952347 Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 14:41:38 +0530
Subject: [PATCH 51/72] commit8
---
contrib/ds-algorithms/Linked-list.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index 95350fd..424a8fb 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -199,7 +199,8 @@ check the list is empty otherwise shift the head to next node.
# Print the list
llist.printList()
```
-##Output
+## Output:
+
2 3 56 9 4 10
From 4c51b5916e64e1e6f64fa2987905e9e98d9a0efd Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 14:42:37 +0530
Subject: [PATCH 52/72] c10
---
contrib/ds-algorithms/Linked-list.md | 4 ----
1 file changed, 4 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index 424a8fb..1c4511e 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -207,13 +207,9 @@ check the list is empty otherwise shift the head to next node.
## Real Life uses of Linked List
1. Music Player – Songs in the music player are linked to the previous and next songs. So you can play songs either from starting or ending of the list.
-
2. GPS navigation systems- Linked lists can be used to store and manage a list of locations and routes, allowing users to easily navigate to their desired destination.
-
3. Task Scheduling- Operating systems use linked lists to manage task scheduling, where each process waiting to be executed is represented as a node in the list.
-
4. Speech Recognition- Speech recognition software uses linked lists to represent the possible phonetic pronunciations of a word, where each possible pronunciation is represented as a node in the list.
-
and more....
From 45e8763b5a25403f8a3eba79cf0e8a7c0fa46879 Mon Sep 17 00:00:00 2001
From: Vinay
Date: Sun, 26 May 2024 14:53:04 +0530
Subject: [PATCH 53/72] com11
---
contrib/ds-algorithms/Linked-list.md | 31 ++++++++++++++++++----------
1 file changed, 20 insertions(+), 11 deletions(-)
diff --git a/contrib/ds-algorithms/Linked-list.md b/contrib/ds-algorithms/Linked-list.md
index 1c4511e..11f4016 100644
--- a/contrib/ds-algorithms/Linked-list.md
+++ b/contrib/ds-algorithms/Linked-list.md
@@ -2,7 +2,8 @@
Link list is a linear data Structure which can be defined as collection of objects called nodes that are randomly stored in the memory.
A node contains two types of metadata i.e. data stored at that particular address and the pointer which contains the address of the next node in the memory.
-The last node of the list contains pointer to the null.
+
+The last element in a linked list features a null pointer.
## Why use linked list over array?
@@ -11,15 +12,15 @@ However, there are some advantage and disadvantage of array which should be know
limitations
-1. The size of array must be known in advance before using it in the program.
-2. Increasing size of the array is a time taking process. It is almost impossible to expand the size of the array at run time.
-3. All the elements in the array need to be contiguously stored in the memory. Inserting any element in the array needs shifting of all its predecessors.
+1. Before an array can be utilized in a program, its size must be established in advance.
+2. Expanding an array's size is a lengthy process and is almost impossible to achieve during runtime.
+3. Array elements must be stored in contiguous memory locations. To insert an element, all subsequent elements must be shifted
So we introduce a new data structure to overcome these limitations.
Linked list is used because,
-1. It allocates the memory dynamically. All the nodes of linked list are non-contiguously stored in the memory and linked together with the help of pointers.
-2. Sizing is no longer a problem since we do not need to define its size at the time of declaration. List grows as per the program's demand and limited to the available memory space.
+1. Dynamic Memory Management: Linked lists allocate memory dynamically, meaning nodes can be located anywhere in memory and are connected through pointers, rather than being stored contiguously.
+2. Adaptive Sizing: There is no need to predefine the size of a linked list. It can expand or contract during runtime, adapting to the program's requirements within the constraints of the available memory.
Let's code something
@@ -206,11 +207,19 @@ check the list is empty otherwise shift the head to next node.
## Real Life uses of Linked List
-1. Music Player – Songs in the music player are linked to the previous and next songs. So you can play songs either from starting or ending of the list.
-2. GPS navigation systems- Linked lists can be used to store and manage a list of locations and routes, allowing users to easily navigate to their desired destination.
-3. Task Scheduling- Operating systems use linked lists to manage task scheduling, where each process waiting to be executed is represented as a node in the list.
-4. Speech Recognition- Speech recognition software uses linked lists to represent the possible phonetic pronunciations of a word, where each possible pronunciation is represented as a node in the list.
-and more....
+
+
+Here are a few practical applications of linked lists in various fields:
+
+1. **Music Player**: In a music player, songs are often linked to the previous and next tracks. This allows for seamless navigation between songs, enabling you to play tracks either from the beginning or the end of the playlist. This is akin to a doubly linked list where each song node points to both the previous and the next song, enhancing the flexibility of song selection.
+
+2. **GPS Navigation Systems**: Linked lists can be highly effective for managing lists of locations and routes in GPS navigation systems. Each location or waypoint can be represented as a node, making it easy to add or remove destinations and to navigate smoothly from one location to another. This is similar to how you might plan a road trip, plotting stops along the way in a flexible, dynamic manner.
+
+3. **Task Scheduling**: Operating systems utilize linked lists to manage task scheduling. Each process waiting to be executed is represented as a node in a linked list. This organization allows the system to efficiently keep track of which processes need to be run, enabling fair and systematic scheduling of tasks. Think of it like a to-do list where each task is a node, and the system executes tasks in a structured order.
+
+4. **Speech Recognition**: Speech recognition software uses linked lists to represent possible phonetic pronunciations of words. Each potential pronunciation is a node, allowing the software to dynamically explore different pronunciation paths as it processes spoken input. This method helps in accurately recognizing and understanding speech by considering multiple possibilities in a flexible manner, much like evaluating various potential meanings in a conversation.
+
+These examples illustrate how linked lists provide a flexible, dynamic data structure that can be adapted to a wide range of practical applications, making them a valuable tool in both software development and real-world problem-solving.
From 8c562fc874b9c416cd6e81c8acad41e955be5977 Mon Sep 17 00:00:00 2001
From: seeratfatima19
Date: Sun, 26 May 2024 20:30:40 +0500
Subject: [PATCH 54/72] fast api tutorial completed
---
contrib/api-development/assets/image.png | Bin 0 -> 139430 bytes
contrib/api-development/assets/image2.png | Bin 0 -> 36188 bytes
contrib/api-development/fast-api.md | 289 ++++++++++++++++++++++
contrib/api-development/index.md | 1 +
4 files changed, 290 insertions(+)
create mode 100644 contrib/api-development/assets/image.png
create mode 100644 contrib/api-development/assets/image2.png
create mode 100644 contrib/api-development/fast-api.md
diff --git a/contrib/api-development/assets/image.png b/contrib/api-development/assets/image.png
new file mode 100644
index 0000000000000000000000000000000000000000..682e9ed4aac9a6fba3e490219dbac5226cb569e8
GIT binary patch
literal 139430
zcmZU419Y9+)^?1>Xl%E!oit9nW81cE+s#g6Cv9xoHX7Tu^Y7ks&$;It{}^vZ@@9{P
zJ+gfLk7IKd(4
z134D7w&tEiBYo6boFv>v9!^1!>R
zXM)yB#>N=~eXShLY__;&JD#(v>q5iXT7%LWV~$+RWY+2^D?oY=524v1JoIK`*}L
z;^n}})zp-_p{AyW^?7|CcXd#Hps9-qR!j*)UD3(z_~88%n&;ER@5a7gXJIm>{K-f_
zgdV1-bNd_XnjxcrK6EI@FC>_O5P=4A_e_XAOre1zy8$zYem!SjoSi8@)6$A9)A4qI
zKKSo5vsVc=N&r>nQS18{qqBG*S&DfadZ+NZNQ2LS9ior3zHPT`0?3BW+1zCMF>3K=
z)J%FDiI%)hOm#JS)A-->^e|b6>u9q`kxy#w8j1|gOyN7Z|FU^J-ypy@?%C~TLfrNw
zuvji#I7Y+Ak3CrA!t%up(bqt=uoda)j!Q|3^7H$`o~(}pTJb;65)78#4{s*LNq2J3smlm=
zyxC#2kbJ(UaQC58H)#Op&iv%A!%#tgTvs5I-2v*&*@CWBQX_9fe*D
zPBRbPHer~GWs}uW_h0gpTef1ui%&^83D*NHwUjhG{0$Rp=jXq7%~KlzR*Hs)9>t)|
zLr%$!I}{EN2agi?+bGGFw#w^t$&w|J5~u5uf9OoR}VSg?^(IUdTwWK2HCASXh*>B-{l5
z5JwZLVU<7e0uWHasX@>bOm!bjfeDQCzuKc;X1eQzXDZc-nryXd
zjD~4+&NOtk!FFEOd?tU(W_;*bA8t_=S#a*wmVsKCiup&W`7W41p@_Cx
z8UOiDG4o&H3TvGZ3y1|Q*rLQ9;XZ#V{pfobs+jE@QGbCbC3TJ+B&U8=rXSKr|1tKz9HbVRo(wD&mmmFp#hrI++h8}n
zm14`nprQfHisi=n|#Xj@~S~gEtEJ=@k2WgnuN&+=1y~%;)zRqAr8OieewXS
zl;h@4YbozWEs(IiP}(y2SwXWu;GHCA{cQ&!=GLj&U;;LyG+LgwyLMaz)7~{xW^(sm
zBAO_!6iANOGI(7KdP0y`@=v8izJ7&|g2`K{fbYX|_#UKJ(fAZc(wB=lb5iT@{i=Lh
zyVwIW;(v_xOgm;-EE&I
z%jO)iG$
z&>gO%-hO$M36Xp;tzA>w(%WQ|i&$052e)4~CI4Rm_cS99%a7fklZ_1%MbHl0z|c@$
zUY@kfja~Ak;50XvtW>QXVs36u0g=jHHSmgLGiC1$2_C-d0<8xP3yVrjFK;R+Y|#zM
zS_=};PsH`fc8;H|&29F#Rk5UunAkbE+fA25rTGXJ`$Dp5_XEb|M&Nyql|VE1y@iFv
z#UOdCVOMvsh1Bu%FNn&PM;!>o-MPcmQ~VGZb9(R;fs|}dzoXeP&h@aA6dYVxdne!7
z_eQ@XL1>Iz`wi4#}+A1RvDfVJE8J4x|xv+eBe
zeg)_tp%+UYP)^;i`@Ve_raq;XZzQFm5AW>i>f*9Fxn#nPX0g_jgX8Jz%QM*|mKz?)
z=CWdG>(L9ELyy{kPrQ6H)!pbI_9ffa3@k3D@w&c!N4CguFOGA*`MsY`4J<>_1ml#k
z)Bwx!zWdSmTCZu@w-(Z?dzyz}y{ZXScr(HG%;)oTXxg-zz~mh4#zNg)b_nXc;d~vOU0_b!!OxQ#BV=q~?9zs)F;D_dE
zfsB};?AS~ol&I5IIWQEEojD07FVU--3~x`1Ub4#rhpacvl`xUF&IHBJ0Wvx;)_>0A
zvadCx;OXfpVHh$vwEMS|BRbOA(@=QmMfKLpA)vFcXk1TD8eH%S?;%Uz)GV_!6U35CaGi6XZx-7%tfZs<0&DH*CVm_
z(E@C5-pdm-6cT#U^ttbLD&HeXl0O=#YlDZXEtQmHyYlQ-9ed;tw$e=8O$z)^c8EO$
z#{`@vYyxiw-lNanj^z-v%n0`C+F)L9Z5d0bA^Qbvg)
z^}mTce%kwT5M_eXyS|iBkFoB3%dS$ULwjv5&5-8)sl4^d!MViU?Ys@;VpD>+M6*o7
zQXMSu0bgT^*d~LJCzbXhjC4e`%I*^lf;vhXAdxs$mL`)ykX>4c8X7vd
zakD=yF0);AZvmanvPl$*^rg(w;y8#4+J3@w3C;n^dioQSaO?-5^cf=Ra)gW(uQgK`
zhlr0gnO&sew{mZMn(`ab2WAQ|6nvf}dUl);Zo1SFh?KpT48eTblU!{o;Do|M0W2du
zJP-q`FKjt9N?6KI%qK}?4eunk1Ivmj;!Z2JfupoLWQDE~a+E3j&V6M#!$D>vZ#NHR
zEu_ytzTvLMRF>zg{a(nqWY_)faA2y+@bliw1*-t|#OYJITQ`@MQdI(x)|VM>DcyX)z|<~m*9YK|I}5WbNw2-SaX0wNdTY2rW-?6prrq#D92J{fuDl|
zhLy2H+=g{DryHyDZ`Z2DW@x>5w|jMtj*ZmyK1K4n?0cUryBoM)_l|yeaN|Bbomdftts_DPn2|UjE83@QU_peP)7RbKG6}
z9=^(b1j}5$!=Ufmid~O%<3%pOZs~AFw8sOUp=pOD-D64VB}=VC=R~vKs>#Z%-e#35
zw&0lxbncqUq*0yY>V}+I2JF31UM4RgQmg-nf1uqm#@}+dCVOy&f+swO%HVf1(g?@vu>R)bzU=Q8V@c}LGs95u+%
z$z?*KOQ0NZ`m|;)LQ$b*BOcAr{?#w1(RdPWh0Tu3hL{h1runveX+_G4el&2|ENE>{
zH2OE)wN-iYkKVOwhQ>x2GnvbK|L5~$VMoQd2Y>;?ZD3kJugLlOSLZD~cTQN&HM=rQ
z&f|CQ&%7br^SCT-an18=;otys40JX9tmICwmqgwNgN(F&hHe@^^a@wkTP(nXi!_2bt8n!
zVw%b5js>WSU^uZKAt={M52#s|8i+(=y6tO|-}O=V<^lG{S<1^EHUeWUAgfHqmU!$#
z@nWEz>=LI?Bc?Ot5It}ZKVSy0;1GMn4TOQB-*DvBjVVuI;Z}YkmE?%d6PVwTOKD>f
zoJPZv)nW^$h>wwwIn5;h_xR2583DYo$jI-9U*!rtO|N#ohMojumu0U5;x>*QcncQ5
zs=z~Mz)M!C#%shilD`H}*QxbeeUGdBY6*
zsLM;UTg>`w0GB!SA53kxGv)xh1f695gCb5`Vmi+T!p3WFUnK1+o9CG*%2kw=^)I)K
z72pI22A`7YQa;5d8(n0BE1ZKphXU@`=U`uO_Qlqy3$YRLgQ;u8oos=9>&+5
z;X*1w9oPypJG9A+5B6A4eLgS%Q!?&~NNWMxmz_oi!_6F7uA7%pc=;~hnUsbJ_0y+t
zklNhd15qp?t2}N~|D!hC-nx|s3F!GZt&na+UTcqBF_O!e`h_tu@_Ss$4f
zhSH^Th>!=cFcA;#Um2ltKM&opJ>9fUR#Oe}&8~PK=cpq5i~DaWaU(I$LY@m(kDG
zTJ07~Z9(Fgl#=iYeSLaetlf{f6}?PSgvk|Z;ezj}vD>lu(Z>}n%`RStf3k7Dn@)a%
zv1nBt?;Z?LQT&&}91(@*OHlY9zMHEm8n@0m<~KO8M9y-FZDTNeN3>R&^D>~VqY6OZFY!o_uGhwg;CISG-axq
zK{5MzC(HM(Z>tY5+ZKx46!3O@{>Xw-jb7;KFgu8Lq(dy$R^+?|ktl}yYErc7pOoU}
z6eTMZ+H3U5=vYf8AOG|qeg(cwWLw|)HyXNL*U;BCdzGy(QQ-%Ecr8UT#ZR`@YZ5)a
zf^Tv%I5SP&G{Y~G3ypf=h>CWYA3bFEMbCl
zf;s4*XX?GrzDZtMbDjg1&6c)F;0}3bx=G-6X0&mmb;)q(Dpp|pYOP4fd@%aDT-$Sp
zL;ZIG$%&!AzuCTqZfha8&8Ibd9^Z3^$rXSn>^aNy0M8(K={eYJaPU%
zDci$`hBXI_LMiShm5nl#z8Rly`$%oP=I3$6o@GbK8W{eeD8wNRYgb_%O-Y`LBXLTKrc44J1mzv>m_U~q7YEugG)Qp2~Pv>gHu!ppG-ay61TTLLkH70-VXu~1F(=K&lAvoYlVMpaV
zX+<;QcZN`>_foYCHLZ-`+cN{G2x|xMEN%6WHf6CzRUN1dKrQT+TNy!JYg(ZBOyT^v
z;l;MB;0PBwKRo?g!}>lU)8i}me!8})0F(wXhm#qhee(Pv*SQn!j~^`BBI$hQWN#1K
zvOms#7G=gKj?LI!zD3ijlqVgw_E|`ODfHH8K3#SlZ0si?1^R?0X9}yUH#NKZW~!_I
zcAj=RUn{Hk!U-`~gDT{Bs*)hS*g7hZtcBXXdF!$BSXhIbjWkV|#~Rrd&2A--NlMdLgTC2Gl94<>w7wEjhnGMBaRH;xr@h
zZEhON3LLE^!HOIUxT6vik9;I?@$t!lYXLU<g%Qmum~0g9heua_tYf2>C76-xSx8IC@Z#!aG-6TyJSF
z7tGkU0;jc`iG-B%{tpK@$5h-3a6$fP_aSnaqICUrfeXbO*x
z1!v8m@7qbg4@PARVY9Qlr?-$iMl(7XKsFv6w5q*apQC1VKEI$>lZPpIq81+8@E$4a
zO4r{!ZS^SchZ&dlmic5JMf}#_z<~a-#5~
zs6IA(U4qT%yHrp}$ly!cR19e?U)weudf_1_yGigUsPw%R+fdbYhsU7K+;QAu)aMMN
zE_W+8o4^V;GrXN`=do&Ro*)VOF^tiw+u4LG)QzT_G1}(vjEC5`(ygW>E?#XA8{M@12tw-3QZJ}BsT(upPIwoJ~jEy
zPsWhzKj_7M`36A+KN|XU9|MCfcxW3BCS$Cm3pYMARK^-wr4pi~L-Ax0XO{*9R@i{E
zGFBX4ZiQ24eIIG}_8g(y6%l5HuUj+At>s*@{nb(NR@G~7DE_tTcgxA%>t(}>=2`%I
zmB$!Q=5Y!)%^KN7o9j9#y=@z*p!3ZWTkY727_ocYWlcj2gh5I=#9vYsltTAb{HME&
zbT#?4RJ%on;kd@+RHF$I1qBF*w!U4XZ7`MG@!lFLnxh}I-wi|&m@fQts@iVmx2RC7
z-*RLkh1YVVA^jv&oXQb_{Um2jR?fM$#ZYj#SVgX&prBWiC}!3}mW8#x=+h7U?K`&e
zOV1Q_A%2Y=urS$?H1g#bQ{owpzAW_4ezgw!#7Pj%-yf@qkD%7G6CINRsF4}5bxbU7
zwlHJ(dW?=l9uCvr2zRhWt``;UC&Z>WJKifQMk>HSB;J6`n{EsjgE-Lma25uKcsGks
z1V|!<@6>3!D5sSGHM_*h<|@R$Ib4Bv(+DNEPPnHJnzrKZPd5E~P
z_nz@P)AxTH`L;W)`DH#VDoSqQVAq>(zHB|)<}?&)rBZG}q*cJ^6foZ!4c`>K`*l}r
zcaPqQ6>%HQzoKK43WT5N4aRk)2>Rwsgm)n2`8ZKO8Nutva}{|KKUN`2gQMGUM56kw
z&&)90ji6j~r503{5R(qUx*-VV7Mg(n3VsUs)xaeMp)XgtkNY#6$B5LUF>X+@Jg2SC
zFu(@|z6VJtx8RPqyy?lo+**q4c2iiTd~IKJQ?4}T&{qC2t{5O(*-%$%5?mTyMDdg`
z3Fxl8f0TQSFR0;kin_NYt#yw+)FB{n2mX9HQhZlC<(y~qq}Ntb(pFW%=d@8-
zz$rABgwkoUV243Gpl;5I&~5S_A0O`zN|dp=p!GVx=z=94x7juDQ9
zE+H22p~)q*6jupMNAxEOB(6hi5S1L93{9c)JP>QiZOmmxIb}@&RF>OM9ltf>%2Cws
zEY9*jmEFH|teq9$2SDkC=pPAZ64^Aq@uWymf#3*4BEAbhZhvp^JdxUho0pG5WXZGo
z6!#PRw+E5PT{*>ei>MSlHSD>oZN8W5T&K?ym2Hiv9spGSBtHKbAVA~egacYs*`)5w
zUIJx~GDc{dn8etaqoLyq$DcmIZbFdOsoIC7^e&{`?N?qJf}gww)p57uq1~HmjnkJ#
z$^e7%J>;}rMRW^xOI>vDuLqRz-^W9tOwMbe`lh%ODQor&egtrmB6%Us;p}uj%1uJ8
zJsHdTPxhLIaBB^oI<5<}?Q+c;v2Yytr2hj)a69Sv>?)UPHGNyPSf`+*9B%R*!ngGC
z5jbl*2S0pEtv6@b2!e`To53RZ4ki@|i543f*)u3lUhq(2&I!AdV`J$Xt5cX9ww?{I6ZKA3UW(~`D5z27n<*X3
zw4(F7&9kAjL#g60FI1jfVh~t^=}L1Arik|qP@W$v=o8h-c#xUj2!cg^{q(}T)Z_f9?bLOd(P>sI1g4h9KWiMF+lX1WA?hbw)?rYs5eBd>Oz1ia8
z(W!?dW0cLbSfd9EPcs5Pc?|}-k_=iT_v$%>N}c5_qmKpr)(pEtUMnv>7GcQy6n*d2
zBkEmp@Wf^WKgKk`GOHr^JgSJpYEtX;>~%@WYPl-(oC-%^PzMfk`I5t-eAjjGxbr25
z5)S+3gz?!ohl+I`Ye#?jzUE>yw_}3^F9*ZEns9zaP?47oNG8`h$lAO2W2B>iq$(i@
zfKG)%Rcp~rsh*Xvkq4h4EhJoVztXklAEYEra;MDJwcxp?Tm3*utA+0J^MnQoek3VI
zi$_tz7C}4J@WM8h@{H8Bmg}2{c}2&Y1_c$>uxHSnd}dOEtfHsJ)*9A*o1zu|w=%fj
z>Ct}PlnSCui>rfcjgackcU@5A>FmfSYxRVOnyw_?%N!?kqX{a;GC(uV)}_$oQjQ%w
z^_p1$oZDc9=61Z2*^2De{iC^qxtgNpc|L+NfC&!@dfeB=xl-SuRQE6MJ`St+p!zhK
zQMbIGX|xKd?v%0p!mI27V3Tz`0iT|_BqY6h*ZWbWQ+k4ODcdwc?SR0A0JsD#Vz9M=
zj#g2o83V8D8)W?BP)?E$)3MKs6wol*9%%|FdW;1u
z;xCo^(jS~pt{2OC3+Xrxm5i~jXt6o3raBmpJqS{~t$FWTE4<9D2v|Bo)WCs&tN->+
z*r3CkQ+FA|+ZMDOy-(9Semvg|Sw|GTCNWU$b-EJMkI5r+9^(Eeu2M%q^)lB+NF}l2
zNZS=iEiqf3x0YP~5yIbcuXkU*I;{}D<qIiA??!zDFazSCDscx|Bv0J?Rji5^-Jj
zVqB~^PHcccT+2S)4}E=oYV}sZsY{$wz1}?hsT~W_WaTm|$1wai@i}(Kh+m>V`nzOP
z%m>hAAk9a7UOXY|&IcpQkWT_1BRs*{m$`@%O0mCgOEj-D84Y%QR-1ww`vPq1ohOef-PO4@u;ggU-rI31oRl$ct#yq!~m|MryG
z5qx`4{IKMd&UwG;8jBfb
zjjSNU#E53^e6O^_`-wJ;lR&DaCCHe*@=>8JXx@~avj9sgewH2~m?4d|yd2y54t8vM
zXB4lPpBdQ}uM9nuD@mIoX%aEE$7aGR_mi+y!}Vm$P`-@14Am1JHpso7fd
zB#yf-PoO<0%Jd+}@_vFJ=Q);Qzx5gCdS&yv*?e|;sglUA%vML3Nf5|og=mk!p+3E=ieeOeNsvh3XZU^|GHO-6psmTskjs=vWsBsH(l%IRnNOY
zp2_sd^T(T+iK7>y54gE8vkeM&{k-(*{Icn6VyoLjiNiT>UV}HwX%4iY;|E=q|2D`f
zujB10jc2POgbHFNl((G>B2;-fE{SnTXR09)y|NBQvE{a_eb^!WVNN2Y&6)fL3&F`F
z(5$9yNkjUfY~k%l6c5x=1_d2-bXN0mZS=F+M}2HY9Tih#J@oLeqO*62l3xehTA~V_
zdBoFf@4^R&lXFd%%2zESAagpT4W>7QkWj*wAWjMDz9iT0Ff_G?NhfzubbA2(sSp*p
z-HNDHM^cxq=yiu{1pYuO$)We_??&_3EFHrU-`KxPEK)X%E46Fzphwj4eT`bk?vN&{
zyk9T0t0gPDYiPaB=MnAz(83nJPKw-UvR&TC4`lu#f3q+nyT}j6P=hl0FMVY%MLccf
zzKm11;u={Ep`z`ndZoia?7Ds8&UnphX8Z2P-c#G&51xaT+c8*yhPStQv3WK1=#O?2LixF13$mO5_<*R3l>|V
zxzbElowwbC3%nc{vKQVS%-7L2yBtR}Ir=IaYQQKe^9heU_aGG|ImC)LQ!=ZeKn@3R
zc4H|mu8+2g#l`+v!
z9FQ36zp7NJA!6xafSn
z-;9?amQb0G7o6!9U8kX=6JF(U_y#Gh##BpdmCHY`UUq<;<`*sIZWsQR(nUa$YNWav
z+NcFYss>q>Mg&Z1sqbp;7)SVS<9A+7Eie-=;_6z;hLO}=YeO>zx8ulbM9136P*hGG
zU-~t#=T(?KU0V<=$~-(gd@4Xb7dIT#
zUH}In1tOxNjd(4@(`3mEnlTHyzKR}{{8%LPvEylbPu5Z|w^Wpr(C6*fRNXy2n$BAD
zbP#q1!hA&DJ3fbGag(Cj==L18OHrrG4S=qGJtj9%{3U6Gco__zI%j9#3KcMn!s_;5
zO5{Tq#TDujbJA2`ET8|1R&2@Ke8@_DLd(M8{@53B@sKE91@IK8PR8~JOca5euv&C0
zYYhNc2*Cd*53)ytyp}1jF(9+qf$OB>iHx_6@XimSv9G$o3<*4i1bZCBXsAdJJ=xQ=
z>FJM7%OBL#(P1b%ITpE}we5JLqj!Omeks^BjO8aSi_lEiqr+}4Dq|JzW^+e9;TE$S
zu@JhJRS+S?kju+vM?R|8WPoFNV(*vezB|TC5!C&>jPi$m5Wk1&XY4Cgn|D~HuQp#n
ze#5SEaDv<@EsopKK}>aFW81b3t?=>@pz4Q9&T%4cp`&iSHd+-1EI6jA-?iQ<=Rlf1CQtJTMY_R!mlYXyx0$&^a
zgg*IfoO^c^R}V@Ql2=4*7b|l(P@eE_=DLV|$81?IfofF_AAkM&b-CgwYuM@cCUGO2
z7=z1ahMMX7hO4BaQt!*^-lnK=JP%dWgO^U4?1{pwHuvS21K<)F(NQ+U=;+%=ThSiU
z+4+U<{$!@{c0O%)0Oj@RHqp65fZ|Sp<
zbO_bB86#Mo_u8@s9@0|z&!1g>{*aSD6{)$`?Nn5di9D~=Kc#x?FDyx=FcF~$xCxHx
zIDRCC2a$}XPq#rtg<|G1K#4jS!phlRS{=|LTqfhXuE2~QL9c90Hq8abrgig4V??K<
zF^fu8KzR*vO)lek7nmj5{G~}-ODh26QX(IQQYq~K)9Aax`?d%ylSA%&AHrD7OUnmK
zWbOsRH&pPYzQ=G_!v5jE1@Ae4OHaNWc}$g`g(D3-oqa8aXA)*y(#%M=)jn+)dXJQL
z{(8#N_1S_dkm1lHk}DghrrfZzypqKJ??`!}IxL9acCLJa1|p*;JgFrr9N1rQ(Zu(p<&
zNrNx0o6&28uP4_0|PkMI4W8|ZrAoWdTy%$Ag-9PhzNM@X%+@+|wVb}c3
z!Ms?SODmNegBi;-54U=N4S#exjhh%7euH6k)r+%b%>59Q>740%y*4bIFl8e(=#)>=^aSn%$P;+
z?6p>OPCe)}T1RVQ&9T(LY|`hk{Myd_*V;VEL1YI6EIPi6cGPqx
zn^LEOM)Mhyrqzwt8R1%`ronaDF_?`0t{Vt?Bto+B43IUd6*WQYb+>RcRHYQarQ_oU
zIV8fnQGy(lSkrE!S?z2E_|HFwQR>KHeY(
z&Zw~>%3rMOJjy=}8JxWXeejfjx)xcS<_;!?W2hY}(C!=&3zZf;LbfAM$pRlS6ef$Zoa2
z=6HGAhuFc!8s7e~7h2HTpYt?C0QVR9G)GlU4@6YH6vHg&3t9WS2m^@?jGpI1-ES+k
zCYL}=+Xky;|Dz*|6e;l_C|GheD0H`>I#y_ng{?7h3{YgObUy|yG2m6I(;&3hS4&|9
zxq^dSB%*EDy6FIt%O$^*Nlo(~`rHFLRgLL4^8bYwb0iHTWId$nJxc6xJd;Ft`S^G^
z1Qc;MGa3j;NPRg(2V!+FRb|z@+ERjo0%IDw&jE8Lz~`_h_dm>C(DTe3?xW%*oX`y7
z>w#vUQ~o|UF`@WxUa_&cJh)mO^QB6~!q@xBppnCX$Q8kbz~J@d&~F)l#(#6AqawuZ
z?85$<3J+AacW>JL`Zp=qp>|kQG#b8<0jP=W_X$)>pwqq8(w
zmp~AYa{wM8Qf}eDDI(|_7aE&?1W&otc4`g@b`2RRWd4hh8+(v~;~f1*O3DENB0Fr7
z|I@+DbS0PN5`(Oy2+DwI};SZx~`8_5)WfIm42;
znyirhjzN<~oulCr24-jLIY<6k&H2WIe`^c