Panel.to_hdf()
pandas.Panel.to_hdf
-
Panel.to_hdf(path_or_buf, key, **kwargs)
-
Activate the HDFStore.
Parameters: path_or_buf : the path (string) or HDFStore object
key : string
indentifier for the group in the store
mode : optional, {‘a’, ‘w’, ‘r’, ‘r+’}, default ‘a’
-
'r'
-
Read-only; no data can be modified.
-
'w'
-
Write; a new file is created (an existing file with the same name would be deleted).
-
'a'
-
Append; an exist
-