pandas 0.9.1 documentation

Essential basic functionality

Here we discuss a lot of the essential functionality common to the pandas data structures. Here’s how to create some of the objects used in the examples from the previous section:

In [1]: index = date_range('1/1/2000', periods=8)

In [2]: s = Series(randn(5), index=['a', 'b', 'c', 'd', 'e'])

In [3]: df = DataFrame(randn(8, 3), index=index,
   ...:                columns=['A', 'B', 'C'])
   ...:

In [4]: wp = Panel(randn(2, 5, 4), items=['Item1', 'Item2'],
   ...:            major_axis=date_range('1/1/2000', periods=5),
   ...:            minor_axis=['A', 'B', 'C', 'D'])
   ...:

Head and Tail

To view a small sample of a Series or DataFrame object, use the head and tail methods. The default number of elements to display is five, but you may pass a custom number.

In [5]: long_series = Series(randn(1000))

In [6]: long_series.head()
Out[6]: 
0    2.734522
1   -0.447044
2   -0.492125
3   -1.372316
4    0.135533

In [7]: long_series.tail(3)
Out[7]: 
997    0.249467
998    0.179879
999    0.518329

Attributes and the raw ndarray(s)

pandas objects have a number of attributes enabling you to access the metadata

  • shape: gives the axis dimensions of the object, consistent with ndarray
  • Axis labels
    • Series: index (only axis)
    • DataFrame: index (rows) and columns
    • Panel: items, major_axis, and minor_axis

Note, these attributes can be safely assigned to!

In [8]: df[:2]
Out[8]: 
                   A         B         C
2000-01-01  1.162036 -2.519535 -1.114250
2000-01-02  0.060683  0.815604  0.932633

In [9]: df.columns = [x.lower() for x in df.columns]

In [10]: df
Out[10]: 
                   a         b         c
2000-01-01  1.162036 -2.519535 -1.114250
2000-01-02  0.060683  0.815604  0.932633
2000-01-03 -0.500349 -0.307087  0.175440
2000-01-04  0.287323  0.374965 -1.768425
2000-01-05 -1.176145  0.360521 -0.357374
2000-01-06  0.436107  1.339920 -1.679259
2000-01-07  0.581074  1.128624 -0.065130
2000-01-08 -0.289015  1.814911 -0.943426

To get the actual data inside a data structure, one need only access the values property:

In [11]: s.values
Out[11]: array([ 1.0784, -0.3044, -0.658 , -1.1953, -0.0972])

In [12]: df.values
Out[12]: 
array([[ 1.162 , -2.5195, -1.1142],
       [ 0.0607,  0.8156,  0.9326],
       [-0.5003, -0.3071,  0.1754],
       [ 0.2873,  0.375 , -1.7684],
       [-1.1761,  0.3605, -0.3574],
       [ 0.4361,  1.3399, -1.6793],
       [ 0.5811,  1.1286, -0.0651],
       [-0.289 ,  1.8149, -0.9434]])

In [13]: wp.values
Out[13]: 
array([[[ 0.0298,  1.1522, -0.6016, -0.8187],
        [ 1.4325,  0.9128,  0.5248,  0.732 ],
        [-0.1288,  0.2171, -1.2073,  0.5085],
        [ 0.1923,  0.1746, -1.1348,  0.2294],
        [ 1.318 , -0.5018,  0.8696,  2.117 ]],
       [[-0.9409, -0.6181, -0.728 ,  1.4442],
        [ 0.1106,  0.5412,  1.6881,  0.2173],
        [-0.1013,  0.2647,  0.1859, -1.3987],
        [ 0.0794, -0.3283,  0.2734,  0.5367],
        [ 1.6791,  0.453 ,  0.4685,  1.5816]]])

If a DataFrame or Panel contains homogeneously-typed data, the ndarray can actually be modified in-place, and the changes will be reflected in the data structure. For heterogeneous data (e.g. some of the DataFrame’s columns are not all the same dtype), this will not be the case. The values attribute itself, unlike the axis labels, cannot be assigned to.

Note

When working with heterogeneous data, the dtype of the resulting ndarray will be chosen to accommodate all of the data involved. For example, if strings are involved, the result will be of object dtype. If there are only floats and integers, the resulting array will be of float dtype.

Flexible binary operations

With binary operations between pandas data structures, there are two key points of interest:

  • Broadcasting behavior between higher- (e.g. DataFrame) and lower-dimensional (e.g. Series) objects.
  • Missing data in computations

We will demonstrate how to manage these issues independently, though they can be handled simultaneously.

Matching / broadcasting behavior

DataFrame has the methods add, sub, mul, div and related functions radd, rsub, ... for carrying out binary operations. For broadcasting behavior, Series input is of primary interest. Using these functions, you can use to either match on the index or columns via the axis keyword:

In [14]: d = {'one' : Series(randn(3), index=['a', 'b', 'c']),
   ....:      'two' : Series(randn(4), index=['a', 'b', 'c', 'd']),
   ....:      'three' : Series(randn(3), index=['b', 'c', 'd'])}
   ....:

In [15]: df = DataFrame(d)

In [16]: df
Out[16]: 
        one     three       two
a  0.990220       NaN -0.124608
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573
d       NaN  0.202122 -1.004471

In [17]: row = df.ix[1]

In [18]: column = df['two']

In [19]: df.sub(row, axis='columns')
Out[19]: 
        one     three       two
a  2.076947       NaN  0.784549
b  0.000000  0.000000  0.000000
c  2.406804  2.037299  1.020729
d       NaN  1.185257 -0.095315

In [20]: df.sub(row, axis=1)
Out[20]: 
        one     three       two
a  2.076947       NaN  0.784549
b  0.000000  0.000000  0.000000
c  2.406804  2.037299  1.020729
d       NaN  1.185257 -0.095315

In [21]: df.sub(column, axis='index')
Out[21]: 
        one     three  two
a  1.114828       NaN    0
b -0.177570 -0.073978    0
c  1.208505  0.942592    0
d       NaN  1.206593    0

In [22]: df.sub(column, axis=0)
Out[22]: 
        one     three  two
a  1.114828       NaN    0
b -0.177570 -0.073978    0
c  1.208505  0.942592    0
d       NaN  1.206593    0

With Panel, describing the matching behavior is a bit more difficult, so the arithmetic methods instead (and perhaps confusingly?) give you the option to specify the broadcast axis. For example, suppose we wished to demean the data over a particular axis. This can be accomplished by taking the mean over an axis and broadcasting over the same axis:

In [23]: major_mean = wp.mean(axis='major')

In [24]: major_mean
Out[24]: 
      Item1     Item2
A  0.568758  0.165395
B  0.390972  0.062514
C -0.309863  0.377563
D  0.553636  0.476237

In [25]: wp.sub(major_mean, axis='major')
Out[25]: 
<class 'pandas.core.panel.Panel'>
Dimensions: 2 (items) x 5 (major) x 4 (minor)
Items: Item1 to Item2
Major axis: 2000-01-01 00:00:00 to 2000-01-05 00:00:00
Minor axis: A to D

And similarly for axis="items" and axis="minor".

Note

I could be convinced to make the axis argument in the DataFrame methods match the broadcasting behavior of Panel. Though it would require a transition period so users can change their code...

Missing data / operations with fill values

In Series and DataFrame (though not yet in Panel), the arithmetic functions have the option of inputting a fill_value, namely a value to substitute when at most one of the values at a location are missing. For example, when adding two DataFrame objects, you may wish to treat NaN as 0 unless both DataFrames are missing that value, in which case the result will be NaN (you can later replace NaN with some other value using fillna if you wish).

In [26]: df
Out[26]: 
        one     three       two
a  0.990220       NaN -0.124608
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573
d       NaN  0.202122 -1.004471

In [27]: df2
Out[27]: 
        one     three       two
a  0.990220  1.000000 -0.124608
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573
d       NaN  0.202122 -1.004471

In [28]: df + df2
Out[28]: 
        one     three       two
a  1.980440       NaN -0.249216
b -2.173453 -1.966270 -1.818313
c  2.640154  2.108329  0.223145
d       NaN  0.404243 -2.008942

In [29]: df.add(df2, fill_value=0)
Out[29]: 
        one     three       two
a  1.980440  1.000000 -0.249216
b -2.173453 -1.966270 -1.818313
c  2.640154  2.108329  0.223145
d       NaN  0.404243 -2.008942

Flexible Comparisons

Starting in v0.8, pandas introduced binary comparison methods eq, ne, lt, gt, le, and ge to Series and DataFrame whose behavior is analogous to the binary arithmetic operations described above:

In [30]: df.gt(df2)
Out[30]: 
     one  three    two
a  False  False  False
b  False  False  False
c  False  False  False
d  False  False  False

In [31]: df2.ne(df)
Out[31]: 
     one  three    two
a  False   True  False
b  False  False  False
c  False  False  False
d   True  False  False

Combining overlapping data sets

A problem occasionally arising is the combination of two similar data sets where values in one are preferred over the other. An example would be two data series representing a particular economic indicator where one is considered to be of “higher quality”. However, the lower quality series might extend further back in history or have more complete data coverage. As such, we would like to combine two DataFrame objects where missing values in one DataFrame are conditionally filled with like-labeled values from the other DataFrame. The function implementing this operation is combine_first, which we illustrate:

In [32]: df1 = DataFrame({'A' : [1., np.nan, 3., 5., np.nan],
   ....:                  'B' : [np.nan, 2., 3., np.nan, 6.]})
   ....:

In [33]: df2 = DataFrame({'A' : [5., 2., 4., np.nan, 3., 7.],
   ....:                  'B' : [np.nan, np.nan, 3., 4., 6., 8.]})
   ....:

In [34]: df1
Out[34]: 
    A   B
0   1 NaN
1 NaN   2
2   3   3
3   5 NaN
4 NaN   6

In [35]: df2
Out[35]: 
    A   B
0   5 NaN
1   2 NaN
2   4   3
3 NaN   4
4   3   6
5   7   8

In [36]: df1.combine_first(df2)
Out[36]: 
   A   B
0  1 NaN
1  2   2
2  3   3
3  5   4
4  3   6
5  7   8

General DataFrame Combine

The combine_first method above calls the more general DataFrame method combine. This method takes another DataFrame and a combiner function, aligns the input DataFrame and then passes the combiner function pairs of Series (ie, columns whose names are the same).

So, for instance, to reproduce combine_first as above:

In [37]: combiner = lambda x, y: np.where(isnull(x), y, x)

In [38]: df1.combine(df2, combiner)
Out[38]: 
   A   B
0  1 NaN
1  2   2
2  3   3
3  5   4
4  3   6
5  7   8

Descriptive statistics

A large number of methods for computing descriptive statistics and other related operations on Series, DataFrame, and Panel. Most of these are aggregations (hence producing a lower-dimensional result) like sum, mean, and quantile, but some of them, like cumsum and cumprod, produce an object of the same size. Generally speaking, these methods take an axis argument, just like ndarray.{sum, std, ...}, but the axis can be specified by name or integer:

  • Series: no axis argument needed
  • DataFrame: “index” (axis=0, default), “columns” (axis=1)
  • Panel: “items” (axis=0), “major” (axis=1, default), “minor” (axis=2)

For example:

In [39]: df
Out[39]: 
        one     three       two
a  0.990220       NaN -0.124608
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573
d       NaN  0.202122 -1.004471

In [40]: df.mean(0)
Out[40]: 
one      0.407857
three    0.091050
two     -0.481666

In [41]: df.mean(1)
Out[41]: 
a    0.432806
b   -0.993006
c    0.828605
d   -0.401175

All such methods have a skipna option signaling whether to exclude missing data (True by default):

In [42]: df.sum(0, skipna=False)
Out[42]: 
one           NaN
three         NaN
two     -1.926663

In [43]: df.sum(axis=1, skipna=True)
Out[43]: 
a    0.865612
b   -2.979018
c    2.485814
d   -0.802349

Combined with the broadcasting / arithmetic behavior, one can describe various statistical procedures, like standardization (rendering data zero mean and standard deviation 1), very concisely:

In [44]: ts_stand = (df - df.mean()) / df.std()

In [45]: ts_stand.std()
Out[45]: 
one      1
three    1
two      1

In [46]: xs_stand = df.sub(df.mean(1), axis=0).div(df.std(1), axis=0)

In [47]: xs_stand.std(1)
Out[47]: 
a    1
b    1
c    1
d    1

Note that methods like cumsum and cumprod preserve the location of NA values:

In [48]: df.cumsum()
Out[48]: 
        one     three       two
a  0.990220       NaN -0.124608
b -0.096507 -0.983135 -1.033764
c  1.223570  0.071029 -0.922192
d       NaN  0.273151 -1.926663

Here is a quick reference summary table of common functions. Each also takes an optional level parameter which applies only if the object has a hierarchical index.

Function Description
count Number of non-null observations
sum Sum of values
mean Mean of values
mad Mean absolute deviation
median Arithmetic median of values
min Minimum
max Maximum
abs Absolute Value
prod Product of values
std Unbiased standard deviation
var Unbiased variance
skew Unbiased skewness (3rd moment)
kurt Unbiased kurtosis (4th moment)
quantile Sample quantile (value at %)
cumsum Cumulative sum
cumprod Cumulative product
cummax Cumulative maximum
cummin Cumulative minimum

Note that by chance some NumPy methods, like mean, std, and sum, will exclude NAs on Series input by default:

In [49]: np.mean(df['one'])
Out[49]: 0.40785682212707802

In [50]: np.mean(df['one'].values)
Out[50]: nan

Series also has a method nunique which will return the number of unique non-null values:

In [51]: series = Series(randn(500))

In [52]: series[20:500] = np.nan

In [53]: series[10:20]  = 5

In [54]: series.nunique()
Out[54]: 11

Summarizing data: describe

There is a convenient describe function which computes a variety of summary statistics about a Series or the columns of a DataFrame (excluding NAs of course):

In [55]: series = Series(randn(1000))

In [56]: series[::2] = np.nan

In [57]: series.describe()
Out[57]: 
count    500.000000
mean      -0.015969
std        1.010748
min       -3.558958
25%       -0.737857
50%       -0.004884
75%        0.674951
max        2.538550

In [58]: frame = DataFrame(randn(1000, 5), columns=['a', 'b', 'c', 'd', 'e'])

In [59]: frame.ix[::2] = np.nan

In [60]: frame.describe()
Out[60]: 
                a           b           c           d           e
count  500.000000  500.000000  500.000000  500.000000  500.000000
mean    -0.054301   -0.020596    0.049472   -0.082111   -0.026621
std      0.982257    0.986092    0.998194    0.942623    0.996372
min     -3.356003   -2.685625   -3.101991   -2.947251   -3.030956
25%     -0.711855   -0.668250   -0.560204   -0.717217   -0.714391
50%     -0.110636   -0.061526    0.067928   -0.079514   -0.008102
75%      0.594949    0.668567    0.685723    0.570333    0.600448
max      2.645749    4.072830    2.941487    2.589150    2.872825

For a non-numerical Series object, describe will give a simple summary of the number of unique values and most frequently occurring values:

In [61]: s = Series(['a', 'a', 'b', 'b', 'a', 'a', np.nan, 'c', 'd', 'a'])

In [62]: s.describe()
Out[62]: 
count     9
unique    4
top       a
freq      5

There also is a utility function, value_range which takes a DataFrame and returns a series with the minimum/maximum values in the DataFrame.

Index of Min/Max Values

The idxmin and idxmax functions on Series and DataFrame compute the index labels with the minimum and maximum corresponding values:

In [63]: s1 = Series(randn(5))

In [64]: s1
Out[64]: 
0   -0.365767
1   -0.437700
2   -0.463172
3   -2.035833
4    1.084186

In [65]: s1.idxmin(), s1.idxmax()
Out[65]: (3, 4)

In [66]: df1 = DataFrame(randn(5,3), columns=['A','B','C'])

In [67]: df1
Out[67]: 
          A         B         C
0 -0.564964 -0.744841 -0.464846
1 -1.708462 -0.269589  0.011793
2  0.171220 -0.332451 -0.490573
3 -0.043309 -1.632442  2.165481
4 -0.559607  1.511593 -1.532485

In [68]: df1.idxmin(axis=0)
Out[68]: 
A    1
B    3
C    4

In [69]: df1.idxmax(axis=1)
Out[69]: 
0    C
1    C
2    A
3    C
4    B

When there are multiple rows (or columns) matching the minimum or maximum value, idxmin and idxmax return the first matching index:

In [70]: df3 = DataFrame([2, 1, 1, 3, np.nan], columns=['A'], index=list('edcba'))

In [71]: df3
Out[71]: 
    A
e   2
d   1
c   1
b   3
a NaN

In [72]: df3['A'].idxmin()
Out[72]: 'd'

Value counts (histogramming)

The value_counts Series method and top-level function computes a histogram of a 1D array of values. It can also be used as a function on regular arrays:

In [73]: data = np.random.randint(0, 7, size=50)

In [74]: data
Out[74]: 
array([2, 5, 0, 4, 6, 2, 4, 6, 0, 3, 6, 2, 3, 0, 3, 1, 5, 3, 5, 2, 0, 3, 3,
       4, 0, 6, 4, 0, 3, 3, 5, 4, 0, 2, 0, 5, 1, 5, 0, 2, 3, 6, 5, 0, 2, 0,
       3, 6, 1, 4])

In [75]: s = Series(data)

In [76]: s.value_counts()
Out[76]: 
0    11
3    10
5     7
2     7
6     6
4     6
1     3

In [77]: value_counts(data)
Out[77]: 
0    11
3    10
5     7
2     7
6     6
4     6
1     3

Discretization and quantiling

Continuous values can be discretized using the cut (bins based on values) and qcut (bins based on sample quantiles) functions:

In [78]: arr = np.random.randn(20)

In [79]: factor = cut(arr, 4)

In [80]: factor
Out[80]: 
Categorical: 
array([(-0.376, 0.328], (1.0314, 1.735], (1.0314, 1.735], (0.328, 1.0314],
       (-1.082, -0.376], (1.0314, 1.735], (1.0314, 1.735], (0.328, 1.0314],
       (1.0314, 1.735], (0.328, 1.0314], (0.328, 1.0314], (-1.082, -0.376],
       (-0.376, 0.328], (-1.082, -0.376], (1.0314, 1.735], (-0.376, 0.328],
       (0.328, 1.0314], (-0.376, 0.328], (1.0314, 1.735], (-1.082, -0.376]], dtype=object)
Levels (4): Index([(-1.082, -0.376], (-0.376, 0.328], (0.328, 1.0314],
                   (1.0314, 1.735]], dtype=object)

In [81]: factor = cut(arr, [-5, -1, 0, 1, 5])

In [82]: factor
Out[82]: 
Categorical: 
array([(0, 1], (1, 5], (1, 5], (0, 1], (-1, 0], (1, 5], (1, 5], (0, 1],
       (1, 5], (0, 1], (0, 1], (-1, 0], (-1, 0], (-5, -1], (1, 5], (0, 1],
       (0, 1], (-1, 0], (1, 5], (-5, -1]], dtype=object)
Levels (4): Index([(-5, -1], (-1, 0], (0, 1], (1, 5]], dtype=object)

qcut computes sample quantiles. For example, we could slice up some normally distributed data into equal-size quartiles like so:

In [83]: arr = np.random.randn(30)

In [84]: factor = qcut(arr, [0, .25, .5, .75, 1])

In [85]: factor
Out[85]: 
Categorical: 
array([[-2.976, -0.673], (0.341, 3.614], (0.341, 3.614], (-0.189, 0.341],
       (-0.673, -0.189], [-2.976, -0.673], (-0.189, 0.341],
       [-2.976, -0.673], (0.341, 3.614], (0.341, 3.614], (-0.189, 0.341],
       (-0.673, -0.189], (-0.673, -0.189], (-0.673, -0.189],
       (0.341, 3.614], (0.341, 3.614], [-2.976, -0.673], [-2.976, -0.673],
       [-2.976, -0.673], [-2.976, -0.673], (-0.673, -0.189],
       [-2.976, -0.673], (-0.189, 0.341], (0.341, 3.614], (-0.189, 0.341],
       (0.341, 3.614], (-0.673, -0.189], (-0.673, -0.189], (-0.189, 0.341],
       (-0.189, 0.341]], dtype=object)
Levels (4): Index([[-2.976, -0.673], (-0.673, -0.189], (-0.189, 0.341],
                   (0.341, 3.614]], dtype=object)

In [86]: value_counts(factor)
Out[86]: 
[-2.976, -0.673]    8
(0.341, 3.614]      8
(-0.673, -0.189]    7
(-0.189, 0.341]     7

Function application

Arbitrary functions can be applied along the axes of a DataFrame or Panel using the apply method, which, like the descriptive statistics methods, take an optional axis argument:

In [87]: df.apply(np.mean)
Out[87]: 
one      0.407857
three    0.091050
two     -0.481666

In [88]: df.apply(np.mean, axis=1)
Out[88]: 
a    0.432806
b   -0.993006
c    0.828605
d   -0.401175

In [89]: df.apply(lambda x: x.max() - x.min())
Out[89]: 
one      2.406804
three    2.037299
two      1.116044

In [90]: df.apply(np.cumsum)
Out[90]: 
        one     three       two
a  0.990220       NaN -0.124608
b -0.096507 -0.983135 -1.033764
c  1.223570  0.071029 -0.922192
d       NaN  0.273151 -1.926663

In [91]: df.apply(np.exp)
Out[91]: 
        one     three       two
a  2.691827       NaN  0.882843
b  0.337319  0.374136  0.402864
c  3.743710  2.869576  1.118035
d       NaN  1.223997  0.366238

Depending on the return type of the function passed to apply, the result will either be of lower dimension or the same dimension.

apply combined with some cleverness can be used to answer many questions about a data set. For example, suppose we wanted to extract the date where the maximum value for each column occurred:

In [92]: tsdf = DataFrame(randn(1000, 3), columns=['A', 'B', 'C'],
   ....:                  index=date_range('1/1/2000', periods=1000))
   ....:

In [93]: tsdf.apply(lambda x: x.index[x.dropna().argmax()])
Out[93]: 
A    2001-11-17 00:00:00
B    2000-04-18 00:00:00
C    2002-03-17 00:00:00

You may also pass additional arguments and keyword arguments to the apply method. For instance, consider the following function you would like to apply:

def subtract_and_divide(x, sub, divide=1):
    return (x - sub) / divide

You may then apply this function as follows:

df.apply(subtract_and_divide, args=(5,), divide=3)

Another useful feature is the ability to pass Series methods to carry out some Series operation on each column or row:

In [94]: tsdf
Out[94]: 
                   A         B         C
2000-01-01  0.556758 -1.362868  1.205645
2000-01-02  0.636587  1.315960 -0.525472
2000-01-03  0.520468 -0.454919  2.593019
2000-01-04       NaN       NaN       NaN
2000-01-05       NaN       NaN       NaN
2000-01-06       NaN       NaN       NaN
2000-01-07       NaN       NaN       NaN
2000-01-08  0.343365 -0.418787  0.721731
2000-01-09 -0.261579  0.123629 -0.971150
2000-01-10 -0.412202  0.411328  1.979531

In [95]: tsdf.apply(Series.interpolate)
Out[95]: 
                   A         B         C
2000-01-01  0.556758 -1.362868  1.205645
2000-01-02  0.636587  1.315960 -0.525472
2000-01-03  0.520468 -0.454919  2.593019
2000-01-04  0.485048 -0.447692  2.218761
2000-01-05  0.449627 -0.440466  1.844504
2000-01-06  0.414206 -0.433239  1.470246
2000-01-07  0.378786 -0.426013  1.095989
2000-01-08  0.343365 -0.418787  0.721731
2000-01-09 -0.261579  0.123629 -0.971150
2000-01-10 -0.412202  0.411328  1.979531

Finally, apply takes an argument raw which is False by default, which converts each row or column into a Series before applying the function. When set to True, the passed function will instead receive an ndarray object, which has positive performance implications if you do not need the indexing functionality.

See also

The section on GroupBy demonstrates related, flexible functionality for grouping by some criterion, applying, and combining the results into a Series, DataFrame, etc.

Applying elementwise Python functions

Since not all functions can be vectorized (accept NumPy arrays and return another array or value), the methods applymap on DataFrame and analogously map on Series accept any Python function taking a single value and returning a single value. For example:

In [96]: f = lambda x: len(str(x))

In [97]: df['one'].map(f)
Out[97]: 
a    14
b    14
c    13
d     3
Name: one

In [98]: df.applymap(f)
Out[98]: 
   one  three  two
a   14      3   15
b   14     15   15
c   13     13   14
d    3     14   14

Series.map has an additional feature which is that it can be used to easily “link” or “map” values defined by a secondary series. This is closely related to merging/joining functionality:

In [99]: s = Series(['six', 'seven', 'six', 'seven', 'six'],
   ....:            index=['a', 'b', 'c', 'd', 'e'])
   ....:

In [100]: t = Series({'six' : 6., 'seven' : 7.})

In [101]: s
Out[101]: 
a      six
b    seven
c      six
d    seven
e      six

In [102]: s.map(t)
Out[102]: 
a    6
b    7
c    6
d    7
e    6

Reindexing and altering labels

reindex is the fundamental data alignment method in pandas. It is used to implement nearly all other features relying on label-alignment functionality. To reindex means to conform the data to match a given set of labels along a particular axis. This accomplishes several things:

  • Reorders the existing data to match a new set of labels
  • Inserts missing value (NA) markers in label locations where no data for that label existed
  • If specified, fill data for missing labels using logic (highly relevant to working with time series data)

Here is a simple example:

In [103]: s = Series(randn(5), index=['a', 'b', 'c', 'd', 'e'])

In [104]: s
Out[104]: 
a   -0.491359
b    0.823011
c   -1.410862
d    0.561003
e   -1.658584

In [105]: s.reindex(['e', 'b', 'f', 'd'])
Out[105]: 
e   -1.658584
b    0.823011
f         NaN
d    0.561003

Here, the f label was not contained in the Series and hence appears as NaN in the result.

With a DataFrame, you can simultaneously reindex the index and columns:

In [106]: df
Out[106]: 
        one     three       two
a  0.990220       NaN -0.124608
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573
d       NaN  0.202122 -1.004471

In [107]: df.reindex(index=['c', 'f', 'b'], columns=['three', 'two', 'one'])
Out[107]: 
      three       two       one
c  1.054164  0.111573  1.320077
f       NaN       NaN       NaN
b -0.983135 -0.909157 -1.086727

For convenience, you may utilize the reindex_axis method, which takes the labels and a keyword axis parameter.

Note that the Index objects containing the actual axis labels can be shared between objects. So if we have a Series and a DataFrame, the following can be done:

In [108]: rs = s.reindex(df.index)

In [109]: rs
Out[109]: 
a   -0.491359
b    0.823011
c   -1.410862
d    0.561003

In [110]: rs.index is df.index
Out[110]: True

This means that the reindexed Series’s index is the same Python object as the DataFrame’s index.

See also

Advanced indexing is an even more concise way of doing reindexing.

Note

When writing performance-sensitive code, there is a good reason to spend some time becoming a reindexing ninja: many operations are faster on pre-aligned data. Adding two unaligned DataFrames internally triggers a reindexing step. For exploratory analysis you will hardly notice the difference (because reindex has been heavily optimized), but when CPU cycles matter sprinking a few explicit reindex calls here and there can have an impact.

Reindexing to align with another object

You may wish to take an object and reindex its axes to be labeled the same as another object. While the syntax for this is straightforward albeit verbose, it is a common enough operation that the reindex_like method is available to make this simpler:

In [111]: df
Out[111]: 
        one     three       two
a  0.990220       NaN -0.124608
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573
d       NaN  0.202122 -1.004471

In [112]: df2
Out[112]: 
        one       two
a  0.582363  0.182789
b -1.494584 -0.601759
c  0.912220  0.418970

In [113]: df.reindex_like(df2)
Out[113]: 
        one       two
a  0.990220 -0.124608
b -1.086727 -0.909157
c  1.320077  0.111573

Reindexing with reindex_axis

Aligning objects with each other with align

The align method is the fastest way to simultaneously align two objects. It supports a join argument (related to joining and merging):

  • join='outer': take the union of the indexes
  • join='left': use the calling object’s index
  • join='right': use the passed object’s index
  • join='inner': intersect the indexes

It returns a tuple with both of the reindexed Series:

In [114]: s = Series(randn(5), index=['a', 'b', 'c', 'd', 'e'])

In [115]: s1 = s[:4]

In [116]: s2 = s[1:]

In [117]: s1.align(s2)
Out[117]: 
(a   -1.278921
b   -0.221467
c    0.025099
d   -0.064311
e         NaN,
 a         NaN
b   -0.221467
c    0.025099
d   -0.064311
e    0.291196)

In [118]: s1.align(s2, join='inner')
Out[118]: 
(b   -0.221467
c    0.025099
d   -0.064311,
 b   -0.221467
c    0.025099
d   -0.064311)

In [119]: s1.align(s2, join='left')
Out[119]: 
(a   -1.278921
b   -0.221467
c    0.025099
d   -0.064311,
 a         NaN
b   -0.221467
c    0.025099
d   -0.064311)

For DataFrames, the join method will be applied to both the index and the columns by default:

In [120]: df.align(df2, join='inner')
Out[120]: 
(        one       two
a  0.990220 -0.124608
b -1.086727 -0.909157
c  1.320077  0.111573,
         one       two
a  0.582363  0.182789
b -1.494584 -0.601759
c  0.912220  0.418970)

You can also pass an axis option to only align on the specified axis:

In [121]: df.align(df2, join='inner', axis=0)
Out[121]: 
(        one     three       two
a  0.990220       NaN -0.124608
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573,
         one       two
a  0.582363  0.182789
b -1.494584 -0.601759
c  0.912220  0.418970)

If you pass a Series to DataFrame.align, you can choose to align both objects either on the DataFrame’s index or columns using the axis argument:

In [122]: df.align(df2.ix[0], axis=1)
Out[122]: 
(        one     three       two
a  0.990220       NaN -0.124608
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573
d       NaN  0.202122 -1.004471,
 one      0.582363
three         NaN
two      0.182789
Name: a)

Filling while reindexing

reindex takes an optional parameter method which is a filling method chosen from the following table:

Method Action
pad / ffill Fill values forward
bfill / backfill Fill values backward

Other fill methods could be added, of course, but these are the two most commonly used for time series data. In a way they only make sense for time series or otherwise ordered data, but you may have an application on non-time series data where this sort of “interpolation” logic is the correct thing to do. More sophisticated interpolation of missing values would be an obvious extension.

We illustrate these fill methods on a simple TimeSeries:

In [123]: rng = date_range('1/3/2000', periods=8)

In [124]: ts = Series(randn(8), index=rng)

In [125]: ts2 = ts[[0, 3, 6]]

In [126]: ts
Out[126]: 
2000-01-03    0.270505
2000-01-04    0.739302
2000-01-05   -1.329072
2000-01-06   -1.648967
2000-01-07    0.211451
2000-01-08   -0.932022
2000-01-09   -0.323608
2000-01-10    0.163358
Freq: D

In [127]: ts2
Out[127]: 
2000-01-03    0.270505
2000-01-06   -1.648967
2000-01-09   -0.323608

In [128]: ts2.reindex(ts.index)
Out[128]: 
2000-01-03    0.270505
2000-01-04         NaN
2000-01-05         NaN
2000-01-06   -1.648967
2000-01-07         NaN
2000-01-08         NaN
2000-01-09   -0.323608
2000-01-10         NaN
Freq: D

In [129]: ts2.reindex(ts.index, method='ffill')
Out[129]: 
2000-01-03    0.270505
2000-01-04    0.270505
2000-01-05    0.270505
2000-01-06   -1.648967
2000-01-07   -1.648967
2000-01-08   -1.648967
2000-01-09   -0.323608
2000-01-10   -0.323608
Freq: D

In [130]: ts2.reindex(ts.index, method='bfill')
Out[130]: 
2000-01-03    0.270505
2000-01-04   -1.648967
2000-01-05   -1.648967
2000-01-06   -1.648967
2000-01-07   -0.323608
2000-01-08   -0.323608
2000-01-09   -0.323608
2000-01-10         NaN
Freq: D

Note the same result could have been achieved using fillna:

In [131]: ts2.reindex(ts.index).fillna(method='ffill')
Out[131]: 
2000-01-03    0.270505
2000-01-04    0.270505
2000-01-05    0.270505
2000-01-06   -1.648967
2000-01-07   -1.648967
2000-01-08   -1.648967
2000-01-09   -0.323608
2000-01-10   -0.323608
Freq: D

Note these methods generally assume that the indexes are sorted. They may be modified in the future to be a bit more flexible but as time series data is ordered most of the time anyway, this has not been a major priority.

Dropping labels from an axis

A method closely related to reindex is the drop function. It removes a set of labels from an axis:

In [132]: df
Out[132]: 
        one     three       two
a  0.990220       NaN -0.124608
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573
d       NaN  0.202122 -1.004471

In [133]: df.drop(['a', 'd'], axis=0)
Out[133]: 
        one     three       two
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573

In [134]: df.drop(['one'], axis=1)
Out[134]: 
      three       two
a       NaN -0.124608
b -0.983135 -0.909157
c  1.054164  0.111573
d  0.202122 -1.004471

Note that the following also works, but is a bit less obvious / clean:

In [135]: df.reindex(df.index - ['a', 'd'])
Out[135]: 
        one     three       two
b -1.086727 -0.983135 -0.909157
c  1.320077  1.054164  0.111573

Renaming / mapping labels

The rename method allows you to relabel an axis based on some mapping (a dict or Series) or an arbitrary function.

In [136]: s
Out[136]: 
a   -1.278921
b   -0.221467
c    0.025099
d   -0.064311
e    0.291196

In [137]: s.rename(str.upper)
Out[137]: 
A   -1.278921
B   -0.221467
C    0.025099
D   -0.064311
E    0.291196

If you pass a function, it must return a value when called with any of the labels (and must produce a set of unique values). But if you pass a dict or Series, it need only contain a subset of the labels as keys:

In [138]: df.rename(columns={'one' : 'foo', 'two' : 'bar'},
   .....:           index={'a' : 'apple', 'b' : 'banana', 'd' : 'durian'})
   .....:
Out[138]: 
             foo     three       bar
apple   0.990220       NaN -0.124608
banana -1.086727 -0.983135 -0.909157
c       1.320077  1.054164  0.111573
durian       NaN  0.202122 -1.004471

The rename method also provides an inplace named parameter that is by default False and copies the underlying data. Pass inplace=True to rename the data in place.

The Panel class has a related rename_axis class which can rename any of its three axes.

Iteration

Because Series is array-like, basic iteration produces the values. Other data structures follow the dict-like convention of iterating over the “keys” of the objects. In short:

  • Series: values
  • DataFrame: column labels
  • Panel: item labels

Thus, for example:

In [139]: for col in df:
   .....:     print col
   .....:
one
three
two

iteritems

Consistent with the dict-like interface, iteritems iterates through key-value pairs:

  • Series: (index, scalar value) pairs
  • DataFrame: (column, Series) pairs
  • Panel: (item, DataFrame) pairs

For example:

In [140]: for item, frame in wp.iteritems():
   .....:     print item
   .....:     print frame
   .....:
Item1
                   A         B         C         D
2000-01-01  0.029793  1.152202 -0.601611 -0.818692
2000-01-02  1.432512  0.912760  0.524799  0.731953
2000-01-03 -0.128785  0.217140 -1.207297  0.508549
2000-01-04  0.192252  0.174603 -1.134806  0.229374
2000-01-05  1.318018 -0.501843  0.869598  2.116997
Item2
                   A         B         C         D
2000-01-01 -0.940941 -0.618085 -0.728006  1.444250
2000-01-02  0.110646  0.541184  1.688066  0.217349
2000-01-03 -0.101293  0.264749  0.185903 -1.398662
2000-01-04  0.079423 -0.328286  0.273362  0.536661
2000-01-05  1.679143  0.453006  0.468490  1.581585

iterrows

New in v0.7 is the ability to iterate efficiently through rows of a DataFrame. It returns an iterator yielding each index value along with a Series containing the data in each row:

In [141]: for row_index, row in df2.iterrows():
   .....:     print '%s\n%s' % (row_index, row)
   .....:
a
one    0.582363
two    0.182789
Name: a
b
one   -1.494584
two   -0.601759
Name: b
c
one    0.91222
two    0.41897
Name: c

For instance, a contrived way to transpose the dataframe would be:

In [142]: df2 = DataFrame({'x': [1, 2, 3], 'y': [4, 5, 6]})

In [143]: print df2
   x  y
0  1  4
1  2  5
2  3  6

In [144]: print df2.T
   0  1  2
x  1  2  3
y  4  5  6

In [145]: df2_t = DataFrame(dict((idx,values) for idx, values in df2.iterrows()))

In [146]: print df2_t
   0  1  2
x  1  2  3
y  4  5  6

itertuples

This method will return an iterator yielding a tuple for each row in the DataFrame. The first element of the tuple will be the row’s corresponding index value, while the remaining values are the row values proper.

For instance,

In [147]: for r in df2.itertuples(): print r
(0, 1, 4)
(1, 2, 5)
(2, 3, 6)

Vectorized string methods

Series is equipped (as of pandas 0.8.1) with a set of string processing methods that make it easy to operate on each element of the array. Perhaps most importantly, these methods exclude missing/NA values automatically. These are accessed via the Series’s str attribute and generally have names matching the equivalent (scalar) build-in string methods:

In [148]: s = Series(['A', 'B', 'C', 'Aaba', 'Baca', np.nan, 'CABA', 'dog', 'cat'])

In [149]: s.str.lower()
Out[149]: 
0       a
1       b
2       c
3    aaba
4    baca
5     NaN
6    caba
7     dog
8     cat

In [150]: s.str.upper()
Out[150]: 
0       A
1       B
2       C
3    AABA
4    BACA
5     NaN
6    CABA
7     DOG
8     CAT

In [151]: s.str.len()
Out[151]: 
0     1
1     1
2     1
3     4
4     4
5   NaN
6     4
7     3
8     3

Methods like split return a Series of lists:

In [152]: s2 = Series(['a_b_c', 'c_d_e', np.nan, 'f_g_h'])

In [153]: s2.str.split('_')
Out[153]: 
0    [a, b, c]
1    [c, d, e]
2          NaN
3    [f, g, h]

Elements in the split lists can be accessed using get or [] notation:

In [154]: s2.str.split('_').str.get(1)
Out[154]: 
0      b
1      d
2    NaN
3      g

In [155]: s2.str.split('_').str[1]
Out[155]: 
0      b
1      d
2    NaN
3      g

Methods like replace and findall take regular expressions, too:

In [156]: s3 = Series(['A', 'B', 'C', 'Aaba', 'Baca',
   .....:             '', np.nan, 'CABA', 'dog', 'cat'])
   .....:

In [157]: s3
Out[157]: 
0       A
1       B
2       C
3    Aaba
4    Baca
5        
6     NaN
7    CABA
8     dog
9     cat

In [158]: s3.str.replace('^.a|dog', 'XX-XX ', case=False)
Out[158]: 
0           A
1           B
2           C
3    XX-XX ba
4    XX-XX ca
5            
6         NaN
7    XX-XX BA
8      XX-XX 
9     XX-XX t

Methods like contains, startswith, and endswith takes an extra na arguement so missing values can be considered True or False:

In [159]: s4 = Series(['A', 'B', 'C', 'Aaba', 'Baca', np.nan, 'CABA', 'dog', 'cat'])

In [160]: s4.str.contains('A', na=False)
Out[160]: 
0     True
1    False
2    False
3     True
4    False
5      NaN
6     True
7    False
8    False
Method Description
cat Concatenate strings
split Split strings on delimiter
get Index into each element (retrieve i-th element)
join Join strings in each element of the Series with passed separator
contains Return boolean array if each string contains pattern/regex
replace Replace occurrences of pattern/regex with some other string
repeat Duplicate values (s.str.repeat(3) equivalent to x * 3)
pad Add whitespace to left, right, or both sides of strings
center Equivalent to pad(side='both')
slice Slice each string in the Series
slice_replace Replace slice in each string with passed value
count Count occurrences of pattern
startswith Equivalent to str.startswith(pat) for each element
endswidth Equivalent to str.endswith(pat) for each element
findall Compute list of all occurrences of pattern/regex for each string
match Call re.match on each element, returning matched groups as list
len Compute string lengths
strip Equivalent to str.strip
rstrip Equivalent to str.rstrip
lstrip Equivalent to str.lstrip
lower Equivalent to str.lower
upper Equivalent to str.upper

Sorting by index and value

There are two obvious kinds of sorting that you may be interested in: sorting by label and sorting by actual values. The primary method for sorting axis labels (indexes) across data structures is the sort_index method.

In [161]: unsorted_df = df.reindex(index=['a', 'd', 'c', 'b'],
   .....:                          columns=['three', 'two', 'one'])
   .....:

In [162]: unsorted_df.sort_index()
Out[162]: 
      three       two       one
a       NaN -0.124608  0.990220
b -0.983135 -0.909157 -1.086727
c  1.054164  0.111573  1.320077
d  0.202122 -1.004471       NaN

In [163]: unsorted_df.sort_index(ascending=False)
Out[163]: 
      three       two       one
d  0.202122 -1.004471       NaN
c  1.054164  0.111573  1.320077
b -0.983135 -0.909157 -1.086727
a       NaN -0.124608  0.990220

In [164]: unsorted_df.sort_index(axis=1)
Out[164]: 
        one     three       two
a  0.990220       NaN -0.124608
d       NaN  0.202122 -1.004471
c  1.320077  1.054164  0.111573
b -1.086727 -0.983135 -0.909157

