You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes. The code needs to be sourced with source refs. If your are using source("file.R") in an interactive session, it should be loaded with source refs.
Right now it seems like profvis requires re-writing the function
profvis({fun<-function(...) { ... return(...) } })
But if we only pass the function evaluation to profvis it will compress the whole function into one line
profvis(fun(...))
Is there a way to profile the function line by line without re-writing the whole script as input?
The text was updated successfully, but these errors were encountered: