create_harmony_data: Create data for one harmony pair

View source: R/create_harmony_data.R

create_harmony_dataR Documentation

Create data for one harmony pair

Description

Create data for one harmony pair

Usage

create_harmony_data(.data, harmony_tbl_row, response)

Arguments

.data

a tsibble

harmony_tbl_row

a row from the harmony table

response

univariate response variable

Value

a tibble with the harmony pair and response variable

Examples

library(dplyr)
sm <- smart_meter10 %>%
  filter(customer_id %in% c("10017936"))
harmonies <- sm %>%
  harmony(
    ugran = "month",
    filter_in = "wknd_wday",
    filter_out = c("hhour", "fortnight")
  )
# harmonies <- harmonies %>% mutate(facet_variable = NA)
panel_data <- create_harmony_data(
  sm,
  harmonies[3, ], general_supply_kwh
)

Sayani07/gravitas documentation built on June 18, 2022, 2:40 a.m.