Skip to content

An extension of pandas to deal with building related time series such as temperature, load and energy.

License

Notifications You must be signed in to change notification settings

samuelduchesne/energy-pandas

Repository files navigation

PyPI version fury.io codecov PyPI pyversions

energy-pandas

An extension of pandas to deal with building related time series such as temperature, load and energy.

Installation

pip install energy-pandas

Usage

from energy_pandas import EnergyDataFrame, EnergySeries

edf = EnergyDataFrame(
    {
        "temp": EnergySeries(range(0,100), units="degC"),
        "q_heat": EnergySeries(range(0,100), units="W"), 
        "q_cool": EnergySeries(range(0,100), units="W")
    },
    name="Zone 1"
)
edf.units
{'temp': <Unit('degree_Celsius')>, 'q_heat': <Unit('watt')>, 'q_cool': <Unit('watt')>}

About

An extension of pandas to deal with building related time series such as temperature, load and energy.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published