Store object in HDFStore.
Format to use when storing object in HDFStore. Value can be one of:
'fixed'
Fixed format. Fast writing/reading. Not-appendable, nor searchable.
'table'
Table format. Write as a PyTables Table structure which may perform worse but allow more flexible operations like searching / selecting subsets of the data.
Write DataFrame index as a column.
This will force Table format, append the input data to the existing.
List of columns to create as data columns, or True to use all columns. See here.
Provide an encoding for strings.
Parameter is propagated to âcreate_tableâ method of âPyTablesâ. If set to False it enables to have the same h5 files (same hashes) independent on creation time.
Remove missing values.
Examples
>>> df = pd.DataFrame([[1, 2], [3, 4]], columns=['A', 'B']) >>> store = pd.HDFStore("store.h5", 'w') >>> store.put('data', df)
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4