-
Notifications
You must be signed in to change notification settings - Fork 370
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
Rename Iterators.partition #3284
Comments
The reason why we call it
In summary - given the conventions we use I prefer to keep things as they are now (otherwise we would need to rename all the functions that assume that data frame is collection of rows). @nalimilan, @quinnj - what do you think |
I agree that I think it's fine as-is; it doesn't seem to me to be too bad of a pun to define partition on |
Yes, we generally use the convention that functions operating on rows do not have the "rows" suffix (e.g. |
OK - so I am closing this issue and we leave things as they are. Thank you for discussion as it is useful to confirm the design. |
#3212 adds
Iterators.partition
forDataFrame
s.Splitting a df into
SubDataFrame
s sounds like a useful functionality, butIterators.partition
is supposed to split iterables, and that is not whatDataFrame
is, so using this function is a pun. I proposepartitionrows
or something.The text was updated successfully, but these errors were encountered: