書き込みはすでに完了しています。
Duncan Murdochによる2009年の投稿:
CleanTranscript <- function(lines) {
lines <- grep("^[[:blank:]]*[^>+[:blank:]]*[>+]", lines, value = TRUE)
lines <- sub("^[[:blank:]]*[^>+[:blank:]]*[>+] ?", "", lines) }
source(textConnection(CleanTranscript(
# This is the Windows input strategy
readLines("clipboard")
# See below for Mac version
)),
echo = TRUE, max.deparse.length=Inf)
その後の2009年のR-GaborGrothendieckによるヘルプ投稿:
process.source <- function(action = c("both", "run", "show"), echo = TRUE,
max.deparse.length = Inf, ...) {
# This is the Mac input strategy
L <- readLines(pipe("pbpaste"))
# for Windows devices use
# L <- readLines("clipboard")
rx <- "^[[:blank:]]*[^>+[:blank:]]*[>+]"
is.cmd <- grepl(rx, L)
L[is.cmd] <- gsub(paste(rx, "?"), "", L[is.cmd])
L[!is.cmd] <- paste("#", L[!is.cmd])
action <- match.arg(action)
if (action != "run") for(el in L) cat(el, "\n")
if (action == "both") cat("##################################\n")
if (action != "show")
source(textConnection(L), echo = echo,
max.deparse.length = max.deparse.length, ...)
invisible(L) }
注:賛成票により、これを「機能リクエスト」としてRStudioディスカッション掲示板に投稿するように促されました。まだ壊れていませんが、RStudioフレームワークに組み込まれる場合は、さらにテストが必要になる可能性があります。