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
Roughly speaking, this should look like:
from functools import reduce def merge(datasets, **kwargs): return reduce(lambda x, y: x.merge(y, **kwargs), datasets)
We use already use this in auto_combine.
auto_combine
Including it would make for a better user experience that requiring users to write it themselves.
The text was updated successfully, but these errors were encountered:
As pointed out in #679, it would be nice to handle DataArray objects (keyed by their name) in the list of datasets to merge, too.
name
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Roughly speaking, this should look like:
We use already use this in
auto_combine
.Including it would make for a better user experience that requiring users to write it themselves.
The text was updated successfully, but these errors were encountered: