MCPcopy Create free account
hub / github.com/dask/dask / test_join_series

Function test_join_series

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

Source from the content-addressed store, hash-verified

4916
4917
4918def test_join_series():
4919 df = pd.DataFrame({"x": [1, 2, 3, 4, 5, 6, 7, 8]})
4920 ddf = dd.from_pandas(df, npartitions=1)
4921 expected_df = dd.from_pandas(df.join(df["x"], lsuffix="_"), npartitions=1)
4922 actual_df = ddf.join(ddf["x"], lsuffix="_")
4923 assert_eq(actual_df, expected_df)
4924
4925
4926def 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