> Constantin Ahlmann-Eltze
> on Fri, 21 Aug 2020 11:51:13 +0200 writes:
> Hi Martin, thanks for verifying. I agree that the
> Cornish-Fisher seems to struggle with the small size
> parameters, but I also don't have a good idea how to
> replace it.
> But I think fi
Dear R-devel,
I have this debugging function that applies side effects, then acts like
browser once it's done :
meta_browser <- function() {
# ...
on.exit(eval.parent(quote(browser(
}
I can use it with a function such as fun1 below :
fun1 <- function(){
meta_browser()
print("hello")