We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
3.0.0.beta
0.13
3.11
Mac
pip
We need to implement Array.append in 3.0
Array.append
In [11]: a = np.arange(10000000, dtype='i4').reshape(10000, 1000) ...: z = zarr.array(a, chunks=(1000, 100)) ...: z.shape ...: z.append(a) ...: z.append(np.vstack([a, a]), axis=1) ...: z.shape -------------------------------------------------------------------------- AttributeError Traceback (most recent call last) Cell In[11], line 4 2 z = zarr.array(a, chunks=(1000, 100)) 3 z.shape ----> 4 z.append(a) 5 z.append(np.vstack([a, a]), axis=1) 6 z.shape AttributeError: 'Array' object has no attribute 'append'
No response
The text was updated successfully, but these errors were encountered:
jhamman
Successfully merging a pull request may close this issue.
Zarr version
3.0.0.beta
Numcodecs version
0.13
Python Version
3.11
Operating System
Mac
Installation
pip
Description
We need to implement
Array.append
in 3.0Steps to reproduce
Additional output
No response
The text was updated successfully, but these errors were encountered: