You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
by double-clicking them, or using `the Open menu <https://support.microsoft.com/en-us/office/open-files-from-the-file-menu-97f087d8-3136-4485-8e86-c5b12a8c4176>`_.
97
-
In pandas, you use :ref:`special methods for reading and writing from/to Excel files <io.excel>`.
98
-
99
92
CSV
100
93
'''
101
94
@@ -125,6 +118,27 @@ would be:
125
118
# alternatively, read_table is an alias to read_csv with tab delimiter
by double-clicking them, or using `the Open menu <https://support.microsoft.com/en-us/office/open-files-from-the-file-menu-97f087d8-3136-4485-8e86-c5b12a8c4176>`_.
126
+
In pandas, you use :ref:`special methods for reading and writing from/to Excel files <io.excel>`.
127
+
128
+
Let's first :ref:`create a new Excel file <io.excel_writer>` based on the ``tips`` dataframe in the above example:
129
+
130
+
.. code-block:: python
131
+
132
+
tips.to_excel("./tips.xlsx")
133
+
134
+
Should you wish to subsequently access the data in the ``tips.xlsx`` file, you can read it into your module using
0 commit comments