From fc100f7475b42e26e0ceded0459adafa5a35da97 Mon Sep 17 00:00:00 2001 From: Matt Roeschke Date: Wed, 2 Nov 2016 16:05:22 -0700 Subject: [PATCH] DOC: Ordering during set operation on index (#3123) --- doc/source/indexing.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/source/indexing.rst b/doc/source/indexing.rst index 0a6691936d97d..1ea6662a4edb0 100644 --- a/doc/source/indexing.rst +++ b/doc/source/indexing.rst @@ -1467,6 +1467,10 @@ with duplicates dropped. idx1.symmetric_difference(idx2) idx1 ^ idx2 +.. note:: + + The resulting index from a set operation will be sorted in ascending order. + Missing values ~~~~~~~~~~~~~~