debugging - Using trace on a hidden function to edit source code in R -
for package using, fix part of code. have downloaded "package source" from cran , have narrowed down problem is. edit problem function in rstudio. i've tried using trace
, unable call desired function. function want call helper function (not in documentation) main function (which in documentation). there way edit functions not in documentation , used in implementation?
if helps, package using called recordlinkage
. change function .toff
called rlbigdatadedup
, in file rlbigdata-classes.r
. i've established problem looking @ source code, want edit in rstudio can run when using package... best can looking @ rlbigdatadedup
in rstudio, can't find .toff
used within it.
try debug(.toff)
or debug(function_to_calls_.toff)
open debug tool when function called.
Comments
Post a Comment