Skip to content
Prev 48545 / 63424 Next

dget() much slower in recent R versions

On 06/21/2014 12:56 AM, Prof Brian Ripley wrote:
Nice. But why add the 'keep.source' arg do dget() in R-devel rev 65990:

   dget <- function(file, keep.source = FALSE)
       eval(parse(file = file, keep.source = FALSE))

(Note that the 'keep.source' arg is actually ignored.)

Why not just:

   dget <- function(file)
       eval(parse(file = file, keep.source = FALSE))

Cheers,

H.