The eensight tool for measurement and verification of energy efficiency improvements
The eensight Python package implements the measurement and verification (M&V) methodology that has been developed by the H2020 project SENSEI - Smart Energy Services to Improve the Energy Efficiency of the European Building Stock.
The online book Rethinking Measurement and Verification of Energy Savings (accessible here) explains in detail both the methodology and its implementation.
Installation
eensight can be installed by pip:
pip install eensight
Usage
1. Through the command line
All the functionality in eensight is organized around data pipelines. Each pipeline consumes data and other artifacts (such as models) produced by a previous pipeline, and produces new data and artifacts for its successor pipelines.
There are four (4) pipelines in eensight. The names of the pipelines and the associations between pipelines and namespaces are summarized below:
| train | test | apply | |
|---|---|---|---|
| preprocess | ✔ | ✔ | ✔ |
| predict | ✔ | ✔ | ✔ |
| evaluate | ✔ | ✔ | |
| adjust | ✔ |
The primary way of using eensight is through the command line. The first argument is always the name of the pipeline to run, such as:
eensight run predict --namespace train
The command
eensight run --help
prints the documentation for all the options that can be passed to the command line.
2. As a library
The pipelines of eensight are separate from the methods that implement them, so that the latter can be used directly:
import pandas as pd
from eensight.methods.prediction.baseline import UsagePredictor
from eensight.methods.prediction.activity import estimate_activity
non_occ_features = ["temperature", "dew point temperature"]
activity = estimate_activity(
X,
y,
non_occ_features=non_occ_features,
exog="temperature",
assume_hurdle=False,
)
X_act = pd.concat([X, activity.to_frame("activity")], axis=1)
model = UsagePredictor(skip_calendar=True).fit(X_act, y)
Release files for eensight 1.0.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| eensight-1.0.2.tar.gz | 67.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| eensight-1.0.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 129.3 kB
Release files / eensight-1.0.2.tar.gz
| Download URL | eensight-1.0.2.tar.gz |
|---|---|
| Size | 67.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
a05cf13d73de2ab70608d889ca1e6a73d3dfca019aec9c9f95b1624f2c1a2cbd
|
|
BLAKE2b-256 checksum How to use checksums |
cd44f9702664f3f4bc35b4e8c25d92fadb2da09fafb336f1434b81fa974127c0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.0
|
Release files / eensight-1.0.2-py3-none-any.whl
| Download URL | eensight-1.0.2-py3-none-any.whl |
|---|---|
| Size | 62.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
32b9b77e1a992b36514d1cbe2dd5d64e4a4634409da4990964a173fc24f59239
|
|
BLAKE2b-256 checksum How to use checksums |
6b0c76e30a1e585da56df6f1946d95d211af13ddbdcf90dcdddded0e535009a0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.10.0
|