np.prod(()) is 1.0 (float), casting is therefore needed
This commit is contained in:
parent
e3d35b41b4
commit
74927d9622
|
@ -219,7 +219,7 @@ class Table():
|
|||
self.__add_comment(label,data.shape[1:],info)
|
||||
|
||||
self.shapes[label] = data.shape[1:] if len(data.shape) > 1 else (1,)
|
||||
size = np.prod(data.shape[1:])
|
||||
size = np.prod(data.shape[1:],dtype=int)
|
||||
new = pd.DataFrame(data=data.reshape(-1,size),
|
||||
columns=[label]*size,
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue