featurebyte.ViewColumn.is_datetime¶ is_datetime: bool Description¶ Returns whether the view column has a datetime data type. Returns¶ bool Examples¶ >>> view = fb.Table.get("GROCERYINVOICE").get_view() >>> print(view["Timestamp"].is_datetime) True >>> print(view["Amount"].is_datetime) False