You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wish we could manage units of measurements in pandas.
Describe the solution you'd like
For example a temperature column may have the unit of Fahrenheit, if we need to convert the units to Centigrade it will be nice to convert it without creating the convertor functions. Here are some ideas:
Series.unit returns the current unit of measurement (e.g., Fahrenheit).
Series.to_unit() returns a series with the unit in parameter (e.g., Series.to_unit('Fahrenheit')).
More complex units can be electricity consumption and electricity demand.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
I wish we could manage units of measurements in pandas.
Describe the solution you'd like
For example a temperature column may have the unit of Fahrenheit, if we need to convert the units to Centigrade it will be nice to convert it without creating the convertor functions. Here are some ideas:
Series.unit returns the current unit of measurement (e.g., Fahrenheit).
Series.to_unit() returns a series with the unit in parameter (e.g., Series.to_unit('Fahrenheit')).
More complex units can be electricity consumption and electricity demand.
The text was updated successfully, but these errors were encountered: