pandas.HDFStore.select¶
-
HDFStore.
select
(key, where=None, start=None, stop=None, columns=None, iterator=False, chunksize=None, auto_close=False, **kwargs)[source]¶ Retrieve pandas object stored in file, optionally based on where criteria
- Parameters
- keyobject
- wherelist of Term (or convertible) objects, optional
- startinteger (defaults to None), row number to start selection
- stopinteger (defaults to None), row number to stop selection
- columnsa list of columns that if not None, will limit the return
columns
- iteratorboolean, return an iterator, default False
- chunksizenrows to include in iteration, return an iterator
- auto_closeboolean, should automatically close the store when
finished, default is False
- Returns
- The selected object