Skip to content

Commit c1440e9

Browse files
committed
DOC: minor docs changes
1 parent 5cfd7b6 commit c1440e9

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

doc/source/indexing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1655,8 +1655,8 @@ demo different ways to initialize MultiIndexes.
16551655
tuples = list(zip(*arrays))
16561656
tuples
16571657
1658-
multi_index = MultiIndex.from_tuples(tuples, names=['first', 'second'])
1659-
multi_index
1658+
index = MultiIndex.from_tuples(tuples, names=['first', 'second'])
1659+
index
16601660
16611661
s = Series(randn(8), index=index)
16621662
s

doc/source/v0.10.1.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,10 @@ perform queries on a table, by passing a list to ``data_columns``
6565

6666
Retrieving unique values in an indexable or data column.
6767

68-
.. ipython:: python
69-
:okwarning:
68+
.. code-block:: python
7069

70+
# not that these are deprecated as of 0.14.0
71+
# can be replicated by: store.select_column('df','index').unique()
7172
store.unique('df','index')
7273
store.unique('df','string')
7374

pandas/core/series.py

+4
Original file line numberDiff line numberDiff line change
@@ -1712,6 +1712,10 @@ def order(self, na_last=None, ascending=True, kind='quicksort', na_position='las
17121712
Returns
17131713
-------
17141714
y : Series
1715+
1716+
See Also
1717+
--------
1718+
Series.sort
17151719
"""
17161720
if na_last is not None:
17171721
warnings.warn(("na_last is deprecated. Please use na_position instead"),

0 commit comments

Comments
 (0)