@@ -3572,7 +3572,7 @@ Closing a Store and using a context manager:
35723572 Read/write API
35733573''''''''''''''
35743574
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,
35763576similar to how ``read_csv `` and ``to_csv `` work.
35773577
35783578.. ipython :: python
@@ -3687,7 +3687,7 @@ Hierarchical keys
36873687Keys to a store can be specified as a string. These can be in a
36883688hierarchical path-name like format (e.g. ``foo/bar/bah ``), which will
36893689generate 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 **
36913691absolute (e.g. 'foo' refers to '/foo'). Removal operations can remove
36923692everything in the sub-store and **below **, so be *careful *.
36933693
@@ -3825,7 +3825,7 @@ data.
38253825
38263826A query is specified using the ``Term `` class under the hood, as a boolean expression.
38273827
3828- * ``index `` and ``columns `` are supported indexers of a ``DataFrames ``.
3828+ * ``index `` and ``columns `` are supported indexers of ``DataFrames ``.
38293829* if ``data_columns `` are specified, these can be used as additional indexers.
38303830
38313831Valid comparison operators are:
@@ -3917,7 +3917,7 @@ Use boolean expressions, with in-line function evaluation.
39173917
39183918 store.select(' dfq' , " index>pd.Timestamp('20130104') & columns=['A', 'B']" )
39193919
3920- Use and inline column reference
3920+ Use inline column reference.
39213921
39223922.. ipython :: python
39233923
@@ -4593,8 +4593,8 @@ Performance
45934593 write chunksize (default is 50000). This will significantly lower
45944594 your memory usage on writing.
45954595* 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.
45984598* Duplicate rows can be written to tables, but are filtered out in
45994599 selection (with the last items being selected; thus a table is
46004600 unique on major, minor pairs)
0 commit comments