FAQ¶
How are DataFrames with Units handled?¶
The package uses the pint library to manage physical units in DataFrames. This allows for seamless unit conversions and calculations. Units in columns of DataFrames are handled using the pint-pandas extension, which integrates pint with pandas.
Note
Note that pint-pandas must use the same pint unit registry as the rest of the package. This is ensured by following the instructions in the pint-pandas documentation: Using a Shared Unit Registry.
import pint
ureg = pint.get_application_registry()