In [1]:
# importing the pandas
import pandas as pd

In [7]:
# reading the data as dataframe
# You can download the data file from here - http://bit.ly/2wuV26k
# and put into directory name 'dataset'
df = pd.read_csv('dataset/titanic.txt', delimiter='|')

In [8]:
df.head(4)


Out[8]:
pclass survived name sex age sibsp parch ticket fare cabin embarked boat body home.dest
0 1 1 Allen, Miss. Elisabeth Walton female 29.0000 0 0 24160 211.3375 B5 S 2 NaN St Louis, MO
1 1 1 Allison, Master. Hudson Trevor male 0.9167 1 2 113781 151.5500 C22 C26 S 11 NaN Montreal, PQ / Chesterville, ON
2 1 0 Allison, Miss. Helen Loraine female 2.0000 1 2 113781 151.5500 C22 C26 S NaN NaN Montreal, PQ / Chesterville, ON
3 1 0 Allison, Mr. Hudson Joshua Creighton male 30.0000 1 2 113781 151.5500 C22 C26 S NaN 135.0 Montreal, PQ / Chesterville, ON

Slicing using iloc

DataFrame Slicing using iloc - Selection by index (i stands for index)
Template usage: dataframe[row_indexs:column_indexs]


In [ ]: