npy-append-array icon indicating copy to clipboard operation
npy-append-array copied to clipboard

Create Numpy .npy files by appending on the growth axis

Results 5 npy-append-array issues
Sort by recently updated
recently updated
newest added

File "loadnpdata.py", line 7, in with NpyAppendArray(a1) as npaa: File "/home/sct/anaconda3/envs/fbs/lib/python3.6/site-packages/npy_append_array/npy_append_array.py", line 11, in __init__ self.__init() File "/home/sct/anaconda3/envs/fbs/lib/python3.6/site-packages/npy_append_array/npy_append_array.py", line 43, in __init "version (%d, %d) not implemented" % magic NotImplementedError:...

Addition of an option to recreate the file. Say a file exists with the same name, in which we want to save new numpy array (of different shape or data...

- support for both write/append for a smooth switching between the two - I did this by splitting the self.write() from the __init() code - if original file did not...

It works well to append an item if this item is an array. But it the item is an object like a string, then there will be error ``` [2023-07-27T07:48:55.983Z]...

The `format.py` module uses `numpy.compat`, which is deprecated and slated for removal in future NumPy versions: https://github.com/xor2k/npy-append-array/blob/c74a4c30b9a15ce0a1594a10c3716b2f0443addc/npy_append_array/format.py#L4 On recent NumPy versions (>= 2.0.0), one gets the following warning when `numpy.compat`...