1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-04-27 08:11:37 +02:00
Files
dotfiles/.Rprofile

12 lines
219 B
R

if (!interactive()) {
options(device = function(...) pdf("Rplot.pdf"))
.Last <- function() {
if (dev.cur() > 1) {
dev.off()
system("xdg-open Rplot.pdf", wait = FALSE)
Sys.sleep(2)
}
}
}