datatable.Type.is_float

Added in version 1.1.0

Test whether this type belongs to the category of “float” types. This property returns True for float32 and float64 types only.

Parameters

return
bool

Examples

dt.Type.float64.is_float
True
dt.Type.float32.is_float
True
dt.Type.int64.is_float
False