def test_valdrop_with_columns(): """Testing the ColDrop pipeline stage.""" df = pd.DataFrame([[1, 4], [4, 5], [18, 11]], [1, 2, 3], ['a', 'b']) res_df = ValDrop([4], 'a').apply(df) assert 1 in res_df.index assert 2 not in res_df.index assert 3 in res_df.index
def test_valdrop_w_fittable_cq(): df = pd.DataFrame([[1, 4], [4, 5]], [1, 2], ['aa', 'ba']) vdrop = ValDrop([4], columns=StartWith('a')) res_df = vdrop(df) assert 1 in res_df.index assert 2 not in res_df.index # now after the column qualifier is fitter, 'ag' should not be transformed df = pd.DataFrame([[1, 4], [4, 5]], [1, 2], ['aa', 'ag']) res_df = vdrop(df) assert 1 in res_df.index assert 2 not in res_df.index