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
Currently pandas only supports *reading* binary Excel files. Writing
3254
+
is not implemented.
3255
+
3256
+
3232
3257
.. _io.clipboard:
3233
3258
3234
3259
Clipboard
@@ -4220,46 +4245,49 @@ Compression
4220
4245
all kinds of stores, not just tables. Two parameters are used to
4221
4246
control compression: ``complevel`` and ``complib``.
4222
4247
4223
-
``complevel`` specifies if and how hard data is to be compressed.
4224
-
``complevel=0`` and ``complevel=None`` disables
4225
-
compression and ``0<complevel<10`` enables compression.
4226
-
4227
-
``complib`` specifies which compression library to use. If nothing is
4228
-
specified the default library ``zlib`` is used. A
4229
-
compression library usually optimizes for either good
4230
-
compression rates or speed and the results will depend on
4231
-
the type of data. Which type of
4232
-
compression to choose depends on your specific needs and
4233
-
data. The list of supported compression libraries:
4234
-
4235
-
- `zlib <https://zlib.net/>`_: The default compression library. A classic in terms of compression, achieves good compression rates but is somewhat slow.
4236
-
- `lzo <https://www.oberhumer.com/opensource/lzo/>`_: Fast compression and decompression.
4237
-
- `bzip2 <http://bzip.org/>`_: Good compression rates.
4238
-
- `blosc <http://www.blosc.org/>`_: Fast compression and decompression.
4239
-
4240
-
Support for alternative blosc compressors:
4241
-
4242
-
- `blosc:blosclz <http://www.blosc.org/>`_ This is the
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.0.0.rst
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -215,7 +215,8 @@ Other enhancements
215
215
- :meth:`Styler.format` added the ``na_rep`` parameter to help format the missing values (:issue:`21527`, :issue:`28358`)
216
216
- Roundtripping DataFrames with nullable integer, string and period data types to parquet
217
217
(:meth:`~DataFrame.to_parquet` / :func:`read_parquet`) using the `'pyarrow'` engine
218
-
now preserve those data types with pyarrow >= 0.16.0 (:issue:`20612`, :issue:`28371`).
218
+
now preserve those data types with pyarrow >= 1.0.0 (:issue:`20612`).
219
+
- :func:`read_excel` now can read binary Excel (``.xlsb``) files by passing ``engine='pyxlsb'``. For more details and example usage, see the :ref:`Binary Excel files documentation <io.xlsb>`. Closes :issue:`8540`.
219
220
- The ``partition_cols`` argument in :meth:`DataFrame.to_parquet` now accepts a string (:issue:`27117`)
220
221
- :func:`pandas.read_json` now parses ``NaN``, ``Infinity`` and ``-Infinity`` (:issue:`12213`)
221
222
- :func:`to_parquet` now appropriately handles the ``schema`` argument for user defined schemas in the pyarrow engine. (:issue:`30270`)
0 commit comments