Return the effective data type of this Column
(self)
| 298 | |
| 299 | @property |
| 300 | def dtype(self): |
| 301 | """Return the effective data type of this Column""" |
| 302 | if self.deferred_dtype is not None: |
| 303 | return self.deferred_dtype |
| 304 | return self.storage.dtype |
| 305 | |
| 306 | def astype(self, new_dtype): |
| 307 | """Return a new column such that when its data is requested, |
no outgoing calls