write_table_hdf5¶
- astropy.io.misc.hdf5.write_table_hdf5(table, output, path=None, compression=False, append=False, overwrite=False, serialize_meta=False, **create_dataset_kwargs)[ソース]¶
HDF 5ファイルへの表オブジェクトの書き込み
これには h5py インストールします。
- パラメータ
- 表 :
Table
表 ファイルのデータテーブルに記入しなければなりません。
- 出力 : str or
h5py.File
あるいは…。h5py.Group
文字列や 文字列であれば,表を書き込むファイル名である.H 5 pyオブジェクトであれば,テーブルを書き込むファイルやグループオブジェクトである.
- path応力.応力
HDF 5ファイル内のテーブルを書き込むパスです。これは入力ファイルやグループに対するものでなければならない.指定されていなければ,デフォルトで考える.
__astropy_table__
それがそうです。- compressionブール値、文字列、または全体型
Whether to compress the table inside the HDF5 file. If set to
True
,'gzip'
compression is used. If a string is specified, it should be one of'gzip'
,'szip'
, or'lzf'
. If an integer is specified (in the range 0-9),'gzip'
compression is used, and the integer denotes the compression level.- appendブルル.
既存のHDF 5ファイルに表を追加するかどうか。
- overwriteブルル.
警告なしに既存のファイルをカバーするかどうか。もし…。
append=True
そしてoverwrite=True
データセットのみを置き換え,ファイル/グループは上書きされない.- **create_dataset_kwargs
他のキーワードパラメータは
h5py.File.create_dataset()
あるいは…。h5py.Group.create_dataset()
それがそうです。
- 表 :