Nothing
options(save.defaults=list(version=2, safe=TRUE))
save_file <- function(..., pkg, type = "rda") {
f <- file.path("inst", "extdata", sprintf("%s_example.%s", pkg, type))
cat("saving in serialization version 2\n")
if (type == "rda") {
save(..., file = f, version=2)
} else {
saveRDS(..., file = f, version=2)
}
invisible(NULL)
}
pkg <- NULL
run_pkg <- function(pkg, e) {
pkg <<- pkg
if (require(pkg, character.only = TRUE)) {
eval(e)
return(TRUE)
} else {
cat(sprintf("%s examples not run\n", pkg))
return(FALSE)
}
}
## formalize via butcher??
hack_size <- function(x, ...) {
UseMethod("hack_size")
}
hack_size.stanfit <- function(x) {
x@stanmodel <- structure(numeric(0), class="stanmodel")
x@.MISC <- new.env()
return(x)
}
hack_size.brmsfit <- function(x) {
x$fit <- hack_size(x$fit)
return(x)
}
hack_size.stanreg <- function(x) {
x$stanfit <- hack_size(x$stanfit)
return(x)
}
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.