Return a shallow copy of this column.
(self)
| 413 | self.data = F.cat([self.data, feats], dim=0) |
| 414 | |
| 415 | def clone(self): |
| 416 | """Return a shallow copy of this column.""" |
| 417 | return Column( |
| 418 | self.storage, |
| 419 | self.scheme, |
| 420 | self.index, |
| 421 | self.device, |
| 422 | self.deferred_dtype, |
| 423 | ) |
| 424 | |
| 425 | def deepclone(self): |
| 426 | """Return a deepcopy of this column. |