@@ -814,19 +814,19 @@ def select(
814
814
Parameters
815
815
----------
816
816
key : str
817
- Object being retrieved from file.
817
+ Object being retrieved from file.
818
818
where : list, default None
819
- List of Term (or convertible) objects, optional.
819
+ List of Term (or convertible) objects, optional.
820
820
start : int, default None
821
- Row number to start selection.
821
+ Row number to start selection.
822
822
stop : int, default None
823
- Row number to stop selection.
823
+ Row number to stop selection.
824
824
columns : list, default None
825
- A list of columns that if not None, will limit the return columns.
825
+ A list of columns that if not None, will limit the return columns.
826
826
iterator : bool, default False
827
- Returns an iterator.
827
+ Returns an iterator.
828
828
chunksize : int, default None
829
- Number or rows to include in iteration, return an iterator.
829
+ Number or rows to include in iteration, return an iterator.
830
830
auto_close : bool, default False
831
831
Should automatically close the store when finished.
832
832
@@ -1090,7 +1090,7 @@ def put(
1090
1090
Table format. Write as a PyTables Table structure which may perform
1091
1091
worse but allow more flexible operations like searching / selecting
1092
1092
subsets of the data.
1093
- append : bool, default False
1093
+ append : bool, default False
1094
1094
This will force Table format, append the input data to the
1095
1095
existing.
1096
1096
data_columns : list, default None
@@ -1099,7 +1099,7 @@ def put(
1099
1099
<https://pandas.pydata.org/pandas-docs/stable/user_guide/io.html#query-via-data-columns>`__.
1100
1100
encoding : str, default None
1101
1101
Provide an encoding for strings.
1102
- dropna : bool, default False, do not write an ALL nan row to
1102
+ dropna : bool, default False, do not write an ALL nan row to
1103
1103
The store settable by the option 'io.hdf.dropna_table'.
1104
1104
track_times : bool, default True
1105
1105
Parameter is propagated to 'create_table' method of 'PyTables'.
@@ -1521,11 +1521,12 @@ def copy(
1521
1521
1522
1522
Parameters
1523
1523
----------
1524
- propindexes: bool, default True
1524
+ propindexes : bool, default True
1525
1525
Restore indexes in copied file.
1526
- keys : list of keys to include in the copy (defaults to all)
1527
- overwrite : overwrite (remove and replace) existing nodes in the
1528
- new store (default is True)
1526
+ keys : list, optional
1527
+ List of keys to include in the copy (defaults to all).
1528
+ overwrite : bool, default True
1529
+ Whether to overwrite (remove and replace) existing nodes in the new store.
1529
1530
mode, complib, complevel, fletcher32 same as in HDFStore.__init__
1530
1531
1531
1532
Returns
0 commit comments