R tip of the day (thanks to Pr. Brian Ripley): the equivalent of %paste (or paste) in IPython appears to be source("clipboard") (or equivalently, source(pipe("pbpaste")) for Mac users). #rstats
%paste
paste
source("clipboard")
source(pipe("pbpaste"))
#rstats