-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
xarray.merge function and major refactor for merge logic #857
Merged
Commits on May 23, 2016
-
Fixes GH417 New top level :py:func:`merge` function allows for combining variables from any number of ``Dataset`` and/or ``DataArray`` variables. Example usage: >>> arrays = [xr.DataArray(n, name='var%d' % n) for n in range(5)] >>> xr.merge(arrays) <xarray.Dataset> Dimensions: () Coordinates: *empty* Data variables: var0 int64 0 var1 int64 1 var2 int64 2 var3 int64 3 var4 int64 4 The internal refactoring also lays the ground work for supporting ufunc-like functions that merge three or more arguments, such as the full form of `where`.
Configuration menu - View commit details
-
Copy full SHA for 02b14f9 - Browse repository at this point
Copy the full SHA 02b14f9View commit details
Commits on Jul 5, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 82096c6 - Browse repository at this point
Copy the full SHA 82096c6View commit details
Commits on Jul 6, 2016
-
Configuration menu - View commit details
-
Copy full SHA for a579953 - Browse repository at this point
Copy the full SHA a579953View commit details
Commits on Jul 25, 2016
-
Configuration menu - View commit details
-
Copy full SHA for b5a3a25 - Browse repository at this point
Copy the full SHA b5a3a25View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb12fb3 - Browse repository at this point
Copy the full SHA fb12fb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf0c818 - Browse repository at this point
Copy the full SHA cf0c818View commit details -
Configuration menu - View commit details
-
Copy full SHA for 70dbad0 - Browse repository at this point
Copy the full SHA 70dbad0View commit details
Commits on Jul 28, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 2f43956 - Browse repository at this point
Copy the full SHA 2f43956View commit details -
Configuration menu - View commit details
-
Copy full SHA for c5997bc - Browse repository at this point
Copy the full SHA c5997bcView commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.