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

Function test_join_series

dask/dataframe/tests/test_dataframe.py:4879–4884  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4877
4878
4879def test_join_series():
4880 df = pd.DataFrame({"x": [1, 2, 3, 4, 5, 6, 7, 8]})
4881 ddf = dd.from_pandas(df, npartitions=1)
4882 expected_df = dd.from_pandas(df.join(df["x"], lsuffix="_"), npartitions=1)
4883 actual_df = ddf.join(ddf["x"], lsuffix="_")
4884 assert_eq(actual_df, expected_df)
4885
4886
4887def test_assign_na_float_columns():

Callers

nothing calls this directly

Calls 2

joinMethod · 0.95
assert_eqFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…