In [4]:
import pandas as pd
import numpy as np
In [ ]:
# Object Creation
# DataFrame
# Series
# Meta Info
# shape
# dtypes
# Input/Output
# Read & Write
# Viewing Data
# head
# columns
# index
# Getting
# by Label
# by Position
# by index
# by seq
In [5]:
WD = '/Users/anand/Documents/consulting/adhyapiyutam/'
df = pd.read_csv(WD+'UniversalBank.csv')#.head()
print df.head()
In [7]:
print df.shape
print df.dtypes
In [11]:
#Columns
df[['Age','Experience']].head()
df['Age'].head()
df.Age.head()
#Rows
Out[11]:
In [ ]:
In [ ]:
In [ ]:
In [ ]:
In [ ]: