@@ -286,7 +286,7 @@ New Columns
286286 df = pd.DataFrame(
287287 {' AAA' : [1 ,1 ,1 ,2 ,2 ,2 ,3 ,3 ], ' BBB' : [2 ,1 ,3 ,4 ,5 ,1 ,2 ,3 ]}); df
288288
289- Method 1 : idxmin() to get the index of the mins
289+ Method 1 : idxmin() to get the index of the minimums
290290
291291.. ipython :: python
292292
@@ -307,7 +307,7 @@ MultiIndexing
307307
308308The :ref: `multindexing <advanced.hierarchical >` docs.
309309
310- `Creating a multi-index from a labeled frame
310+ `Creating a MultiIndex from a labeled frame
311311<http://stackoverflow.com/questions/14916358/reshaping-dataframes-in-pandas-based-on-column-labels> `__
312312
313313.. ipython :: python
@@ -330,7 +330,7 @@ The :ref:`multindexing <advanced.hierarchical>` docs.
330330 Arithmetic
331331**********
332332
333- `Performing arithmetic with a multi-index that needs broadcasting
333+ `Performing arithmetic with a MultiIndex that needs broadcasting
334334<http://stackoverflow.com/questions/19501510/divide-entire-pandas-multiindex-dataframe-by-dataframe-variable/19502176#19502176> `__
335335
336336.. ipython :: python
@@ -342,7 +342,7 @@ Arithmetic
342342 Slicing
343343*******
344344
345- `Slicing a multi-index with xs
345+ `Slicing a MultiIndex with xs
346346<http://stackoverflow.com/questions/12590131/how-to-slice-multindex-columns-in-pandas-dataframes> `__
347347
348348.. ipython :: python
@@ -363,7 +363,7 @@ To take the cross section of the 1st level and 1st axis the index:
363363
364364 df.xs(' six' ,level = 1 ,axis = 0 )
365365
366- `Slicing a multi-index with xs, method #2
366+ `Slicing a MultiIndex with xs, method #2
367367<http://stackoverflow.com/questions/14964493/multiindex-based-indexing-in-pandas> `__
368368
369369.. ipython :: python
@@ -386,13 +386,13 @@ To take the cross section of the 1st level and 1st axis the index:
386386 df.loc[(All,' Math' ),(' Exams' )]
387387 df.loc[(All,' Math' ),(All,' II' )]
388388
389- `Setting portions of a multi-index with xs
389+ `Setting portions of a MultiIndex with xs
390390<http://stackoverflow.com/questions/19319432/pandas-selecting-a-lower-level-in-a-dataframe-to-do-a-ffill> `__
391391
392392Sorting
393393*******
394394
395- `Sort by specific column or an ordered list of columns, with a multi-index
395+ `Sort by specific column or an ordered list of columns, with a MultiIndex
396396<http://stackoverflow.com/questions/14733871/mutli-index-sorting-in-pandas> `__
397397
398398.. ipython :: python
@@ -664,7 +664,7 @@ The :ref:`Pivot <reshaping.pivot>` docs.
664664 `Plot pandas DataFrame with year over year data
665665<http://stackoverflow.com/questions/30379789/plot-pandas-data-frame-with-year-over-year-data> `__
666666
667- To create year and month crosstabulation :
667+ To create year and month cross tabulation :
668668
669669.. ipython :: python
670670
@@ -677,7 +677,7 @@ To create year and month crosstabulation:
677677 Apply
678678*****
679679
680- `Rolling Apply to Organize - Turning embedded lists into a multi-index frame
680+ `Rolling Apply to Organize - Turning embedded lists into a MultiIndex frame
681681<http://stackoverflow.com/questions/17349981/converting-pandas-dataframe-with-categorical-values-into-binary-values> `__
682682
683683.. ipython :: python
@@ -1029,8 +1029,8 @@ Skip row between header and data
10291029 01.01.1990 05:00;21;11;12;13
10301030 """
10311031
1032- Option 1: pass rows explicitly to skiprows
1033- """"""""""""""""""""""""""""""""""""""""""
1032+ Option 1: pass rows explicitly to skip rows
1033+ """""""""""""""""""""""""""""""""""""""""""
10341034
10351035.. ipython :: python
10361036
0 commit comments