Combine two Datasets, default to data_vars of self. The new coordinates follow the normal broadcasting and alignment rules of ``join='outer'``. Vacant cells in the expanded coordinates are filled with np.nan. Parameters ---------- other : Dataset
(self, other: Self)
| 6790 | return new |
| 6791 | |
| 6792 | def combine_first(self, other: Self) -> Self: |
| 6793 | """Combine two Datasets, default to data_vars of self. |
| 6794 | |
| 6795 | The new coordinates follow the normal broadcasting and alignment rules |
| 6796 | of ``join='outer'``. Vacant cells in the expanded coordinates are |
| 6797 | filled with np.nan. |
| 6798 | |
| 6799 | Parameters |
| 6800 | ---------- |
| 6801 | other : Dataset |
| 6802 | Used to fill all matching missing values in this array. |
| 6803 | |
| 6804 | Returns |
| 6805 | ------- |
| 6806 | Dataset |
| 6807 | """ |
| 6808 | out = ops.fillna(self, other, join="outer", dataset_join="outer") |
| 6809 | return out |
| 6810 | |
| 6811 | def reduce( |
| 6812 | self, |