(self)
| 1931 | _preserves_partitioning_information = True |
| 1932 | |
| 1933 | def _simplify_down(self): |
| 1934 | col_op = self.operand("columns") |
| 1935 | if is_scalar(col_op): |
| 1936 | col_op = [col_op] |
| 1937 | columns = [col for col in self.frame.columns if col not in col_op] |
| 1938 | return Projection(self.frame, columns) |
| 1939 | |
| 1940 | |
| 1941 | def assign(df, *pairs): |
nothing calls this directly
no test coverage detected