@@ -364,7 +364,7 @@ warn_bad_lines : boolean, default ``True``
364
364
Specifying column data types
365
365
''''''''''''''''''''''''''''
366
366
367
- Starting with v0.10, you can indicate the data type for the whole DataFrame or
367
+ You can indicate the data type for the whole DataFrame or
368
368
individual columns:
369
369
370
370
.. ipython :: python
@@ -3346,7 +3346,7 @@ Read/Write API
3346
3346
''''''''''''''
3347
3347
3348
3348
``HDFStore `` supports an top-level API using ``read_hdf `` for reading and ``to_hdf `` for writing,
3349
- similar to how ``read_csv `` and ``to_csv `` work. (new in 0.11.0)
3349
+ similar to how ``read_csv `` and ``to_csv `` work.
3350
3350
3351
3351
.. ipython :: python
3352
3352
@@ -3791,7 +3791,7 @@ indexed dimension as the ``where``.
3791
3791
3792
3792
.. note ::
3793
3793
3794
- Indexes are automagically created (starting `` 0.10.1 ``) on the indexables
3794
+ Indexes are automagically created on the indexables
3795
3795
and any data columns you specify. This behavior can be turned off by passing
3796
3796
``index=False `` to ``append ``.
3797
3797
@@ -3878,7 +3878,7 @@ create a new table!)
3878
3878
Iterator
3879
3879
++++++++
3880
3880
3881
- Starting in `` 0.11.0 ``, you can pass, ``iterator=True `` or ``chunksize=number_in_a_chunk ``
3881
+ You can pass ``iterator=True `` or ``chunksize=number_in_a_chunk ``
3882
3882
to ``select `` and ``select_as_multiple `` to return an iterator on the results.
3883
3883
The default is 50,000 rows returned in a chunk.
3884
3884
@@ -3986,8 +3986,8 @@ of rows in an object.
3986
3986
Multiple Table Queries
3987
3987
++++++++++++++++++++++
3988
3988
3989
- New in 0.10.1 are the methods ``append_to_multiple `` and
3990
- ``select_as_multiple ``, that can perform appending/selecting from
3989
+ The methods ``append_to_multiple `` and
3990
+ ``select_as_multiple `` can perform appending/selecting from
3991
3991
multiple tables at once. The idea is to have one table (call it the
3992
3992
selector table) that you index most/all of the columns, and perform your
3993
3993
queries. The other table(s) are data tables with an index matching the
@@ -4291,7 +4291,7 @@ Pass ``min_itemsize`` on the first table creation to a-priori specify the minimu
4291
4291
``min_itemsize `` can be an integer, or a dict mapping a column name to an integer. You can pass ``values `` as a key to
4292
4292
allow all *indexables * or *data_columns * to have this min_itemsize.
4293
4293
4294
- Starting in 0.11.0, passing a ``min_itemsize `` dict will cause all passed columns to be created as *data_columns * automatically.
4294
+ Passing a ``min_itemsize `` dict will cause all passed columns to be created as *data_columns * automatically.
4295
4295
4296
4296
.. note ::
4297
4297
0 commit comments