Importing Pandas: import pandas as pd Types of core objects in Pandas: DataFrames // a table like excel worksheet. Has index for rows, column headers, and values Series // A list of values Creating a Data Frame: pd.DataFrame( { 'COLUMNNAME_1' : [VALUE,VALUE] , 'COLUMNNAME_2' : [VALUE] } ) // just like a map, has a key and values (which are lists of items) // index are automatically created from 0...nROWs pd.DataFrame( { 'COLUMNNAME_1' : [VALUE,VALUE] , 'COLUMNNAME_2' : [VALUE] }, index = [ ' FIRST ', ' SECOND '] ) // including a index property allows naming indexes ourselves Creating a Series: pd.Series( [VALUE,VALUE,VALUE] , index = [ 'A' , ' B ' , ' C ' ], name = 'MYSERIES' ) // creates a series with list of values, naming our index, and then giving the series an overall name // Data Frames is like a bunch of series glued together. Basic Methods: data_frame.head() // shows first couple rows data_frame.de