True if the intersection of two Variable's non-null data is equal; otherwise false. Variables can thus still be equal if there are locations where either, or both, contain NaN values.
(self, other, equiv=duck_array_ops.array_notnull_equiv)
| 1915 | return False |
| 1916 | |
| 1917 | def no_conflicts(self, other, equiv=duck_array_ops.array_notnull_equiv): |
| 1918 | """True if the intersection of two Variable's non-null data is |
| 1919 | equal; otherwise false. |
| 1920 | |
| 1921 | Variables can thus still be equal if there are locations where either, |
| 1922 | or both, contain NaN values. |
| 1923 | """ |
| 1924 | return self.broadcast_equals(other, equiv=equiv) |
| 1925 | |
| 1926 | def quantile( |
| 1927 | self, |