Nothing
library(eaf)
# This file is loaded automatically by testthat (supposedly)
extdata.path <- function(file)
return(file.path(system.file(package = "eaf"), "extdata", file))
read_extdata <- function(file) read_datasets(extdata.path(file))
## help_plot <- function(A, B)
## {
## library(ggplot2)
## x <- rbind(cbind(as.data.frame(A), algo="A"),cbind(as.data.frame(B), algo="B"))
## DIFF <- eafdiff(A,B, rectangles=FALSE)
## rectangles <- eafdiff(A,B, rectangles=TRUE)
## colnames(DIFF) <- c("x","y", "color")
## p <- ggplot(data=x) + geom_point(aes(x=V1,y=V2, color=algo, shape=as.factor(set))) + scale_shape_manual(values=c(0, 9, 1:8))
## p <- p + geom_rect(data=as.data.frame(rectangles), aes(xmin=xmin, xmax=xmax, ymin=ymin, ymax=ymax, fill=as.factor(diff)), color="black", alpha=0.5)
## p <- p + geom_text(data=as.data.frame(DIFF), aes(x=x,y=y,label=color), nudge_x = 0.05, nudge_y = 0.05)
## print(p)
## }
# From: https://testthat.r-lib.org/reference/expect_snapshot_file.html
# To use expect_snapshot_file() you'll typically need to start by writing
# a helper function that creates a file from your code, returning a path
save_png <- function(code, width = 400, height = 400) {
path <- tempfile(fileext = ".png")
png(path, width = width, height = height)
on.exit(dev.off())
code
path
}
# You'd then also provide a helper that skips tests where you can't
# be sure of producing exactly the same output
expect_snapshot_plot <- function(name, code) {
# Other packages might affect results
#skip_if_not_installed("ggplot2", "2.0.0")
# Or maybe the output is different on some operation systems
#skip_on_os("windows")
skip_on_ci() # Skip for now until we implement this: https://github.com/tidyverse/ggplot2/blob/main/tests/testthat/helper-vdiffr.R
# You'll need to carefully think about and experiment with these skips
name <- paste0(name, ".png")
# Announce the file before touching `code`. This way, if `code`
# unexpectedly fails or skips, testthat will not auto-delete the
# corresponding snapshot file.
testthat::announce_snapshot_file(name = name)
path <- save_png(code)
testthat::expect_snapshot_file(path, name = name)
}
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.