View source: R/compute_pairwise_dist.R
| compute_pairwise_dist | R Documentation |
Title computing all within and between facet distances between quantile categories given a data
compute_pairwise_dist( .data, gran_x = NULL, gran_facet = NA, response = NULL, quantile_prob = seq(0.01, 0.99, 0.01), dist_ordered = TRUE, lambda = 0.67 )
.data |
data for which mmpd needs to be calculated |
gran_x |
granularities mapped across x levels |
gran_facet |
granularities mapped across facets |
response |
univarite response variable |
quantile_prob |
probabilities |
dist_ordered |
if categories are ordered |
lambda |
value of tuning parameter for computing weighted pairwise distances |
the raw weighted pairwise within-facet and between-facet distances
library(dplyr)
library(parallel)
sm <- smart_meter10 %>%
filter(customer_id %in% c("10017936"))
gran_x <- "month_year"
gran_facet <- "wknd_wday"
v <- compute_pairwise_dist(sm, gran_x, gran_facet,
response = general_supply_kwh
)
# month of the year not working in this setup
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.