search for: newerror

Displaying 1 result from an estimated 1 matches for "newerror".

Did you mean: neterror
2012 Dec 11
1
Reassign functions called by other functions in package graphics
...Entered plot.default")} plot.new<-function(...){cat("Entered plot.new")} assignInNamespace("plot.default",plot.default,ns="graphics") assignInNamespace("plot.new",plot.new,ns="graphics") qqnorm(1:10) and here's what I get: Entered plot.newError in plot.xy(xy, type, ...) : plot.new has not been called yet It seems as though my new plot.new is being called, but the existing plot.default is being called, even though the new version is in graphics::plot.default. I conjecture that this is because the original plot.default got exported when t...