From 0955918bb93199482c4e6db5f135b180096b0333 Mon Sep 17 00:00:00 2001 From: Dr-Irv Date: Fri, 12 Jul 2019 15:21:37 -0400 Subject: [PATCH 1/2] Add small docs about xlsxwriter in user guide --- doc/source/user_guide/io.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/source/user_guide/io.rst b/doc/source/user_guide/io.rst index 3050a63015392..65596549ead86 100644 --- a/doc/source/user_guide/io.rst +++ b/doc/source/user_guide/io.rst @@ -3231,6 +3231,10 @@ The look and feel of Excel worksheets created from pandas can be modified using * ``float_format`` : Format string for floating point numbers (default ``None``). * ``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``). +Using the `Xlsxwriter`_ engine provides many options for controlling the +format of an Excel worksheet created with the ``to_excel`` method. Excellent examples can be found in the +`Xlsxwriter`_ documentation here: https://xlsxwriter.readthedocs.io/working_with_pandas.html + .. _io.ods: OpenDocument Spreadsheets From b57d523b3006445170c865a6f5c8a5cde43e64f8 Mon Sep 17 00:00:00 2001 From: Dr-Irv Date: Fri, 12 Jul 2019 16:05:44 -0400 Subject: [PATCH 2/2] remove trailing whitespace --- doc/source/user_guide/io.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user_guide/io.rst b/doc/source/user_guide/io.rst index 65596549ead86..eac86dda31507 100644 --- a/doc/source/user_guide/io.rst +++ b/doc/source/user_guide/io.rst @@ -3233,7 +3233,7 @@ The look and feel of Excel worksheets created from pandas can be modified using Using the `Xlsxwriter`_ engine provides many options for controlling the format of an Excel worksheet created with the ``to_excel`` method. Excellent examples can be found in the -`Xlsxwriter`_ documentation here: https://xlsxwriter.readthedocs.io/working_with_pandas.html +`Xlsxwriter`_ documentation here: https://xlsxwriter.readthedocs.io/working_with_pandas.html .. _io.ods: