Top "H5py" questions

h5py is a NumPy-compatible Python module for handling The Hierarchical Data Format (HDF5) files.

How to list all datasets in h5py file?

I have a h5py file storing numpy arrays, but I got Object doesn't exist error when trying to open …

h5py
How to read a v7.3 mat file via h5py?

I have a struct array created by matlab and stored in v7.3 format mat file: struArray = struct('name', {'one', 'two', …

python matlab hdf5 mat h5py
Saving with h5py arrays of different sizes

I am trying to store about 3000 numpy arrays using HDF5 data format. Arrays vary in length from 5306 to 121999 np.float64 …

python arrays numpy hdf5 h5py
How to write a Pandas Dataframe into a HDF5 dataset

I'm trying to write data from a Pandas dataframe into a nested hdf5 file, with multiple groups and datasets within …

python-3.x pandas hdf5 h5py
h5py import error on libhdf5_serial.so.100

I have installed raspbian os on raspberry pi 3 model b. I have to perform a project which involves use of …

python raspberry-pi raspbian h5py
Save pandas DataFrame using h5py for interoperabilty with other hdf5 readers

Here is a sample data frame: import pandas as pd NaN = float('nan') ID = [1, 2, 3, 4, 5, 6, 7] A = [NaN, NaN, NaN, 0.1, 0.1, 0.1, 0.1] B = [0.2, NaN, 0.2, 0.2, 0.2, …

matlab numpy pandas h5py
How to differentiate between HDF5 datasets and groups with h5py?

I use the Python package h5py (version 2.5.0) to access my hdf5 files. I want to traverse the content of …

python hdf5 h5py
How to partially copy using python an Hdf5 file into a new one keeping the same structure?

I have a large hdf5 file that looks something like this: A/B/dataset1, dataset2 A/C/dataset1, dataset2 A/…

python hdf5 h5py
How to read HDF5 files that have only datasets (no groups) using h5py?

I have HDF5 files that I would like to open using the Python module h5py (in Python 2.7). This is …

python python-2.7 hdf5 h5py hdf
Visible Deprecation warning...?

I have some data that Im reading from a h5 file as a numpy array and am doing some analysis …

arrays numpy warnings h5py