Nothing
pc_point <- function(point, spans) {
structure(
list(
point = point,
spans = spans
),
class = "pc_point"
)
}
#' @export
print.pc_point <- function(x, ...) {
cat("First causality point:", x$point, "\n")
cat("Spans used:\n")
cat(" Nearest neighbors:", x$spans$nn, "\n")
cat(" Common coordinates:", x$spans$cc, "\n")
cat(" Prediction:", x$spans$pred, "\n")
}
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.