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
* `PyTables <http://www.pytables.org>`__: necessary for HDF5-based storage. Version 3.0.0 or higher required.
246
+
* `PyTables <http://www.pytables.org>`__: necessary for HDF5-based storage. Version 3.0.0 or higher required, Version 3.2.0 or higher highly recommended.
247
247
* `SQLAlchemy <http://www.sqlalchemy.org>`__: for SQL database support. Version 0.8.1 or higher recommended.
248
248
* `matplotlib <http://matplotlib.sourceforge.net/>`__: for plotting
Copy file name to clipboardExpand all lines: doc/source/io.rst
+22
Original file line number
Diff line number
Diff line change
@@ -2364,6 +2364,10 @@ for some advanced strategies
2364
2364
2365
2365
As of version 0.15.0, pandas requires ``PyTables`` >= 3.0.0. Stores written with prior versions of pandas / ``PyTables`` >= 2.3 are fully compatible (this was the previous minimum ``PyTables`` required version).
2366
2366
2367
+
.. warning::
2368
+
2369
+
There is a ``PyTables`` indexing bug which may appear when querying stores using an index. If you see a subset of results being returned, upgrade to ``PyTables`` >= 3.2. Stores created previously will need to be rewritten using the updated version.
2370
+
2367
2371
.. ipython:: python
2368
2372
:suppress:
2369
2373
:okexcept:
@@ -3996,6 +4000,24 @@ whether imported ``Categorical`` variables are ordered.
3996
4000
a ``Categorial`` with string categories for the values that are labeled and
3997
4001
numeric categories for values with no label.
3998
4002
4003
+
.. _io.other:
4004
+
4005
+
Other file formats
4006
+
------------------
4007
+
4008
+
pandas itself only supports IO with a limited set of file formats that map
4009
+
cleanly to its tabular data model. For reading and writing other file formats
4010
+
into and from pandas, we recommend these packages from the broader community.
4011
+
4012
+
netCDF
4013
+
~~~~~~
4014
+
4015
+
xray_ provides data structures inspired by the pandas DataFrame for working
4016
+
with multi-dimensional datasets, with a focus on the netCDF file format and
0 commit comments