I have a h5 file which contains a large number of data of arrays. I can read the h5 file in python and able to see the array of values. But, I can't see all values of arrays in the output. Is it possible to see all values of arrays in python?
Here is my code:
import numpy as np
import h5py
import matplotlib.pyplot as plt
f = h5py.File('k.h5', 'r')
list(f.keys())
dset = f[u'data']
dset.shape
dset.value.shape
s=dset[0:64,0:64,0:64]
print(s)
Here is my sample output:
[[[-2.89660161e-05 -2.55907859e-05 -2.26706938e-05 ... -3.17377055e-05
-3.19882377e-05 -3.11190429e-05]
[-2.79035096e-05 -2.42448566e-05 -2.08823974e-05 ... -3.05330241e-05
-3.07284066e-05 -2.99954101e-05]
[-2.64130475e-05 -2.34394543e-05 -2.03711989e-05 ... -2.76314902e-05
-2.82685520e-05 -2.80147175e-05]...
The h5 file can be downloaded from https://drive.google.com/open?id=1cpnZBGDgbijAH0kJchcecTM5lKasiflp this link.