Like ~isnan, but checks for locations where we store missing values.
(self)
| 457 | ) |
| 458 | |
| 459 | def not_missing(self): |
| 460 | """ |
| 461 | Like ~isnan, but checks for locations where we store missing values. |
| 462 | """ |
| 463 | return ( |
| 464 | self.as_int_array() != self.reverse_categories[self.missing_value] |
| 465 | ) |
| 466 | |
| 467 | def _equality_check(op): |
| 468 | """ |