We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b7aab19 + 43e3682 commit fd93543Copy full SHA for fd93543
tests/test_titanic.py
@@ -27,7 +27,6 @@ def test_onehot(df):
27
28
@pytest.mark.parametrize("df", [pd.read_csv(titanic_path), pl.read_csv(titanic_path)])
29
def test_minhash(df):
30
- print(df)
31
assert minhash("sex", n_components=10).fit_transform(df).shape[1] == 10
32
assert minhash("name", n_components=10).fit_transform(df).shape[1] == 10
33
assert minhash("sex", "name", n_components=10).fit_transform(df).shape[1] == 20
0 commit comments