@@ -168,7 +168,7 @@ either match on the *index* or *columns* via the **axis** keyword:
168168
169169 df_orig = df
170170
171- Furthermore you can align a level of a multi-indexed DataFrame with a Series.
171+ Furthermore you can align a level of a MultiIndexed DataFrame with a Series.
172172
173173.. ipython :: python
174174
@@ -593,7 +593,7 @@ categorical columns:
593593 frame = pd.DataFrame({' a' : [' Yes' , ' Yes' , ' No' , ' No' ], ' b' : range (4 )})
594594 frame.describe()
595595
596- This behaviour can be controlled by providing a list of types as ``include ``/``exclude ``
596+ This behavior can be controlled by providing a list of types as ``include ``/``exclude ``
597597arguments. The special value ``all `` can also be used:
598598
599599.. ipython :: python
@@ -1034,7 +1034,7 @@ Passing a single function to ``.transform()`` with a ``Series`` will yield a sin
10341034 Transform with multiple functions
10351035+++++++++++++++++++++++++++++++++
10361036
1037- Passing multiple functions will yield a column multi-indexed DataFrame.
1037+ Passing multiple functions will yield a column MultiIndexed DataFrame.
10381038The first level will be the original frame column names; the second level
10391039will be the names of the transforming functions.
10401040
@@ -1060,7 +1060,7 @@ Passing a dict of functions will allow selective transforming per column.
10601060
10611061 tsdf.transform({' A' : np.abs, ' B' : lambda x : x+ 1 })
10621062
1063- Passing a dict of lists will generate a multi-indexed DataFrame with these
1063+ Passing a dict of lists will generate a MultiIndexed DataFrame with these
10641064selective transforms.
10651065
10661066.. ipython :: python
@@ -1889,12 +1889,12 @@ faster than sorting the entire Series and calling ``head(n)`` on the result.
18891889 df.nsmallest(5 , [' a' , ' c' ])
18901890
18911891
1892- .. _basics.multi-index_sorting :
1892+ .. _basics.multiindex_sorting :
18931893
1894- Sorting by a multi-index column
1895- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1894+ Sorting by a MultiIndex column
1895+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18961896
1897- You must be explicit about sorting when the column is a multi-index , and fully specify
1897+ You must be explicit about sorting when the column is a MultiIndex , and fully specify
18981898all levels to ``by ``.
18991899
19001900.. ipython :: python
0 commit comments