Nothing
cellwise <- function(a, contamination = 0.08, epochs = 1000L) {
if (!is.numeric(epochs) || !is.finite(epochs)) stop("The argument `epochs` must be a finite integer number")
storage.mode(epochs) <- "integer"
wh <- c("strata", "unit_id", "master_varname")
dtac <- a[, c(wh, "current_value_num")] %>%
pivot_wider(names_from = any_of("master_varname"),
values_from = matches("current_value_num"))
ord <- order(dtac$strata)
dtac <- dtac[ord, ]
dtap <- a[, c(wh, "pred_value")] %>%
pivot_wider(names_from = any_of("master_varname"),
values_from = matches("pred_value"))
ord <- order(dtap$strata)
dtap <- dtap[ord, ]
xc <- as.matrix(dtac[, -1L:-2L]) # Current
xp <- as.matrix(dtap[, -1L:-2L]) # Past
s <- z <- h <- r <- t <- matrix(0, nrow(xc), ncol(xc))
scores <- .C("cellwise", s = s, z = z, h = h, r = r, t = t, xc, xp,
dim(xc), epochs, NAOK = TRUE, PACKAGE = "HRTnomaly")
scores$s <- as.data.frame(scores$s)
scores$z <- as.data.frame(scores$z)
scores$h <- as.data.frame(scores$h)
scores$r <- as.data.frame(scores$r)
scores$t <- as.data.frame(scores$t)
scores$s$unit_id <- dtac$unit_id
scores$z$unit_id <- dtac$unit_id
scores$h$unit_id <- dtac$unit_id
scores$r$unit_id <- dtac$unit_id
scores$t$unit_id <- dtac$unit_id
names(scores$s) <- c(colnames(xc), "unit_id")
names(scores$z) <- c(colnames(xc), "unit_id")
names(scores$h) <- c(colnames(xc), "unit_id")
names(scores$r) <- c(colnames(xc), "unit_id")
names(scores$t) <- c(colnames(xc), "unit_id")
scores$s <- scores$s %>%
pivot_longer(seq_len(ncol(xc)), values_drop_na = TRUE)
scores$z <- scores$z %>%
pivot_longer(seq_len(ncol(xc)), values_drop_na = TRUE)
scores$h <- scores$h %>%
pivot_longer(seq_len(ncol(xc)), values_drop_na = TRUE)
scores$r <- scores$r %>%
pivot_longer(seq_len(ncol(xc)), values_drop_na = TRUE)
scores$t <- scores$t %>%
pivot_longer(seq_len(ncol(xc)), values_drop_na = TRUE)
names(scores$s)[-1L] <- c("master_varname", "score")
names(scores$z)[-1L] <- c("master_varname", "zScore")
names(scores$h)[-1L] <- c("master_varname", "hScore")
names(scores$r)[-1L] <- c("master_varname", "rScore")
names(scores$t)[-1L] <- c("master_varname", "tScore")
a <- a %>% inner_join(scores$z, by = c("master_varname", "unit_id"))
a <- a %>% inner_join(scores$h, by = c("master_varname", "unit_id"))
a <- a %>% inner_join(scores$r, by = c("master_varname", "unit_id"))
a <- a %>% inner_join(scores$t, by = c("master_varname", "unit_id"))
a <- a %>% inner_join(scores$s, by = c("master_varname", "unit_id"))
th <- quantile(a$score, contamination, na.rm = TRUE)
a$outlier <- a$score < th
return(a)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.