Skip to content

DOC: broken display in 2 places in Updated PyTables Support section #2495

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ pandas 0.10.0
- Add support for Panel4D, a named 4 Dimensional stucture
- Add support for ndpanel factory functions, to create custom,
domain-specific N-Dimensional containers
- 'density' property in `SparseSeries` (#2384)

**API Changes**

Expand Down
7 changes: 7 additions & 0 deletions doc/source/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1158,6 +1158,13 @@ Notes & Caveats
store.append('wp_big_strings', wp)
store.select('wp_big_strings')

Compatibility
~~~~~~~~~~~~~

0.10 of ``HDFStore`` is backwards compatible for reading tables created in a prior version of pandas,
however, query terms using the prior (undocumented) methodology are unsupported. You must read in the entire
file and write it out using the new format to take advantage of the updates.


Performance
~~~~~~~~~~~
Expand Down
12 changes: 9 additions & 3 deletions doc/source/v0.10.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ Updated PyTables Support

:ref:`Docs <io-hdf5>` for PyTables ``Table`` format & several enhancements to the api. Here is a taste of what to expect.


.. ipython:: python
:suppress:
:okexcept:
Expand Down Expand Up @@ -221,7 +220,7 @@ Updated PyTables Support

# remove all nodes under this level
store.remove('food')
store
store

- added mixed-dtype support!

Expand All @@ -230,7 +229,8 @@ Updated PyTables Support
df['string'] = 'string'
df['int'] = 1
store.append('df',df)
df1 = store.select('df') df1
df1 = store.select('df')
df1
df1.get_dtype_counts()

- performance improvments on table writing
Expand Down Expand Up @@ -258,6 +258,12 @@ Updated PyTables Support
import os
os.remove('store.h5')

**Compatibility**

0.10 of ``HDFStore`` is backwards compatible for reading tables created in a prior version of pandas,
however, query terms using the prior (undocumented) methodology are unsupported. You must read in the entire
file and write it out using the new format to take advantage of the updates.

N Dimensional Panels (Experimental)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down