From 2fbdd5b95c8e7a37c42433752802ac99791fbf96 Mon Sep 17 00:00:00 2001 From: Dinesh Dawonauth Date: Tue, 9 Dec 2025 07:04:39 -0500 Subject: [PATCH] DOC: fix redundant phrasing in reshaping.rst --- doc/source/user_guide/reshaping.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user_guide/reshaping.rst b/doc/source/user_guide/reshaping.rst index 30dac01fa5985..0bda7b6154d5c 100644 --- a/doc/source/user_guide/reshaping.rst +++ b/doc/source/user_guide/reshaping.rst @@ -342,7 +342,7 @@ by supplying the ``var_name`` and ``value_name`` parameters. cheese.melt(id_vars=["first", "last"], var_name="quantity") When transforming a DataFrame using :func:`~pandas.melt`, the index will be ignored. -The original index values can be kept by setting the ``ignore_index=False`` parameter to ``False`` (default is ``True``). +The original index values can be kept by setting the ``ignore_index`` parameter to ``False`` (default is ``True``). ``ignore_index=False`` will however duplicate index values. .. ipython:: python