(method, count, masked)
| 160 | term_combos = list(product(methods, counts, [True, False])) |
| 161 | |
| 162 | def termname(method, count, masked): |
| 163 | return '_'.join([method, str(count), 'mask' if masked else '']) |
| 164 | |
| 165 | def expected_result(method, count, masked): |
| 166 | # Ranking with a mask is equivalent to ranking with nans applied on |