load_hvac_system_data#
- load_hvac_system_data()[source]#
Load the heating, ventilation and air conditioning (HVAC) system dataset.
The dataset contains time series of vibration magnitude measurements from two different HVAC systems. 30 days of sensor measurements are available for each unit, with a sampling rate of 10 minutes.
The aim of analysing the data is to detect when each hvac system normally turns on and off, such that anomalies from their regular schedule can be detected. True labels are not available, but it is fairly easy to identify the normal schedule from the data and observe when the units deviate from it.
The data has been provided by the company Soundsensing: https://www.soundsensing.no/.
- Returns:
- pd.DataFrame
The HVAC system dataset. It has a multi-index with two levels:
“unit_id”: A string identifier for each hvac unit.
“time”: A datetime index with the time of each measurement.
There’s one column:
“vibration”: A float column with the vibration magnitude measurements.