DataFrame.sort_index can accept an optional by argument for axis=0 which will use an arbitrary vector or a column name of the DataFrame to determine the sort order:

In [165]: df.sort_index(by='two')
Out[165]: 
        one     three       two
d       NaN  0.202122 -1.004471
b -1.086727 -0.983135 -0.909157
a  0.990220       NaN -0.124608
c  1.320077  1.054164  0.111573

The by argument can take a list of column names, e.g.:

In [166]: df = DataFrame({'one':[2,1,1,1],'two':[1,3,2,4],'three':[5,4,3,2]})

In [167]: df[['one', 'two', 'three']].sort_index(by=['one','two'])
Out[167]: 
   one  two  three
2    1    2      3
1    1    3      4
3    1    4      2
0    2    1      5

Series has the method order (analogous to R’s order function) which sorts by value, with special treatment of NA values via the na_last argument:

In [168]: s[2] = np.nan

In [169]: s.order()
Out[169]: 
0       A
3    Aaba
1       B
4    Baca
6    CABA
8     cat
7     dog
2     NaN
5     NaN

In [170]: s.order(na_last=False)
Out[170]: 
2     NaN
5     NaN
0       A
3    Aaba
1       B
4    Baca
6    CABA
8     cat
7     dog

Some other sorting notes / nuances:

  • Series.sort sorts a Series by value in-place. This is to provide compatibility with NumPy methods which expect the ndarray.sort behavior.
  • DataFrame.sort takes a column argument instead of by. This method will likely be deprecated in a future release in favor of just using sort_index.

Copying, type casting

The copy method on pandas objects copies the underlying data (though not the axis indexes, since they are immutable) and returns a new object. Note that it is seldom necessary to copy objects. For example, there are only a handful of ways to alter a DataFrame in-place:

  • Inserting, deleting, or modifying a column
  • Assigning to the index or columns attributes
  • For homogeneous data, directly modifying the values via the values attribute or advanced indexing

To be clear, no pandas methods have the side effect of modifying your data; almost all methods return new objects, leaving the original object untouched. If data is modified, it is because you did so explicitly.

Data can be explicitly cast to a NumPy dtype by using the astype method or alternately passing the dtype keyword argument to the object constructor.

In [171]: df = DataFrame(np.arange(12).reshape((4, 3)))

In [172]: df[0].dtype
Out[172]: dtype('int64')

In [173]: df.astype(float)[0].dtype
Out[173]: dtype('float64')

In [174]: df = DataFrame(np.arange(12).reshape((4, 3)), dtype=float)

In [175]: df[0].dtype
Out[175]: dtype('float64')

Inferring better types for object columns

The convert_objects DataFrame method will attempt to convert dtype=object columns to a better NumPy dtype. Occasionally (after transposing multiple times, for example), a mixed-type DataFrame will end up with everything as dtype=object. This method attempts to fix that:

In [176]: df = DataFrame(randn(6, 3), columns=['a', 'b', 'c'])

In [177]: df['d'] = 'foo'

In [178]: df
Out[178]: 
          a         b         c    d
0 -1.057949  1.887674 -1.367621  foo
1  0.027359  0.003798  1.178061  foo
2 -0.160065 -1.054415 -0.056213  foo
3 -0.601617  0.343197 -1.276034  foo
4  0.790769  0.543641 -1.083594  foo
5  1.303424  0.566316 -1.536776  foo

In [179]: df = df.T.T

In [180]: df.dtypes
Out[180]: 
a    object
b    object
c    object
d    object

In [181]: converted = df.convert_objects()

In [182]: converted.dtypes
Out[182]: 
a    float64
b    float64
c    float64
d     object

Pickling and serialization

All pandas objects are equipped with save methods which use Python’s cPickle module to save data structures to disk using the pickle format.

In [183]: df
Out[183]: 
            a            b           c    d
0   -1.057949     1.887674   -1.367621  foo
1  0.02735887  0.003798364    1.178061  foo
2  -0.1600648    -1.054415 -0.05621312  foo
3  -0.6016174    0.3431974   -1.276034  foo
4   0.7907686    0.5436409   -1.083594  foo
5    1.303424    0.5663159   -1.536776  foo

In [184]: df.save('foo.pickle')

The load function in the pandas namespace can be used to load any pickled pandas object (or any other pickled object) from file:

In [185]: load('foo.pickle')
Out[185]: 
            a            b           c    d
0   -1.057949     1.887674   -1.367621  foo
1  0.02735887  0.003798364    1.178061  foo
2  -0.1600648    -1.054415 -0.05621312  foo
3  -0.6016174    0.3431974   -1.276034  foo
4   0.7907686    0.5436409   -1.083594  foo
5    1.303424    0.5663159   -1.536776  foo

There is also a save function which takes any object as its first argument:

In [186]: save(df, 'foo.pickle')

In [187]: load('foo.pickle')
Out[187]: 
            a            b           c    d
0   -1.057949     1.887674   -1.367621  foo
1  0.02735887  0.003798364    1.178061  foo
2  -0.1600648    -1.054415 -0.05621312  foo
3  -0.6016174    0.3431974   -1.276034  foo
4   0.7907686    0.5436409   -1.083594  foo
5    1.303424    0.5663159   -1.536776  foo

Console Output Formatting

Use the set_eng_float_format function in the pandas.core.common module to alter the floating-point formatting of pandas objects to produce a particular format.

For instance:

In [188]: set_eng_float_format(accuracy=3, use_eng_prefix=True)

In [189]: df['a']/1.e3
Out[189]: 
0     -1.058m
1     27.359u
2   -160.065u
3   -601.617u
4    790.769u
5      1.303m
Name: a

In [190]: df['a']/1.e6
Out[190]: 
0     -1.058u
1     27.359n
2   -160.065n
3   -601.617n
4    790.769n
5      1.303u
Name: a

The set_printoptions function has a number of options for controlling how floating point numbers are formatted (using hte precision argument) in the console and . The max_rows and max_columns control how many rows and columns of DataFrame objects are shown by default. If max_columns is set to 0 (the default, in fact), the library will attempt to fit the DataFrame’s string representation into the current terminal width, and defaulting to the summary view otherwise.