FloatColumnSpec¶
- final class lsst.daf.butler.column_spec.FloatColumnSpec(*, name: str, doc: str = '', type: Literal['float'] = 'float', nullable: bool = True)¶
Bases:
_BaseColumnSpecDescription of a float column.
Attributes Summary
Configuration for the model, should be a dictionary conforming to [
ConfigDict][pydantic.config.ConfigDict].Methods Summary
to_arrow()Return an object that converts values of this column to a column in an Arrow table.
Attributes Documentation
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [
ConfigDict][pydantic.config.ConfigDict].
Methods Documentation
- to_arrow() ToArrow¶
Return an object that converts values of this column to a column in an Arrow table.
- Returns:
- converter
arrow_utils.ToArrow A converter object with schema information in Arrow form.
- converter