Nothing
p_nca_cols <-
function (loop.data, bn.data) {
x <- loop.data$x
y <- loop.data$y
flip.x <- loop.data$flip.x
flip.y <- loop.data$flip.y
if (!flip.x && !flip.y) {
# Upper left corner
cols <- lm(y + max(residuals(lm(y ~ x))) ~ x)
} else if (flip.x && !flip.y) {
# Upper right corner
cols <- lm(y + max(residuals(lm(y ~ x))) ~ x)
} else if (flip.x && flip.y) {
# Lower right corner
cols <- lm(y + min(residuals(lm(y ~ x))) ~ x)
} else if (!flip.x && flip.y) {
# Lower left corner
cols <- lm(y + min(residuals(lm(y ~ x))) ~ x)
}
intercept <- unname(coef(cols)["(Intercept)"])
slope <- unname(coef(cols)["x"])
line_matrix <- p_get_line_matrix(intercept, slope, loop.data)
ceiling <- p_ceiling(loop.data, slope, intercept)
effect <- ceiling / loop.data$scope.area
above <- p_above(loop.data, slope, intercept)
accuracy <- p_accuracy(loop.data, above)
fit <- p_fit(ceiling, loop.data$ce_fdh_ceiling)
ineffs <- p_ineffs(loop.data, slope, intercept)
bottleneck <- p_bottleneck(loop.data, bn.data, slope, intercept)
complexity <- 1
metrics <- p_purity_empty
return(list(line = cols, line_matrix = line_matrix, peers = NULL,
slope = slope, intercept = intercept,
ceiling = ceiling, effect = effect,
above = above, accuracy = accuracy, fit = fit,
ineffs = ineffs, bottleneck = bottleneck,
complexity = complexity,
noise_pct = metrics$noise_pct,
noise_nof = metrics$noise_nof,
exceptions_pct = metrics$exceptions_pct,
exceptions_nof = metrics$exceptions_nof,
support_pct = metrics$support_pct,
support_nof = metrics$support_nof,
spread = metrics$spread,
sharpness = metrics$sharpness
))
}
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.