MCPcopy Index your code
hub / github.com/dask/dask / assert_numpy_array_equal

Function assert_numpy_array_equal

dask/_pandas_compat.py:41–48  ·  view source on GitHub ↗
(left, right)

Source from the content-addressed store, hash-verified

39
40
41def assert_numpy_array_equal(left, right):
42 left_na = pd.isna(left)
43 right_na = pd.isna(right)
44 np.testing.assert_array_equal(left_na, right_na)
45
46 left_valid = left[~left_na]
47 right_valid = right[~right_na]
48 np.testing.assert_array_equal(left_valid, right_valid)
49
50
51def makeDataFrame():

Callers

nothing calls this directly

Calls 1

isnaMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…