@@ -3572,7 +3572,7 @@ Closing a Store and using a context manager:
3572
3572
Read/write API
3573
3573
''''''''''''''
3574
3574
3575
- ``HDFStore `` supports an top-level API using ``read_hdf `` for reading and ``to_hdf `` for writing,
3575
+ ``HDFStore `` supports a top-level API using ``read_hdf `` for reading and ``to_hdf `` for writing,
3576
3576
similar to how ``read_csv `` and ``to_csv `` work.
3577
3577
3578
3578
.. ipython :: python
@@ -3687,7 +3687,7 @@ Hierarchical keys
3687
3687
Keys to a store can be specified as a string. These can be in a
3688
3688
hierarchical path-name like format (e.g. ``foo/bar/bah ``), which will
3689
3689
generate a hierarchy of sub-stores (or ``Groups `` in PyTables
3690
- parlance). Keys can be specified with out the leading '/' and are **always **
3690
+ parlance). Keys can be specified without the leading '/' and are **always **
3691
3691
absolute (e.g. 'foo' refers to '/foo'). Removal operations can remove
3692
3692
everything in the sub-store and **below **, so be *careful *.
3693
3693
@@ -3825,7 +3825,7 @@ data.
3825
3825
3826
3826
A query is specified using the ``Term `` class under the hood, as a boolean expression.
3827
3827
3828
- * ``index `` and ``columns `` are supported indexers of a ``DataFrames ``.
3828
+ * ``index `` and ``columns `` are supported indexers of ``DataFrames ``.
3829
3829
* if ``data_columns `` are specified, these can be used as additional indexers.
3830
3830
3831
3831
Valid comparison operators are:
@@ -3917,7 +3917,7 @@ Use boolean expressions, with in-line function evaluation.
3917
3917
3918
3918
store.select(' dfq' , " index>pd.Timestamp('20130104') & columns=['A', 'B']" )
3919
3919
3920
- Use and inline column reference
3920
+ Use inline column reference.
3921
3921
3922
3922
.. ipython :: python
3923
3923
@@ -4593,8 +4593,8 @@ Performance
4593
4593
write chunksize (default is 50000). This will significantly lower
4594
4594
your memory usage on writing.
4595
4595
* You can pass ``expectedrows=<int> `` to the first ``append ``,
4596
- to set the TOTAL number of expected rows that ``PyTables `` will
4597
- expected. This will optimize read/write performance.
4596
+ to set the TOTAL number of rows that ``PyTables `` will expect.
4597
+ This will optimize read/write performance.
4598
4598
* Duplicate rows can be written to tables, but are filtered out in
4599
4599
selection (with the last items being selected; thus a table is
4600
4600
unique on major, minor pairs)
0 commit comments