| 1729 | |
| 1730 | |
| 1731 | class RenameAxis(Elemwise): |
| 1732 | _projection_passthrough = True |
| 1733 | _filter_passthrough = True |
| 1734 | _parameters = ["frame", "mapper", "index", "columns", "axis"] |
| 1735 | _defaults = { |
| 1736 | "mapper": no_default, |
| 1737 | "index": no_default, |
| 1738 | "columns": no_default, |
| 1739 | "axis": 0, |
| 1740 | } |
| 1741 | _keyword_only = ["mapper", "index", "columns", "axis"] |
| 1742 | operation = M.rename_axis |
| 1743 | _preserves_partitioning_information = True |
| 1744 | |
| 1745 | |
| 1746 | class NotNull(Elemwise): |
no outgoing calls
no test coverage detected