Learn R Programming

TSMining (version 1.0)

BuildOperation: An example 1-week data set containing the power consumption data of two building services sub-systems

Description

The data contain 7-day power consumption data of two building services sub-systems, i.e., water-cooled chillers (WCC) and air handling unit (AHU) The collection interval is 15-minute. The data have 672 observations and 6 variables, i.e., Month, Day, Hour, Minute, WCC and AHU

Usage

data(BuildOperation)

Arguments

Format

A data frame with 672 rows and 6 variables

Examples

Run this code
library(ggplot2)
data(BuildOperation)
ggplot(data = BuildOperation, aes(x = 1:dim(BuildOperation)[1], y = WCC)) +
 geom_line() + geom_point()
ggplot(data = BuildOperation, aes(x = 1:dim(BuildOperation)[1], y = AHU)) +
 geom_line() + geom_point()

Run the code above in your browser using DataLab