About 100,000 results
Open links in new tab
  1. pandas - Open .h5 file in Python - Stack Overflow

    Oct 20, 2017 · I am trying to read a h5 file in Python. The file can be found in this link and it is called 'vstoxx_data_31032014.h5'. The code I am trying to run is from the book Python for Finance, by …

  2. How to read HDF5 files in Python - Stack Overflow

    Jan 27, 2015 · I am trying to read data from hdf5 file in Python. I can read the hdf5 file using h5py, but I cannot figure out how to access data within the file. My code import h5py import numpy as np ...

  3. python 3.x - Reading h5 file - Stack Overflow

    Nov 21, 2018 · I am a new python user and I want to read the data from a h5 file. The code that I have used to read the data is given below: >>> import numpy as np >>> import h5py >>> ...

  4. How to read hdf5 files with Python h5py package? - Stack Overflow

    I'm new to coding and I want to know how to read a hdf5 file using Python. More specifically, I wish to access columns (by name) to extract information. I can read a h5 file using Pandas like this:...

  5. pandas - Inspect .h5 file in Python - Stack Overflow

    Dec 28, 2019 · I have an issue regarding an .h5 file, which I don't really know what it contains. Actually, I want to check what is inside the file using Python, but every time I open it with pandas: df = pd.rea...

  6. How to deal with hdf5 files in R? - Stack Overflow

    24 You could also use h5, a package which I recently published on CRAN. Compared to rhdf5 it has the following features: S4 object model to directly interact with HDF5 objects like files, groups, datasets …

  7. Better way to open HDF5 files in C++ - Stack Overflow

    Jun 15, 2016 · For these reasons, I have been motivated to create a header file which deals with some of these common problems. My first thought was to simply create a set of functions that would, for …

  8. Why can't I open a .h5 file in Python? - Stack Overflow

    Jun 16, 2021 · Debug with simple tests like h5dump above, or open the file with HDFView. If that works, test in python with: import h5py ; h5=h5py.File(model_file,'r') ; h5.close() If 1 of the first 2 tests fail, …

  9. How can extract data from .h5 file and save it in .txt or .csv properly?

    May 21, 2019 · If the h5 was written with pandas and pytables it will be a lot easier to read it with the same tools. h5py is a lower level interface to the files, using only numpy arrays. So it can read the …

  10. How can I visualise an image in h5 format data? - Stack Overflow

    How can I visualise an image in h5 format data? Asked 8 years, 11 months ago Modified 3 years, 8 months ago Viewed 19k times