Displaying 1 result from an estimated 1 matches for "prenew".
Did you mean:
renew
2011 Jan 23
2
feature request: additional hook in plot.new()
....Internal(plot.new())
for(fun in getHook("plot.new")) {
if(is.character(fun)) fun <- get(fun)
try(fun())
}
invisible()
}
New definition of plot.new() in src/library/graphics/R/plot.R:
plot.new <- function()
{
for(fun in getHook("plot.prenew")) {
if(is.character(fun)) fun <- get(fun)
try(fun())
}
.Internal(plot.new())
for(fun in getHook("plot.new")) {
if(is.character(fun)) fun <- get(fun)
try(fun())
}
invisible()
}
In src/library/graphics/man/frame.Rd af...