@@ -168,7 +168,7 @@ either match on the *index* or *columns* via the **axis** keyword:
168
168
169
169
df_orig = df
170
170
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.
172
172
173
173
.. ipython :: python
174
174
@@ -593,7 +593,7 @@ categorical columns:
593
593
frame = pd.DataFrame({' a' : [' Yes' , ' Yes' , ' No' , ' No' ], ' b' : range (4 )})
594
594
frame.describe()
595
595
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 ``
597
597
arguments. The special value ``all `` can also be used:
598
598
599
599
.. ipython :: python
@@ -1034,7 +1034,7 @@ Passing a single function to ``.transform()`` with a ``Series`` will yield a sin
1034
1034
Transform with multiple functions
1035
1035
+++++++++++++++++++++++++++++++++
1036
1036
1037
- Passing multiple functions will yield a column multi-indexed DataFrame.
1037
+ Passing multiple functions will yield a column MultiIndexed DataFrame.
1038
1038
The first level will be the original frame column names; the second level
1039
1039
will be the names of the transforming functions.
1040
1040
@@ -1060,7 +1060,7 @@ Passing a dict of functions will allow selective transforming per column.
1060
1060
1061
1061
tsdf.transform({' A' : np.abs, ' B' : lambda x : x+ 1 })
1062
1062
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
1064
1064
selective transforms.
1065
1065
1066
1066
.. ipython :: python
@@ -1889,12 +1889,12 @@ faster than sorting the entire Series and calling ``head(n)`` on the result.
1889
1889
df.nsmallest(5 , [' a' , ' c' ])
1890
1890
1891
1891
1892
- .. _basics.multi-index_sorting :
1892
+ .. _basics.multiindex_sorting :
1893
1893
1894
- Sorting by a multi-index column
1895
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1894
+ Sorting by a MultiIndex column
1895
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1896
1896
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
1898
1898
all levels to ``by ``.
1899
1899
1900
1900
.. ipython :: python
0 commit comments