From d21d66992796961bd11023bef72a0ac024894fba Mon Sep 17 00:00:00 2001 From: Baurzhan Muftakhidinov Date: Sun, 17 Mar 2019 18:31:07 +0500 Subject: [PATCH 1/2] DOC: Fix function name. --- pandas/core/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index f23aac9ad3a52..3c5b87363cdc7 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -3008,7 +3008,7 @@ def to_csv(self, path_or_buf=None, sep=",", na_rep='', float_format=None, See Also -------- read_csv : Load a CSV file into a DataFrame. - to_excel : Load an Excel file into a DataFrame. + read_excel : Load an Excel file into a DataFrame. Examples -------- From acef96240724f93bf58a1de760edb210618d9319 Mon Sep 17 00:00:00 2001 From: Baurzhan Muftakhidinov Date: Mon, 18 Mar 2019 19:45:08 +0500 Subject: [PATCH 2/2] DOC: Fix function description. --- pandas/core/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 3c5b87363cdc7..ac2ec40d6305d 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -3008,7 +3008,7 @@ def to_csv(self, path_or_buf=None, sep=",", na_rep='', float_format=None, See Also -------- read_csv : Load a CSV file into a DataFrame. - read_excel : Load an Excel file into a DataFrame. + to_excel : Write DataFrame to an Excel file. Examples --------