Nothing
# test_a_utils.R
library(lmerTest)
# test safeDeparse() - equivalence and differences to deparse():
deparse_args <- formals(deparse)
safeDeparse_args <- formals(lmerTest:::safeDeparse)
stopifnot(
all.equal(names(deparse_args), names(safeDeparse_args)),
all.equal(deparse_args[!names(deparse_args) %in% c("control", "width.cutoff")],
safeDeparse_args[!names(safeDeparse_args) %in% c("control", "width.cutoff")]),
all.equal(deparse_args[["width.cutoff"]], 60L),
all(eval(safeDeparse_args[["control"]]) %in% eval(deparse_args[["control"]])),
all.equal(safeDeparse_args[["width.cutoff"]], 500L)
)
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.