(data, cond, other=dtypes.NA)
| 420 | |
| 421 | |
| 422 | def where_method(data, cond, other=dtypes.NA): |
| 423 | if other is dtypes.NA: |
| 424 | other = dtypes.get_fill_value(data.dtype) |
| 425 | return where(cond, data, other) |
| 426 | |
| 427 | |
| 428 | def fillna(data, other): |
no test coverage detected
searching dependent graphs…