Skip to content

Commit 3a74d95

Browse files
jeffcareyAnkurDedania
authored andcommitted
Documents touch-up for DataFrame.to_excel() freeze_panes option (pandas-dev#15436)
1 parent 43aba17 commit 3a74d95

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/source/io.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -2832,8 +2832,8 @@ Style and Formatting
28322832
The look and feel of Excel worksheets created from pandas can be modified using the following parameters on the ``DataFrame``'s ``to_excel`` method.
28332833

28342834
- ``float_format`` : Format string for floating point numbers (default None)
2835-
- ``freeze_panes`` : A tuple of two integers representing the bottommost row and rightmost column to freeze. Each of these parameters is one-based, so (1, 1) will
2836-
freeze the first row and first column (default None)
2835+
- ``freeze_panes`` : A tuple of two integers representing the bottommost row and rightmost column to freeze. Each of these parameters is one-based, so (1, 1) will freeze the first row and first column (default None)
2836+
28372837

28382838

28392839
.. _io.clipboard:

pandas/core/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ def __setstate__(self, state):
10731073
Representation for infinity (there is no native representation for
10741074
infinity in Excel)
10751075
freeze_panes : tuple of integer (length 2), default None
1076-
Specifies the bottommost row and rightmost column that
1076+
Specifies the one-based bottommost row and rightmost column that
10771077
is to be frozen
10781078
10791079
.. versionadded:: 0.20.0

0 commit comments

Comments
 (0)