-
-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
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
NDCollection 2 #238
NDCollection 2 #238
Conversation
Not yet supported by __getitem__
Also fix some slicing bugs.
Co-Authored-By: Stuart Mumford <[email protected]>
…into ndcollection
Hello @DanRyanIrish! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found:
Comment last updated at 2020-03-27 17:52:58 UTC |
Co-Authored-By: Stuart Mumford <[email protected]>
…into ndcollection2
@Cadair, it's done! |
Drop mic! |
574ac39
to
905c863
Compare
Co-Authored-By: Stuart Mumford <[email protected]>
Simplify checking whether kwargs exisits. Co-Authored-By: Stuart Mumford <[email protected]>
d7de732
to
20ce574
Compare
20ce574
to
3062fd4
Compare
Description
This PR is a continuation of #231. (I messed up the git history and it was easier to open a new PR.) As with #231, this PR introduces a new class for holding a collection of NDCubes/Sequences.
Still To Do
NDCollection.__init__
working.NDCollection.update
to something likeNDCollection.extend
and implement a newNDCollection.update
that takes anotherNDCollection
in the same way thedict.update
takes anotherdict
.NDCollection._first_key
andNDCollection._cube_types
properties.NDCollection
to guide in docsNDCollection
ofNDCubeSequences
aligned_axes
default toNone
NDCollection
input to(key, value)
pairs, likedict
._sanitize_aligned_axes
tondcollection.py
?