Return a new frame with all floating-point columns converted to single-precision (float32)
(self)
| 1019 | return self._astype_float(F.float16) |
| 1020 | |
| 1021 | def float(self): |
| 1022 | """Return a new frame with all floating-point columns converted |
| 1023 | to single-precision (float32)""" |
| 1024 | return self._astype_float(F.float32) |
| 1025 | |
| 1026 | def double(self): |
| 1027 | """Return a new frame with all floating-point columns converted |