np.set_printoptions(threshold=np.nan) did'nt work for me. However, my Python 3 kernel suggested these commands that worked correctly: import sys np.set_printoptions(threshold=sys.maxsize)
I also have the same issue. To fix it replace with the following code: import sys np.set_printoptions(threshold=sys.maxsize) #this will allow to visualize the entire array print(porosity_map)
np.set_printoptions(threshold=np.nan) did'nt work for me. However, my Python 3 kernel suggested these commands that worked correctly:
import sys
np.set_printoptions(threshold=sys.maxsize)
I also have the same issue.
To fix it replace with the following code:
import sys
np.set_printoptions(threshold=sys.maxsize) #this will allow to visualize the entire array
print(porosity_map)