larray.read_hdf¶
-
larray.read_hdf(filepath_or_buffer, key, fill_value=nan, na=nan, sort_rows=False, sort_columns=False, **kwargs)[source]¶ Reads an array named key from a HDF5 file in filepath (path+name)
Parameters: filepath_or_buffer : str or pandas.HDFStore
Path and name where the HDF5 file is stored or a HDFStore object.
key : str or Group
Name of the array.
fill_value : scalar or LArray, optional
Value used to fill cells corresponding to label combinations which are not present in the input. Defaults to NaN.
sort_rows : bool, optional
Whether or not to sort the rows alphabetically (sorting is more efficient than not sorting). Defaults to False.
sort_columns : bool, optional
Whether or not to sort the columns alphabetically (sorting is more efficient than not sorting). Defaults to False.
Returns: LArray