Nothing
pdf_print <- function(
plot_obj,
width = 7,
height = 7,
save_to_pdf = FALSE,
file = NULL,
new_window = TRUE,
...
)
{
if (save_to_pdf) {
if (is.null(file)) {
grDevices::pdf(width = width, height = height, ...)
} else {
grDevices::pdf(file = file, width = width, height = height, ...)
}
print(plot_obj)
grDevices::dev.off()
} else {
if (new_window) {
grDevices::dev.new(width = width, height = height)
}
print(plot_obj)
}
}
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.